rails/actionpack/CHANGELOG.md
2022-02-15 10:44:33 +01:00

18 lines
443 B
Markdown

* Fix setting `trailing_slash: true` in route definition.
```ruby
get '/test' => "test#index", as: :test, trailing_slash: true
test_path() # => "/test/"
```
*Jean Boussier*
* Make `Session#merge!` stringify keys.
Previously `Session#update` would, but `merge!` wouldn't.
*Drew Bragg*
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionpack/CHANGELOG.md) for previous changes.