mirror of https://github.com/rails/rails
Preparing for 4.1.1 release
This commit is contained in:
parent
529720df01
commit
254e8e2c97
|
@ -1 +1 @@
|
|||
4.1.0
|
||||
4.1.1
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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`
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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(".")
|
||||
|
|
|
@ -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(".")
|
||||
|
|
Loading…
Reference in New Issue