Skip to content

Commit

Permalink
Merge pull request #5349 from rafaelfranca/changelog-fix
Browse files Browse the repository at this point in the history
Fix my name in the CHANGELOG to follow the convention
  • Loading branch information
vijaydev committed Mar 9, 2012
2 parents 2741f2c + d804790 commit acc7e50
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 10 deletions.
6 changes: 6 additions & 0 deletions actionmailer/CHANGELOG.md
Expand Up @@ -3,6 +3,11 @@
* Upgrade mail version to 2.4.3 *ML* * Upgrade mail version to 2.4.3 *ML*




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

* No changes.


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


* No changes. * No changes.
Expand Down Expand Up @@ -128,6 +133,7 @@
* Mail does not have "quoted_body", "quoted_subject" etc. All of these are accessed via body.encoded, subject.encoded etc * 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. * 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 * 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 * 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
26 changes: 16 additions & 10 deletions actionpack/CHANGELOG.md
@@ -1,12 +1,12 @@
## Rails 4.0.0 (unreleased) ## ## Rails 4.0.0 (unreleased) ##


* Adds support for layouts when rendering a partial with a given collection. *serabe* * Adds support for layouts when rendering a partial with a given collection. *serabe*


* Allows the route helper `root` to take a string argument. For example, `root 'pages#main'`. *bcardarella* * Allows the route helper `root` to take a string argument. For example, `root 'pages#main'`. *bcardarella*


* Forms of persisted records use always PATCH (via the `_method` hack). *fxn* * Forms of persisted records use always PATCH (via the `_method` hack). *fxn*


* For resources, both PATCH and PUT are routed to the `update` action. *fxn* * For resources, both PATCH and PUT are routed to the `update` action. *fxn*


* Don't ignore `force_ssl` in development. This is a change of behavior - use a `:if` condition to recreate the old behavior. * Don't ignore `force_ssl` in development. This is a change of behavior - use a `:if` condition to recreate the old behavior.


Expand Down Expand Up @@ -114,19 +114,21 @@
* `ActionView::Helpers::TextHelper#highlight` now defaults to the * `ActionView::Helpers::TextHelper#highlight` now defaults to the
HTML5 `mark` element. *Brian Cardarella* HTML5 `mark` element. *Brian Cardarella*



## Rails 3.2.3 (unreleased) ## ## Rails 3.2.3 (unreleased) ##


* Upgrade rack-cache to 1.2. *José Valim* * Upgrade rack-cache to 1.2. *José Valim*

* ActionController::SessionManagement is removed. *Santiago Pastorino*


* ActionController::SessionManagement is removed. *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 *Rafael Mendonça França*


* 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*


* 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*


* Fixes layout rendering regression from 3.2.2. *José Valim*


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


Expand Down Expand Up @@ -318,6 +320,7 @@
returned by the class method attribute_names will be wrapped. This fixes returned by the class method attribute_names will be wrapped. This fixes
the wrapping of nested attributes by adding them to attr_accessible. the wrapping of nested attributes by adding them to attr_accessible.



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


* Skip assets group in Gemfile and all assets configurations options * Skip assets group in Gemfile and all assets configurations options
Expand All @@ -334,6 +337,7 @@


* Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother* * Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother*



## Rails 3.1.3 (November 20, 2011) ## ## Rails 3.1.3 (November 20, 2011) ##


* Downgrade sprockets to ~> 2.0.3. Using 2.1.0 caused regressions. * Downgrade sprockets to ~> 2.0.3. Using 2.1.0 caused regressions.
Expand All @@ -343,6 +347,7 @@


*Jon Leighton* *Jon Leighton*



## Rails 3.1.2 (November 18, 2011) ## ## Rails 3.1.2 (November 18, 2011) ##


* Fix XSS security vulnerability in the `translate` helper method. When using interpolation * Fix XSS security vulnerability in the `translate` helper method. When using interpolation
Expand Down Expand Up @@ -384,6 +389,7 @@


