aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-11-08 10:49:33 -0800
committerSantiago Pastorino <santiago@wyeworks.com>2012-11-08 10:49:33 -0800
commit70f384e0196fd4f8bcb7dea05af8611df4578563 (patch)
treea133a1f54a0c5b01416afbb20d6adb50ba50beb7 /activerecord/CHANGELOG.md
parentdbd0b12a077703e9dda1ea941c9aba4628a576e1 (diff)
parent16d98b2a41dec3619b9bd48b6b534406d9d07ef4 (diff)
downloadrails-70f384e0196fd4f8bcb7dea05af8611df4578563.tar.gz
rails-70f384e0196fd4f8bcb7dea05af8611df4578563.tar.bz2
rails-70f384e0196fd4f8bcb7dea05af8611df4578563.zip
Merge pull request #7987 from alexisbernard/3-2_find_in_batches_compatible_with_strings
Fix find_in_batches with customized primary_key on 3-2-stable
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a1a2977520..27c4839ac4 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -29,6 +29,10 @@
## Rails 3.2.9 (unreleased)
+* Fix `find_in_batches` crashing when IDs are strings and start option is not specified.
+
+ *Alexis Bernard*
+
* Fix issue with collection associations calling first(n)/last(n) and attempting
to set the inverse association when `:inverse_of` was used. Fixes #8087.