aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/5_0_release_notes.md
diff options
context:
space:
mode:
authorRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>2016-06-30 14:51:43 -0300
committerGitHub <noreply@github.com>2016-06-30 14:51:43 -0300
commit21a5841b1f28dfb548dc69d89bb17dbc89cac950 (patch)
treede0ae2fdbc8eca57ec260294a4726fd442959222 /guides/source/5_0_release_notes.md
parentb96bd9c4cbdeec0f8076344a5a946ef3ee828f76 (diff)
downloadrails-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/source/5_0_release_notes.md')
-rw-r--r--guides/source/5_0_release_notes.md11
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
-------------