aboutsummaryrefslogtreecommitdiffstats
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
parentc1a01c795d020613fbdc43447b4f4ceee53b4f69 (diff)
downloadrails-3bfd6516c3511c60f975d77e7d8edf002ecb1b0f.tar.gz
rails-3bfd6516c3511c60f975d77e7d8edf002ecb1b0f.tar.bz2
rails-3bfd6516c3511c60f975d77e7d8edf002ecb1b0f.zip
changelog updates [ci skip]
-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*