aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-03-09 02:07:34 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-03-09 02:07:42 +0530
commit3bfd6516c3511c60f975d77e7d8edf002ecb1b0f (patch)
treef2019e42638b915d66dd03cd429f405843bc2077 /activerecord/CHANGELOG.md
parentc1a01c795d020613fbdc43447b4f4ceee53b4f69 (diff)
downloadrails-3bfd6516c3511c60f975d77e7d8edf002ecb1b0f.tar.gz
rails-3bfd6516c3511c60f975d77e7d8edf002ecb1b0f.tar.bz2
rails-3bfd6516c3511c60f975d77e7d8edf002ecb1b0f.zip
changelog updates [ci skip]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3cf2f6a4e9..9c877aafe1 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,17 @@
+## Rails 3.2.3 (unreleased) ##
+
+* Whitelist all attribute assignment by default. Change the default for newly generated applications to whitelist all attribute assignment. Also update the generated model classes so users are reminded of the importance of attr_accessible. *NZKoz*
+
+* Update ActiveRecord::AttributeMethods#attribute_present? to return false for empty strings. *Jacobkg*
+
+* Fix associations when using per class databases. *larskanis*
+
+* Revert setting NOT NULL constraints in add_timestamps *fxn*
+
+* Fix mysql to use proper text types. Fixes #3931. *kennyj*
+
+* Fix #5069 - Protect foreign key from mass assignment through association builder. *byroot*
+
## Rails 3.2.1 (January 26, 2012) ##
* The threshold for auto EXPLAIN is ignored if there's no logger. *fxn*