aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-03-08 22:48:13 -0800
committerVijay Dev <vijaydev.cse@gmail.com>2012-03-08 22:48:13 -0800
commit98144207789893c480ed42b007f4964070d9f870 (patch)
tree2545a467f897715450616002f6ddc5369463d6a3
parent94b2c8c32d00e101b306875b86abf11b28b55699 (diff)
parentdb743ff459385a9131b059151d011c59e8e094be (diff)
downloadrails-98144207789893c480ed42b007f4964070d9f870.tar.gz
rails-98144207789893c480ed42b007f4964070d9f870.tar.bz2
rails-98144207789893c480ed42b007f4964070d9f870.zip
Merge pull request #5350 from rafaelfranca/changelog-fix-3-2
Changelog fix 3 2
-rw-r--r--actionmailer/CHANGELOG.md4
-rw-r--r--actionpack/CHANGELOG.md7
-rw-r--r--activemodel/CHANGELOG.md6
-rw-r--r--activerecord/CHANGELOG.md13
-rw-r--r--activeresource/CHANGELOG.md2
-rw-r--r--activesupport/CHANGELOG.md1
-rw-r--r--railties/CHANGELOG.md26
7 files changed, 42 insertions, 17 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index f44bd1d9cd..a073018b42 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -2,14 +2,17 @@
* Upgrade mail version to 2.4.3 *ML*
+
## Rails 3.2.2 (March 1, 2012) ##
* No changes.
+
## Rails 3.2.1 (January 26, 2012) ##
* No changes.
+
## Rails 3.2.0 (January 20, 2012) ##
* Upgrade mail version to 2.4.0 *ML*
@@ -95,6 +98,7 @@
* Mail does not have "quoted_body", "quoted_subject" etc. All of these are accessed via body.encoded, subject.encoded etc
* Every object in a Mail object returns an object, never a string. So Mail.body returns a Mail::Body class object, need to call #encoded or #decoded to get the string you want.
+
* Mail::Message#set_content_type does not exist, it is simply Mail::Message#content_type
* Every mail message gets a unique message_id unless you specify one, had to change all the tests that check for equality with expected.encoded == actual.encoded to first replace their message_ids with control values
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 1b806a1a20..2a98556b71 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -9,15 +9,16 @@
* 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*
+* 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*
+* Add a new line after the textarea opening tag. Closes #393 *Rafael Mendonça França*
* 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) ##
+
+## Rails 3.2.2 (March 1, 2012) ##
* Format lookup for partials is derived from the format in which the template is being rendered. Closes #5025 part 2 *Santiago Pastorino*
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index a5f78bf5b7..d3ea4c85dc 100644
--- a/activemodel/CHANGELOG.md
+++ b/activemodel/CHANGELOG.md
@@ -2,14 +2,17 @@
* No changes.
+
## Rails 3.2.2 (March 1, 2012) ##
* No changes.
+
## Rails 3.2.1 (January 26, 2012) ##
* No changes.
+
## Rails 3.2.0 (January 20, 2012) ##
* Deprecated `define_attr_method` in `ActiveModel::AttributeMethods`, because this only existed to
@@ -23,6 +26,7 @@
* Provide mass_assignment_sanitizer as an easy API to replace the sanitizer behavior. Also support both :logger (default) and :strict sanitizer behavior *Bogdan Gusiev*
+
## Rails 3.1.0 (August 30, 2011) ##
* Alternate I18n namespace lookup is no longer supported.
@@ -51,7 +55,7 @@
* No changes.
-* Rails 3.0.6 (April 5, 2011)
+## Rails 3.0.6 (April 5, 2011) ##
* Fix when database column name has some symbolic characters (e.g. Oracle CASE# VARCHAR2(20)) #5818 #6850 *Robert Pankowecki, Santiago Pastorino*
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 9c877aafe1..5fe57712d4 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -12,6 +12,12 @@
* Fix #5069 - Protect foreign key from mass assignment through association builder. *byroot*
+
+## Rails 3.2.2 (March 1, 2012) ##
+
+* No changes.
+
+
## Rails 3.2.1 (January 26, 2012) ##
* The threshold for auto EXPLAIN is ignored if there's no logger. *fxn*
@@ -206,7 +212,8 @@
*Brian Durand*
-## Rails 3.1.3 (unreleased) ##
+
+## Rails 3.1.3 (November 20, 2011) ##
* Perf fix: If we're deleting all records in an association, don't add a IN(..) clause
to the query. *GH 3672*
@@ -219,7 +226,8 @@
*Christos Zisopoulos and Kenny J*
-## Rails 3.1.2 (unreleased) ##
+
+## Rails 3.1.2 (November 18, 2011) ##
* Fix bug with PostgreSQLAdapter#indexes. When the search path has multiple schemas, spaces
were not being stripped from the schema names after the first.
@@ -266,6 +274,7 @@
*Kenny J*
+
## Rails 3.1.1 (October 7, 2011) ##
* Add deprecation for the preload_associations method. Fixes #3022.
diff --git a/activeresource/CHANGELOG.md b/activeresource/CHANGELOG.md
index a6ff7a224a..ef957c68ed 100644
--- a/activeresource/CHANGELOG.md
+++ b/activeresource/CHANGELOG.md
@@ -2,10 +2,12 @@
* No changes.
+
## Rails 3.2.2 (March 1, 2012) ##
* No changes.
+
## Rails 3.2.1 (January 26, 2012) ##
* Documentation fixes.
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 8ae484ad95..f35c147e60 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -89,6 +89,7 @@
* ActiveSupport::BufferedLogger#flush is deprecated. Set sync on your
filehandle, or tune your filesystem.
+
## Rails 3.1.0 (August 30, 2011) ##
* ActiveSupport::Dependencies#load and ActiveSupport::Dependencies#require now
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 3db64ceb65..b02e952671 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -2,10 +2,12 @@
* No changes.
+
## Rails 3.2.2 (March 1, 2012) ##
* No changes.
+
## Rails 3.2.1 (January 26, 2012) ##
* Documentation fixes.
@@ -54,7 +56,19 @@
* Remove old 'config.paths.app.controller' API in favor of 'config.paths["app/controller"]' API *Guillermo Iguaran*
-* Rails 3.1.1
+## Rails 3.1.2 (November 18, 2011) ##
+
+* Engines: don't blow up if db/seeds.rb is missing.
+
+ *Jeremy Kemper*
+
+* `rails new foo --skip-test-unit` should not add the `:test` task to the rake default task.
+ *GH 2564*
+
+ *José Valim*
+
+
+## Rails 3.1.1 (October 7, 2011) ##
* Add jquery-rails to Gemfile of plugins, test/dummy app needs it. Closes #3091. *Santiago Pastorino*
@@ -67,16 +81,6 @@
Plugins developers need to special case their initializers that are
meant to be run in the assets group by adding :group => :assets.
-## Rails 3.1.2 (unreleased) ##
-
-* Engines: don't blow up if db/seeds.rb is missing.
-
- *Jeremy Kemper*
-
-* `rails new foo --skip-test-unit` should not add the `:test` task to the rake default task.
- *GH 2564*
-
- *José Valim*
## Rails 3.1.0 (August 30, 2011) ##