* Ensure users upgrading from 3.0.x to 3.1.x will properly upgrade their flash object in session (issues #3298 and #2509) * Ensure users upgrading from 3.0.x to 3.1.x will properly upgrade their flash object in session (issues #3298 and #2509)



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


* javascript_path and stylesheet_path now refer to /assets if asset pipelining * javascript_path and stylesheet_path now refer to /assets if asset pipelining
Expand Down
11 changes: 11 additions & 0 deletions activemodel/CHANGELOG.md
Expand Up @@ -6,10 +6,17 @@


* Trim down Active Model API by removing `valid?` and `errors.full_messages` *José Valim* * Trim down Active Model API by removing `valid?` and `errors.full_messages` *José Valim*



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

* No changes.


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


* No changes. * No changes.



## Rails 3.2.0 (January 20, 2012) ## ## Rails 3.2.0 (January 20, 2012) ##


* Deprecated `define_attr_method` in `ActiveModel::AttributeMethods`, because this only existed to * Deprecated `define_attr_method` in `ActiveModel::AttributeMethods`, because this only existed to
Expand All @@ -25,14 +32,17 @@


* Provide mass_assignment_sanitizer as an easy API to replace the sanitizer behavior. Also support both :logger (default) and :strict sanitizer behavior *Bogdan Gusiev* * 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.3 (November 20, 2011) ## ## Rails 3.1.3 (November 20, 2011) ##


* No changes * No changes



## Rails 3.1.2 (November 18, 2011) ## ## Rails 3.1.2 (November 18, 2011) ##


* No changes * No changes



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


* Remove hard dependency on bcrypt-ruby to avoid make ActiveModel dependent on a binary library. * Remove hard dependency on bcrypt-ruby to avoid make ActiveModel dependent on a binary library.
Expand All @@ -42,6 +52,7 @@


See GH #2687. *Guillermo Iguaran* See GH #2687. *Guillermo Iguaran*



## Rails 3.1.0 (August 30, 2011) ## ## Rails 3.1.0 (August 30, 2011) ##


* Alternate I18n namespace lookup is no longer supported. * Alternate I18n namespace lookup is no longer supported.
Expand Down
11 changes: 11 additions & 0 deletions activerecord/CHANGELOG.md
Expand Up @@ -152,6 +152,7 @@


* PostgreSQL hstore types are automatically deserialized from the database. * PostgreSQL hstore types are automatically deserialized from the database.



## Rails 3.2.3 (unreleased) ## ## 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* * 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*
Expand All @@ -166,6 +167,12 @@


* Fix #5069 - Protect foreign key from mass assignment through association builder. *byroot* * 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) ## ## Rails 3.2.1 (January 26, 2012) ##


* The threshold for auto EXPLAIN is ignored if there's no logger. *fxn* * The threshold for auto EXPLAIN is ignored if there's no logger. *fxn*
Expand Down Expand Up @@ -356,6 +363,7 @@


*Aaron Christy* *Aaron Christy*



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


* Fix a custom primary key regression *GH 3987* * Fix a custom primary key regression *GH 3987*
Expand Down Expand Up @@ -383,6 +391,7 @@


*Julius de Bruijn* *Julius de Bruijn*



### Rails 3.1.3 (November 20, 2011) ## ### Rails 3.1.3 (November 20, 2011) ##


* Perf fix: If we're deleting all records in an association, don't add a IN(..) clause * Perf fix: If we're deleting all records in an association, don't add a IN(..) clause
Expand All @@ -396,6 +405,7 @@


*Christos Zisopoulos and Kenny J* *Christos Zisopoulos and Kenny J*



### Rails 3.1.2 (November 18, 2011) ## ### Rails 3.1.2 (November 18, 2011) ##


* Fix bug with PostgreSQLAdapter#indexes. When the search path has multiple schemas, spaces * Fix bug with PostgreSQLAdapter#indexes. When the search path has multiple schemas, spaces
Expand Down Expand Up @@ -443,6 +453,7 @@


*Kenny J* *Kenny J*



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


* Add deprecation for the preload_associations method. Fixes #3022. * Add deprecation for the preload_associations method. Fixes #3022.
Expand Down
5 changes: 5 additions & 0 deletions activeresource/CHANGELOG.md
Expand Up @@ -3,6 +3,11 @@
* Adds support for PATCH requests. *dlee* * Adds support for PATCH requests. *dlee*




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

* No changes.


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


* Documentation fixes. * Documentation fixes.
Expand Down
5 changes: 5 additions & 0 deletions activesupport/CHANGELOG.md
Expand Up @@ -27,6 +27,11 @@
* Unicode database updated to 6.1.0. * Unicode database updated to 6.1.0.




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

* No changes.


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


* Documentation fixes and improvements. * Documentation fixes and improvements.
Expand Down
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
Expand Up @@ -20,6 +20,11 @@
* Rails::Plugin has gone. Instead of adding plugins to vendor/plugins use gems or bundler with path or git dependencies. *Santiago Pastorino* * Rails::Plugin has gone. Instead of adding plugins to vendor/plugins use gems or bundler with path or git dependencies. *Santiago Pastorino*




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

* No changes.


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


* Documentation fixes. * Documentation fixes.
Expand Down

0 comments on commit acc7e50

Please sign in to comment.