diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-09-19 17:10:32 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-09-19 17:50:39 -0500 |
commit | 1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0 (patch) | |
tree | 97cc4edeed9f39f28f2ba17cf92583f5ea5e598e /activemodel | |
parent | 7c2d33bd86768233335ec630302d3ffa879425ac (diff) | |
download | rails-1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0.tar.gz rails-1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0.tar.bz2 rails-1f4c89fbde85a07cb3eba9888eb1f9f226d3a1f0.zip |
Update changelogs to add entries about strong_parameters integration
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/CHANGELOG.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index d7041055a4..2c966943ee 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,5 +1,16 @@ ## Rails 4.0.0 (unreleased) ## +* Add `ActiveModel::ForbiddenAttributesProtection`, a simple module to + protect attributes from mass assignment when non-permitted attributes are passed. + + *DHH + Guillermo Iguaran* + +* `ActiveModel::MassAssignmentSecurity` has been extracted from Active Model and the + `protected_attributes` gem should be added to Gemfile in order to use + `attr_accessible` and `attr_protected` macros in your models. + + *Guillermo Iguaran* + * Due to a change in builder, nil values and empty strings now generates closed tags, so instead of this: |