Skip to content

Commit

Permalink
Merge pull request #5350 from rafaelfranca/changelog-fix-3-2
Browse files Browse the repository at this point in the history
Changelog fix 3 2
  • Loading branch information
vijaydev committed Mar 9, 2012
2 parents 94b2c8c + db743ff commit 9814420
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 17 deletions.
4 changes: 4 additions & 0 deletions actionmailer/CHANGELOG.md
Expand Up @@ -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*
Expand Down Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions actionpack/CHANGELOG.md
Expand Up @@ -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*

Expand Down
6 changes: 5 additions & 1 deletion activemodel/CHANGELOG.md
Expand Up @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -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*

Expand Down
13 changes: 11 additions & 2 deletions activerecord/CHANGELOG.md
Expand Up @@ -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*
Expand Down Expand Up @@ -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*
Expand All @@ -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.
Expand Down Expand Up @@ -266,6 +274,7 @@

*Kenny J*


## Rails 3.1.1 (October 7, 2011) ##

* Add deprecation for the preload_associations method. Fixes #3022.
Expand Down
2 changes: 2 additions & 0 deletions activeresource/CHANGELOG.md
Expand Up @@ -2,10 +2,12 @@

* No changes.


## Rails 3.2.2 (March 1, 2012) ##

* No changes.


## Rails 3.2.1 (January 26, 2012) ##

* Documentation fixes.
Expand Down
1 change: 1 addition & 0 deletions activesupport/CHANGELOG.md
Expand Up @@ -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
Expand Down
26 changes: 15 additions & 11 deletions railties/CHANGELOG.md
Expand Up @@ -2,10 +2,12 @@

* No changes.


## Rails 3.2.2 (March 1, 2012) ##

* No changes.


## Rails 3.2.1 (January 26, 2012) ##

* Documentation fixes.
Expand Down Expand Up @@ -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*

Expand All @@ -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) ##

Expand Down

0 comments on commit 9814420

Please sign in to comment.