aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-01-26 13:04:40 +0100
committerXavier Noria <fxn@hashref.com>2012-01-26 13:04:40 +0100
commit280937578b14b06bcb8b92f13d7243eadc890de7 (patch)
treeec58b58c124f5143cd1ffc6c2f6556046d01b05d /activerecord
parent24834606c2c41c362ea10b8ae35b45aaffd9c483 (diff)
downloadrails-280937578b14b06bcb8b92f13d7243eadc890de7.tar.gz
rails-280937578b14b06bcb8b92f13d7243eadc890de7.tar.bz2
rails-280937578b14b06bcb8b92f13d7243eadc890de7.zip
registers 2483460 in the CHANGELOG
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 05c32ecf86..ccc3277e09 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 3.2.1 (unreleased) ##
+* The threshold for auto EXPLAIN is ignored if there's no logger. *fxn*
+
* Fix possible race condition when two threads try to define attribute
methods for the same class.
@@ -65,7 +67,7 @@
* Implemented ActiveRecord::Relation#pluck method
Method returns Array of column value from table under ActiveRecord model
-
+
Client.pluck(:id)
*Bogdan Gusiev*
@@ -82,7 +84,7 @@
Post.find(1)
Post.connection.close
}.join
-
+
Only people who spawn threads in their application code need to worry
about this change.
@@ -181,7 +183,7 @@
during :reject_if => :all_blank (fixes #2937)
*Aaron Christy*
-
+
* Add ActiveSupport::Cache::NullStore for use in development and testing.
*Brian Durand*