Clean up CHANGELOGs

This commit is contained in:
Jeremy Kemper 2010-08-28 15:45:14 -07:00
parent 390d285ef6
commit 0d0c46abd1
6 changed files with 55 additions and 4 deletions

View File

@ -1,6 +1,16 @@
*Rails 3.0.0 (unreleased)*
* No changes
*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
* No changes
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* No material changes
* No changes
*Rails 3.0.0 [beta 4] (June 8th, 2010)*

View File

@ -1,3 +1,5 @@
*Rails 3.0.0 (unreleased)*
* password_field renders with nil value by default making the use of passwords secure by default, if you want to render you should do for instance f.password_field(:password, :value => @user.password) [Santiago Pastorino]
* Symbols and strings in routes should yield the same behavior. Note this may break existing apps that were using symbols with the new routes API. [José Valim]

View File

@ -1,3 +1,13 @@
*Rails 3.0.0 (unreleased)*
* No changes
*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
* No changes
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]

View File

@ -1,3 +1,13 @@
*Rails 3.0.0 (unreleased)*
* No changes
*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
* No changes
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]

View File

@ -1,6 +1,16 @@
*Rails 3.0.0 (unreleased)*
* No changes
*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
* No changes
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* No material changes
* No changes
*Rails 3.0.0 [beta 4] (June 8th, 2010)*

View File

@ -1,7 +1,16 @@
*Rails 3.0.0 (unreleased)*
* No changes
*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
* No changes
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Application generation: --skip-testunit and --skip-activerecord become --skip-test-unit
and --skip-active-record respectively. [fxn]
* Application generation: --skip-testunit and --skip-activerecord become --skip-test-unit and --skip-active-record respectively. [fxn]
* Added console to Rails::Railtie as a hook called just after console starts. [José Valim]