aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-11-14 11:28:12 +0000
committerJon Leighton <j@jonathanleighton.com>2011-11-14 11:28:12 +0000
commitda02f792fe78535628f86bf983308800207b4225 (patch)
tree7c61d8552502716585e44c7c69702bf6d3762761 /activerecord/CHANGELOG.md
parent2ec8d52b0cb830412e02b2504f9f2c3a12483b52 (diff)
downloadrails-da02f792fe78535628f86bf983308800207b4225.tar.gz
rails-da02f792fe78535628f86bf983308800207b4225.tar.bz2
rails-da02f792fe78535628f86bf983308800207b4225.zip
Sync CHANGELOGs from 3-1-stable
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a79f4df570..65578c1dc9 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -67,6 +67,27 @@
## Rails 3.1.2 (unreleased) ##
+* Fix bug with PostgreSQLAdapter#indexes. When the search path has multiple schemas, spaces
+ were not being stripped from the schema names after the first.
+
+ *Sean Kirby*
+
+* Preserve SELECT columns on the COUNT for finder_sql when possible. *GH 3503*
+
+ *Justin Mazzi*
+
+* Reset prepared statement cache when schema changes impact statement results. *GH 3335*
+
+ *Aaron Patterson*
+
+* Postgres: Do not attempt to deallocate a statement if the connection is no longer active.
+
+ *Ian Leitch*
+
+* Prevent QueryCache leaking database connections. *GH 3243*
+
+ *Mark J. Titorenko*
+
* Fix bug where building the conditions of a nested through association could potentially
modify the conditions of the through and/or source association. If you have experienced
bugs with conditions appearing in the wrong queries when using nested through associations,