Add missing entries and tidy up CHANGELOG.

This commit is contained in:
José Valim 2010-07-19 15:14:26 +02:00
parent 70f7ba3e3b
commit b22c11fa53
4 changed files with 17 additions and 6 deletions

View File

@ -1,5 +1,7 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
* Allow stylesheet/javascript extensions to be changed through railties. [Josh Kalderimis]
* link_to, button_to, and tag/tag_options now rely on html_escape instead of escape_once. [fxn]
* url_for returns always unescaped strings, and the :escape option is gone. [fxn]

View File

@ -1,3 +1,8 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
* JSON supports a custom root option: to_json(:root => 'custom') #4515 [Jatinder Singh]

View File

@ -1,5 +1,7 @@
*Rails 3.0.0 [RC1] (unreleased)*
* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]
* Add scoping and unscoped as the syntax to replace the old with_scope and with_exclusive_scope [José Valim]
* New rake task, db:migrate:status, displays status of migrations #4947 [Kevin Skoglund]

View File

@ -1,5 +1,7 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
* Added console to Rails::Railtie as a hook called just after console starts. [José Valim]
* Rails no longer autoload code in lib for application. You need to explicitly require it. [José Valim]
* Rails::LogSubscriber was renamed to ActiveSupport::LogSubscriber [José Valim]
@ -13,26 +15,26 @@
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
* Version bump
* Removed Rails Metal [YK & JV].
* Removed Rails Metal [Yehuda Kayz, José Valim].
*Rails 3.0.0 [beta 3] (April 13th, 2010)*
* Renamed config.cookie_secret to config.secret_token and pass it as env key. [JV]
* Renamed config.cookie_secret to config.secret_token and pass it as env key. [José Valim]
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
* Session store configuration has changed [YK & CL]
* Session store configuration has changed [Yehuda Katz, Carl Lerche]
config.session_store :cookie_store, {:key => "..."}
config.cookie_secret = "fdsfhisdghfidugnfdlg"
* railtie_name and engine_name are deprecated. You can now add any object to
the configuration object: config.your_plugin = {} [JV]
the configuration object: config.your_plugin = {} [José Valim]
* Added config.generators.templates to provide alternative paths for the generators
to look for templates [JV]
to look for templates [José Valim]
*Rails 3.0.0 [beta 1] (February 4, 2010)*