aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-09-23 21:56:22 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-09-23 21:56:22 +0000
commita6f49d9b786bfcc049a99f843de8e4d838de1179 (patch)
tree139e2e6e450e64de213294115324ab877802b690 /actionpack/CHANGELOG
parentc61900385452e50bd825f1ab5abef95bc969fadc (diff)
downloadrails-a6f49d9b786bfcc049a99f843de8e4d838de1179.tar.gz
rails-a6f49d9b786bfcc049a99f843de8e4d838de1179.tar.bz2
rails-a6f49d9b786bfcc049a99f843de8e4d838de1179.zip
Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. Closes #9449.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7597 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 713e25396e..8d25ff47f3 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. #9449 [norbert]
+
* Rename some RequestForgeryProtection methods. The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'. [Rick]
* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests. [Rick]