aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-05-31 10:19:29 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-05-31 10:19:29 -0700
commitd3e5d1c295365238412fc3aa2666d09ddb69bb1d (patch)
treea2796c4cf08ac508e87df85cc09aa4745a8f87a1 /activerecord
parentac465d5dd2220acba26947ed3c6d29c11287e333 (diff)
downloadrails-d3e5d1c295365238412fc3aa2666d09ddb69bb1d.tar.gz
rails-d3e5d1c295365238412fc3aa2666d09ddb69bb1d.tar.bz2
rails-d3e5d1c295365238412fc3aa2666d09ddb69bb1d.zip
updating changelogs
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 8dab1f3db0..4c81698517 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,4 +1,4 @@
-## Rails 3.2.4 (unreleased) ##
+## Rails 3.2.4 (May 31, 2012) ##
* Perf fix: Don't load the records when doing assoc.delete_all.
GH #6289. *Jon Leighton*
@@ -7,6 +7,12 @@
This could cause infinite recursion and potentially other problems.
See GH #5667. *Jon Leighton*
+* Datetime attributes are forced to be changed. GH #3965
+
+* Fix attribute casting. GH #5549
+
+* Fix #5667. Preloading should ignore scoping.
+
## Rails 3.2.3 (March 30, 2012) ##
* Added find_or_create_by_{attribute}! dynamic method. *Andrew White*