From 21a5841b1f28dfb548dc69d89bb17dbc89cac950 Mon Sep 17 00:00:00 2001 From: Rodrigo Rosenfeld Rosas Date: Thu, 30 Jun 2016 14:51:43 -0300 Subject: Add a Rails 5 release note for ActionController::Live becoming a Concern Related to issue #25581 https://github.com/rails/rails/issues/25581 --- guides/source/5_0_release_notes.md | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'guides') 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 ------------- -- cgit v1.2.3