aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-10-31 02:21:52 +0900
committerkennyj <kennyj@gmail.com>2012-10-31 10:04:10 +0900
commita7c3c9025009cef98cd91ff27707f678cb8fb3c3 (patch)
tree2d3cb829b8fcbcf4cc9aba6eedb6d2757e527a66 /activerecord/CHANGELOG.md
parent7e17b0baec4ea811c1a7e3bd491eaedf95b1feb4 (diff)
downloadrails-a7c3c9025009cef98cd91ff27707f678cb8fb3c3.tar.gz
rails-a7c3c9025009cef98cd91ff27707f678cb8fb3c3.tar.bz2
rails-a7c3c9025009cef98cd91ff27707f678cb8fb3c3.zip
Fix #6951. Use query cache/uncache, when using not only database.yml but also DATABASE_URL.
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 f7aed090a4..7d318808de 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Use query cache/uncache when using DATABASE_URL.
+ Fix #6951.
+
+ *kennyj*
+
* Added `#none!` method for mutating `ActiveRecord::Relation` objects to a NullRelation.
It acts like `#none` but modifies relation in place.