diff options
author | Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com> | 2016-06-30 14:51:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-30 14:51:43 -0300 |
commit | 21a5841b1f28dfb548dc69d89bb17dbc89cac950 (patch) | |
tree | de0ae2fdbc8eca57ec260294a4726fd442959222 /guides | |
parent | b96bd9c4cbdeec0f8076344a5a946ef3ee828f76 (diff) | |
download | rails-21a5841b1f28dfb548dc69d89bb17dbc89cac950.tar.gz rails-21a5841b1f28dfb548dc69d89bb17dbc89cac950.tar.bz2 rails-21a5841b1f28dfb548dc69d89bb17dbc89cac950.zip |
Add a Rails 5 release note for ActionController::Live becoming a Concern
Related to issue #25581
https://github.com/rails/rails/issues/25581
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/5_0_release_notes.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md index 3832109987..e90a205d0f 100644 --- a/guides/source/5_0_release_notes.md +++ b/guides/source/5_0_release_notes.md @@ -447,6 +447,17 @@ Please refer to the [Changelog][action-pack] for detailed changes. `stale?`. ([Pull Request](https://github.com/rails/rails/pull/18374)) +* `ActionController::Live` became an `ActiveSupport::Concern`. That + means it can't be just included in other modules without extending + them with `ActiveSupport::Concern` or `ActionController::Live` + won't take effect in production. Some people may be using another + module to include some special `Warden`/`Devise` authentication + failure handling code as well since the middleware can't catch a + `:warden` thrown by a spawned thread which is the case when using + `ActionController::Live`. + ([More details in this issue](https://github.com/rails/rails/issues/25581)) + + Action View ------------- |