aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-19 17:10:32 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-19 17:50:39 -0500
commit1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0 (patch)
tree97cc4edeed9f39f28f2ba17cf92583f5ea5e598e /railties/CHANGELOG.md
parent7c2d33bd86768233335ec630302d3ffa879425ac (diff)
downloadrails-1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0.tar.gz
rails-1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0.tar.bz2
rails-1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0.zip
Update changelogs to add entries about strong_parameters integration
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 1c28ac7476..acd2077c2d 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,16 @@
## Rails 4.0.0 (unreleased) ##
+* Add `config.action_controller.permit_all_parameters` to disable
+ StrongParameters protection, it's false by default.
+
+ *Guillermo Iguaran*
+
+* Remove `config.active_record.whitelist_attributes` and
+ `config.active_record.mass_assignment_sanitizer` from new applications since
+ MassAssignmentSecurity has been extracted from Rails.
+
+ *Guillermo Iguaran*
+
* Change `rails new` and `rails plugin new` generators to name the `.gitkeep` files
as `.keep` in a more SCM-agnostic way.