Fix CHANGELOG typos

This commit is contained in:
Jean Boussier 2022-02-22 18:53:52 +01:00
parent e4140140af
commit ce1517ea52

@ -1,10 +1,10 @@
* Fix `ActionContoller::Live` to copy the IsolatedExecutionState in the ephemeral thread.
* Fix `ActionController::Live` to copy the IsolatedExecutionState in the ephemeral thread.
Since it's inception `ActionContoller::Live` has been copying thread local variables
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
`ActionContoller::Live` controllers.
`ActionController::Live` controllers.
*Jean Boussier*