aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-09-19 15:52:13 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-09-19 15:52:13 -0700
commitc4111ec5f84a549c759a154de9f5822b66d95385 (patch)
tree97cc4edeed9f39f28f2ba17cf92583f5ea5e598e /actionpack
parent7c2d33bd86768233335ec630302d3ffa879425ac (diff)
parent1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0 (diff)
downloadrails-c4111ec5f84a549c759a154de9f5822b66d95385.tar.gz
rails-c4111ec5f84a549c759a154de9f5822b66d95385.tar.bz2
rails-c4111ec5f84a549c759a154de9f5822b66d95385.zip
Merge pull request #7707 from guilleiguaran/changelogs-update
Update changelogs to add entries about strong_parameters integration
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 7212e3a289..9f0f214137 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,19 @@
## Rails 4.0.0 (unreleased) ##
+* Add `ActionController::StrongParameters`, this module converts `params` hash into
+ an instance of ActionController::Parameters that allows whitelisting of permitted
+ parameters. Non-permitted parameters are forbidden to be used in Active Model by default
+ For more details check the documentation of the module or the
+ [strong_parameters gem](https://github.com/rails/strong_parameters)
+
+ *DHH + Guillermo Iguaran*
+
+* Remove Integration between `attr_accessible`/`attr_protected` and
+ `ActionController::ParamsWrapper`. ParamWrapper now wraps all the parameters returned
+ by the class method attribute_names
+
+ *Guillermo Iguaran*
+
* Fix #7646, the log now displays the correct status code when an exception is raised.
*Yves Senn*