aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-06-12 11:00:27 -0600
committerSean Griffin <sean@thoughtbot.com>2015-06-12 11:03:12 -0600
commit07b4078eb664dd45b1526a85358574ea8e669ce3 (patch)
tree27160010746fb8134ebb1262be0dd97605c05b8b /activerecord/CHANGELOG.md
parent8beb328befa53d74fe9c7942ddb188563bd4de33 (diff)
downloadrails-07b4078eb664dd45b1526a85358574ea8e669ce3.tar.gz
rails-07b4078eb664dd45b1526a85358574ea8e669ce3.tar.bz2
rails-07b4078eb664dd45b1526a85358574ea8e669ce3.zip
Don't crash when mutating attributes in a getter
If a getter has side effects on the DB, `changes_applied` will be called twice. The second time will try and remove the changed attributes cache, and will crash because it's already been unset. This also demonstrates that we shouldn't assume that calling getters won't change the value of `changed_attributes`, and we need to clear the cache if an attribute is modified. Fixes #20531.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 14906e441b..d389d7f6fe 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Fixed an error which would occur in dirty checking when calling
+ `update_attributes` from a getter.
+
+ Fixes #20531.
+
+ *Sean Griffin*
+
* Make `remove_foreign_key` reversible. Any foreign key options must be
specified, similar to `remove_column`.