1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/CHANGELOG.md

28 lines
893 B
Markdown
Raw Normal View History

2022-02-22 12:53:52 -05:00
* Fix `ActionController::Live` to copy the IsolatedExecutionState in the ephemeral thread.
2022-02-22 12:53:52 -05:00
Since its inception `ActionController::Live` has been copying thread local variables
to keep things such as `CurrentAttributes` set from middlewares working in the controller action.
With the introduction of `IsolatedExecutionState` in 7.0, some of that global state was lost in
2022-02-22 12:53:52 -05:00
`ActionController::Live` controllers.
*Jean Boussier*
* Fix setting `trailing_slash: true` in route definition.
```ruby
get '/test' => "test#index", as: :test, trailing_slash: true
test_path() # => "/test/"
```
*Jean Boussier*
2022-01-26 09:47:35 -05:00
* Make `Session#merge!` stringify keys.
2022-01-26 09:47:35 -05:00
Previously `Session#update` would, but `merge!` wouldn't.
*Drew Bragg*
2021-12-07 10:52:30 -05:00
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionpack/CHANGELOG.md) for previous changes.