aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG.md4
-rw-r--r--actionpack/CHANGELOG.md11
-rw-r--r--activerecord/CHANGELOG.md14
3 files changed, 29 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 41a97823ed..6adf93187e 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,7 @@
+## Rails 3.2.3 (unreleased) ##
+
+* Upgrade mail version to 2.4.3 *ML*
+
## Rails 3.2.1 (January 26, 2012) ##
* No changes.
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index d7552e74e1..1b806a1a20 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -5,6 +5,17 @@
* Fix #5238, rendered_format is not set when template is not rendered. *Piotr Sarnacki*
+* Upgrade rack-cache to 1.2. *José Valim*
+
+* ActionController::SessionManagement is deprecated. *Santiago Pastorino*
+
+* Since the router holds references to many parts of the system like engines, controllers and the application itself, inspecting the route set can actually be really slow, therefore we default alias inspect to to_s. *José Valim*
+
+* Add a new line after the textarea opening tag. Closes #393 *rafaelfranca*
+
+* Always pass a respond block from to responder. We should let the responder to decide what to do with the given overridden response block, and not short circuit it. *sikachu*
+
+* Fixes layout rendering regression from 3.2.2. *José Valim*
## Rails 3.2.2 (unreleased) ##
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*