diff options
author | Xavier Noria <fxn@hashref.com> | 2012-06-14 23:26:06 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-06-14 23:26:06 +0200 |
commit | 2109fd58040b79c272d7d6ef10a7b56d313dec57 (patch) | |
tree | a8872b1cc86ed3a36b4591ef2a2d7082e7ec4e02 | |
parent | 63bcfbb2386ac974a0087476a0c58634963a0be9 (diff) | |
download | rails-2109fd58040b79c272d7d6ef10a7b56d313dec57.tar.gz rails-2109fd58040b79c272d7d6ef10a7b56d313dec57.tar.bz2 rails-2109fd58040b79c272d7d6ef10a7b56d313dec57.zip |
registers the deprecation of update_attribute in the CHANGELOG
-rw-r--r-- | activerecord/CHANGELOG.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index aa6634517e..885e5b712e 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,11 @@ +## Rails 3.2.7 (unreleased) ## + +* `update_attribute` has been deprecated. Use `update_column` if + you want to bypass mass-assignment protection, validations, callbacks, + and touching of updated_at. Otherwise please use `update_attributes`. + + *Steve Klabnik* + ## Rails 3.2.6 (Jun 12, 2012) ## * protect against the nesting of hashes changing the |