aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-11-14 16:07:26 +0100
committerMichael Koziarski <michael@koziarski.com>2008-11-14 16:11:07 +0100
commite4a345c1dc13f7de99b782f4a1115d58b7bf1b45 (patch)
treef3ecd16cab87345f3ef512feffcbe23adc32b6dd /actionpack/CHANGELOG
parent16ae82db1e2b830424aa3c94db57281da96aa62d (diff)
downloadrails-e4a345c1dc13f7de99b782f4a1115d58b7bf1b45.tar.gz
rails-e4a345c1dc13f7de99b782f4a1115d58b7bf1b45.tar.bz2
rails-e4a345c1dc13f7de99b782f4a1115d58b7bf1b45.zip
Missing changelog for CSRF changes
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 0b3811c794..5b9114755c 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,7 +1,13 @@
*2.2.1 [RC2] (November 14th, 2008)*
+* Switched the CSRF module to use the request content type to decide if the request is forgeable. #1145 [Jeff Cohen]
+
* Added :only and :except to map.resources to let people cut down on the number of redundant routes in an application. Typically only useful for huge routesets. #1215 [Tom Stuart]
+ map.resources :products, :only => :show do |product|
+ product.resources :images, :except => :destroy
+ end
+
* Added render :js for people who want to render inline JavaScript replies without using RJS [DHH]
* Fixed that polymorphic_url should compact given array #1317 [hiroshi]