mirror of https://github.com/rails/rails
Update CHANGELOGS
This commit is contained in:
parent
7184e3e02e
commit
0f75e2c51f
|
@ -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.:
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
## Rails 4.0.0 (unreleased) ##
|
||||
|
||||
|
||||
## Rails 4.0.0.beta1 (unreleased) ##
|
||||
|
||||
* Split Validations and Callbacks guide into two. *Steve Klabnik*
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue