aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-07-11 02:29:25 +0000
committerMichael Koziarski <michael@koziarski.com>2007-07-11 02:29:25 +0000
commite80fabbbf46cadb69c30e6125ef0422f96ca8b6b (patch)
treefe063546b649f3cea09b35e24b8e76ca7d946f23 /actionpack/CHANGELOG
parentf7bd676c8d2fab1b22ede4e12242b37eb3336884 (diff)
downloadrails-e80fabbbf46cadb69c30e6125ef0422f96ca8b6b.tar.gz
rails-e80fabbbf46cadb69c30e6125ef0422f96ca8b6b.tar.bz2
rails-e80fabbbf46cadb69c30e6125ef0422f96ca8b6b.zip
Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7177 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 83e4a492ed..88832a6f2a 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,11 @@
*SVN*
+* Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes]
+
+ After filters will *no longer* be run if an around_filter fails to yield, users relying on
+ this behaviour are advised to put the code in question after a yield statement in an around filter.
+
+
* Allow you to delete cookies with options. Closes #3685 [josh, Chris Wanstrath]
* Allow you to render views with periods in the name. Closes #8076 [norbert]