aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-06-14 23:26:06 +0200
committerXavier Noria <fxn@hashref.com>2012-06-14 23:26:06 +0200
commit2109fd58040b79c272d7d6ef10a7b56d313dec57 (patch)
treea8872b1cc86ed3a36b4591ef2a2d7082e7ec4e02 /activerecord
parent63bcfbb2386ac974a0087476a0c58634963a0be9 (diff)
downloadrails-2109fd58040b79c272d7d6ef10a7b56d313dec57.tar.gz
rails-2109fd58040b79c272d7d6ef10a7b56d313dec57.tar.bz2
rails-2109fd58040b79c272d7d6ef10a7b56d313dec57.zip
registers the deprecation of update_attribute in the CHANGELOG
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
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