aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2014-06-14 05:51:13 +0930
committerMatthew Draper <matthew@trebex.net>2014-06-14 05:51:13 +0930
commit49fee3d271e52a44a7bc7fcbbcb00792b613b7df (patch)
tree7a2ffd1363c276f139e45f51cc1690ab69eb3bdb /activerecord/CHANGELOG.md
parent1dcb8e997e388cecc75d141812303d42c79a8481 (diff)
parent4bf8ffc6516312e68fb0d2b4ac97505f8d0cf192 (diff)
downloadrails-49fee3d271e52a44a7bc7fcbbcb00792b613b7df.tar.gz
rails-49fee3d271e52a44a7bc7fcbbcb00792b613b7df.tar.bz2
rails-49fee3d271e52a44a7bc7fcbbcb00792b613b7df.zip
Merge pull request #15674 from sgrif/sg-mutable-attributes
Detect in-place changes on mutable AR attributes
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index efa4abfa4d..2915e9b42d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* `ActiveRecord::Dirty` now detects in-place changes to mutable values.
+ Serialized attributes on ActiveRecord models will no longer save when
+ unchanged. Fixes #8328.
+
+ Sean Griffin
+
* Fixed automatic maintaining test schema to properly handle sql structure
schema format.