aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 210151a2ad..4d2aeda41e 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,12 @@
+* Isolate access to @associations_cache and @aggregations cache to the
+ Associations and Aggregations modules, respectively.
+
+ This includes replacing the `association_cache` accessor with an
+ `association_cached?` accessor and making `clear_association_cache`
+ and `clear_aggregation_cache` private.
+
+ *Ben Woosley*
+
* Honor overridden `rack.test` in Rack environment for the connection
management middleware.