Preparing for 4.1.1 release

This commit is contained in:
Rafael Mendonça França 2014-05-05 13:06:29 -03:00
parent 529720df01
commit 254e8e2c97
17 changed files with 72 additions and 10 deletions

View File

@ -1 +1 @@
4.1.0
4.1.1

View File

@ -1,3 +1,10 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* Support the use of underscored symbols when registering interceptors and
observers like we do elsewhere within Rails.

View File

@ -7,7 +7,7 @@ module ActionMailer
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,16 @@
## Rails 4.1.1 (May 6, 2014) ##
* Only accept actions without File::SEPARATOR in the name.
This will avoid directory traversal in implicit render.
Fixes: CVE-2014-0130
*Rafael Mendonça França*
## Rails 4.1.0 (April 8, 2014) ##
* Swapped the parameters of assert_equal in `assert_select` so that the
proper values were printed correctly

View File

@ -7,7 +7,7 @@ module ActionPack
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,7 +1,14 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* Fixed ActionView::Digestor template lookup to use the lookup_context exclusively, and not rely on the passed-in format.
This unfortunately means that the cache_key changed, so upgrading will invalidate all prior caches. Take note if you rely
heavily on caching in production when you push this live.
*DHH*
* `number_to_percentage` does not crash with `Float::NAN` or `Float::INFINITY`

View File

@ -7,7 +7,7 @@ module ActionView
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,10 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* `#to_param` returns `nil` if `#to_key` returns `nil`. Fixes #11399.
*Yves Senn*

View File

@ -7,7 +7,7 @@ module ActiveModel
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,10 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* Fixed a problem where an enum would overwrite values of another enum
with the same name in an unrelated class.

View File

@ -7,7 +7,7 @@ module ActiveRecord
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,10 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* Added `Object#presence_in` to simplify value whitelisting.
Before:

View File

@ -7,7 +7,7 @@ module ActiveSupport
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,10 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* Fixed missing line and shadow on service pages(404, 422, 500).
*Dmitry Korotkov*

View File

@ -1,3 +1,10 @@
## Rails 4.1.1 (May 6, 2014) ##
* No changes.
## Rails 4.1.0 (April 8, 2014) ##
* Introduce `Rails.gem_version` as a convenience method to return
`Gem::Version.new(Rails.version)`, suggesting a more reliable way to perform
version comparison.

View File

@ -7,7 +7,7 @@ module Rails
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -7,7 +7,7 @@ module Rails
module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")