aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-07-07 22:10:01 +0900
committerkennyj <kennyj@gmail.com>2012-08-21 23:40:28 +0900
commit57bef99073fc2e3e30694bf1fb1a3c04a63bfcff (patch)
tree74443d08eb3e02752d39a1d19de00d85d8bf0b66 /activerecord/CHANGELOG.md
parent55d943c5670997ce64744c1ae3cd0426f5517b10 (diff)
downloadrails-57bef99073fc2e3e30694bf1fb1a3c04a63bfcff.tar.gz
rails-57bef99073fc2e3e30694bf1fb1a3c04a63bfcff.tar.bz2
rails-57bef99073fc2e3e30694bf1fb1a3c04a63bfcff.zip
Use instance_accessor: false instead of instance_writer.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6164be5e5b..da31da3269 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* `serialized_attributes` and `_attr_readonly` become class method only. Instance reader methods are deprecated.
+
+ *kennyj*
+
* Round usec when comparing timestamp attributes in the dirty tracking.
Fixes #6975.