aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authordm1try <dmitry.dedov@tut.by>2013-11-11 19:41:54 +0300
committerdm1try <dmitry.dedov@tut.by>2013-11-11 19:53:02 +0300
commitdbb7ee1bfd16d9aabd3b3ed1a566c8752e9af3c0 (patch)
tree5876bd466300396612893a17e6746f9cabf049cc /activerecord/CHANGELOG.md
parentb31b6e669935cfa7e88e75c02dbd0892d1b9853e (diff)
downloadrails-dbb7ee1bfd16d9aabd3b3ed1a566c8752e9af3c0.tar.gz
rails-dbb7ee1bfd16d9aabd3b3ed1a566c8752e9af3c0.tar.bz2
rails-dbb7ee1bfd16d9aabd3b3ed1a566c8752e9af3c0.zip
Prevent the counter cache from being decremented twice
when destroying a record on a has_many :through association. :destroy method has own counter_cache callbacks.
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 54c243951d..524a048c7c 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Prevent the counter cache from being decremented twice when destroying
+ a record on a has_many :through association.
+
+ Fixes #11079.
+
+ *Dmitry Dedov*
+
* Unify boolean type casting for `MysqlAdapter` and `Mysql2Adapter`.
`type_cast` will return `1` for `true` and `0` for `false`.