Update CHANGELOGS

This commit is contained in:
Rafael Mendonça França 2013-02-26 13:45:20 -03:00
parent 7184e3e02e
commit 0f75e2c51f
7 changed files with 30 additions and 5 deletions

View File

@ -1,3 +1,6 @@
## Rails 4.0.0 (unreleased) ##
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Allow passing interpolations to `#default_i18n_subject`, e.g.:

View File

@ -1,3 +1,6 @@
## Rails 4.0.0 (unreleased) ##
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Fix `respond_to` not using formats that have no block if all is present. *Michael Grosser*

View File

@ -1,3 +1,6 @@
## Rails 4.0.0 (unreleased) ##
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Add `ActiveModel::Validations::AbsenceValidator`, a validator to check the

View File

@ -1,8 +1,4 @@
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Fix overriding of attributes by default_scope on `ActiveRecord::Base#dup`.
*Hiroshige UMINO*
## Rails 4.0.0 (unreleased) ##
* Fix when performing an ordered join query. The bug only
affected queries where the order was given with a symbol.
@ -13,6 +9,17 @@
# This will expand the order :name to "authors".name.
Author.joins(:books).where('books.published = 1').order(:name)
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Fix overriding of attributes by default_scope on `ActiveRecord::Base#dup`.
*Hiroshige UMINO*
* Update queries now use prepared statements.
*Olli Rissanen*
* Fixing issue #8345. Now throwing an error when one attempts to touch a
new object that has not yet been persisted. For instance:

View File

@ -1,3 +1,6 @@
## Rails 4.0.0 (unreleased) ##
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Prevent `DateTime#change` from truncating the second fraction, when seconds

View File

@ -1,3 +1,6 @@
## Rails 4.0.0 (unreleased) ##
## Rails 4.0.0.beta1 (unreleased) ##
* Split Validations and Callbacks guide into two. *Steve Klabnik*

View File

@ -1,3 +1,6 @@
## Rails 4.0.0 (unreleased) ##
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Improve `rake stats` for JavaScript and CoffeeScript: ignore block comments