aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMatthew Robertson <matthewrobertson03@gmail.com>2012-12-01 17:56:28 -0800
committerMatthew Robertson <matthew@cloudclinic.ca>2012-12-14 10:03:05 -0800
commita765c8426fe39c73cf9f3ad7f8edcf588c01a11d (patch)
tree237335100d1015cb7b40f8b8eecc4afa38d78f53 /activerecord/CHANGELOG.md
parent01d3a36bfe5d56d85f8a36f2fe10ad96662b4530 (diff)
downloadrails-a765c8426fe39c73cf9f3ad7f8edcf588c01a11d.tar.gz
rails-a765c8426fe39c73cf9f3ad7f8edcf588c01a11d.tar.bz2
rails-a765c8426fe39c73cf9f3ad7f8edcf588c01a11d.zip
Fix for has_many_through counter_cache bug
This commit fixes reported issue #7630 in which counter caches were not being updated properly when replacing has_many_through relationships
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index de386cd358..be3b6564b0 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Fix counter cache columns not updated when replacing `has_many :through`
+ associations.
+
+ *Matthew Robertson*
+
* Recognize migrations placed in directories containing numbers and 'rb'.
Fix #8492