aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-26 01:18:37 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-26 01:18:37 -0300
commite6e5898b5abeeecce2ce4fdf789e91e2234b8526 (patch)
treef5cc9e1cc1de248f1693c46ce3df603cfdf71c97
parentcffaca491fcfd84988377e5258b0938e588350bb (diff)
downloadrails-e6e5898b5abeeecce2ce4fdf789e91e2234b8526.tar.gz
rails-e6e5898b5abeeecce2ce4fdf789e91e2234b8526.tar.bz2
rails-e6e5898b5abeeecce2ce4fdf789e91e2234b8526.zip
Remove CHANGELOG entry for the update_attribute removal.
We reverted the removal because the new deprecation policy
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6fb9097809..dc5255542a 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -277,12 +277,6 @@
* Add uuid datatype support to PostgreSQL adapter. *Konstantin Shabanov*
-* `update_attribute` has been removed. Use `update_columns` if
- you want to bypass mass-assignment protection, validations, callbacks,
- and touching of updated_at. Otherwise please use `update_attributes`.
-
- *Steve Klabnik*
-
* Added `ActiveRecord::Migration.check_pending!` that raises an error if
migrations are pending. *Richard Schneeman*