aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-05-31 11:26:44 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-05-31 11:26:44 -0700
commit4df968071436a4585c8e4694efecfabb02f1a806 (patch)
tree45ea5201ff32a6063aa24fb90e9ba7f8b8715db0 /activerecord
parentd66fd081759af32e57baabf7888823cfd9bcebd0 (diff)
parentfebd65223e2b3a40755d23a734f6a77e04b97c88 (diff)
downloadrails-4df968071436a4585c8e4694efecfabb02f1a806.tar.gz
rails-4df968071436a4585c8e4694efecfabb02f1a806.tar.bz2
rails-4df968071436a4585c8e4694efecfabb02f1a806.zip
Merge branch '3-2-rel' into 3-2-stable
* 3-2-rel: bumping to 3.2.4 adding security notifications to CHANGELOGs updating changelogs Merge pull request #6558 from parndt/fix_regression
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md11
-rw-r--r--activerecord/lib/active_record/version.rb2
2 files changed, 11 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 8dab1f3db0..6767fb74f5 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,15 @@
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.
+
+* Predicate builder should not recurse for determining where columns.
+ Thanks to Ben Murphy for reporting this! CVE-2012-2661
+
## Rails 3.2.3 (March 30, 2012) ##
* Added find_or_create_by_{attribute}! dynamic method. *Andrew White*
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb
index d48c7a70e8..bf1c540f3e 100644
--- a/activerecord/lib/active_record/version.rb
+++ b/activerecord/lib/active_record/version.rb
@@ -3,7 +3,7 @@ module ActiveRecord
MAJOR = 3
MINOR = 2
TINY = 4
- PRE = "rc1"
+ PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end