aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/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 /activerecord/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 '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.