diff options
author | José Valim <jose.valim@gmail.com> | 2010-06-28 11:37:14 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-06-28 11:37:14 +0200 |
commit | dd8b7417a9b793b7780bf5ca5e04b1c05ac3a8f9 (patch) | |
tree | 86edf8a4d54d63237279cbdba18362c11172b48e | |
parent | be994e2c50af6c7cb31602fd45f4e718f011b165 (diff) | |
download | rails-dd8b7417a9b793b7780bf5ca5e04b1c05ac3a8f9.tar.gz rails-dd8b7417a9b793b7780bf5ca5e04b1c05ac3a8f9.tar.bz2 rails-dd8b7417a9b793b7780bf5ca5e04b1c05ac3a8f9.zip |
Update CHANGELOGs.
-rw-r--r-- | actionpack/CHANGELOG | 3 | ||||
-rw-r--r-- | activerecord/CHANGELOG | 5 | ||||
-rw-r--r-- | railties/CHANGELOG | 4 |
3 files changed, 10 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index b17a48003c..23f1d9606f 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *Rails 3.0.0 [Release Candidate] (unreleased)* +* Upgrade to Rack 1.2.1 [Jeremy Kemper] + * Allow :path to be given to match/get/post/put/delete instead of :path_names in the new router [Carlos Antônio da Silva] * Added resources_path_names to the new router DSL [José Valim] @@ -22,7 +24,6 @@ * Removed textilize, textilize_without_paragraph and markdown helpers. [Santiago Pastorino] - *Rails 3.0.0 [beta 4] (June 8th, 2010)* * Remove middleware laziness [José Valim] diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 6c07467535..60739fbd91 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,8 +1,11 @@ *Rails 3.0.0 [RC1] (unreleased)* -* PostgreSQL: ensure the database time zone matches Ruby's time zone. #4895 [Aaron Patterson] * New rake task, db:migrate:status, displays status of migrations #4947 [Kevin Skoglund] +* select and order for ActiveRecord now always concatenate nested calls. Use reorder if you want the original order to be overwritten [Santiago Pastorino] + +* PostgreSQL: ensure the database time zone matches Ruby's time zone #4895 [Aaron Patterson] + *Rails 3.0.0 [beta 4] (June 8th, 2010)* diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 61d84e104a..8e2bac7f00 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,9 @@ *Rails 3.0.0 [Release Candidate] (unreleased)* +* 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] + * config.load_(once_)paths in config/application.rb got renamed to config.autoload_(once_)paths. [fxn] * Abort generation/booting on Ruby 1.9.1. [fxn] |