aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
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 /activerecord/CHANGELOG.md
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 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index b064d6f511..756a0d7196 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,19 @@
## Rails 4.0.0 (unreleased) ##
+* `ActiveModel::ForbiddenAttributesProtection` is included by default
+ in Active Record models. Check the docs of `ActiveModel::ForbiddenAttributesProtection`
+ for more details.
+
+ *Guillermo Iguaran*
+
+* Remove integration between Active Record and
+ `ActiveModel::MassAssignmentSecurity`, `protected_attributes` gem
+ should be added to use `attr_accessible`/`attr_protected`. Mass
+ assignment options has been removed from all the AR methods that
+ used it (ex. AR::Base.new, AR::Base.create, AR::Base#update_attributes, etc)
+
+ *Guillermo Iguaran*
+
* Fix the return of querying with an empty hash.
Fix #6971.