Preparing for 4.1.6.rc1 release

This commit is contained in:
Rafael Mendonça França 2014-08-19 14:45:44 -03:00
parent 06b185c655
commit c3f578c4b8
17 changed files with 39 additions and 17 deletions

View File

@ -1 +1 @@
4.1.5
4.1.6.rc1

View File

@ -1,3 +1,5 @@
## Rails 4.1.6 (August 19, 2014) ##
* Make ActionMailer::Previews methods class methods. Previously they were
instance methods and ActionMailer tries to render a message when they
are called.

View File

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

View File

@ -1,3 +1,5 @@
## Rails 4.1.6 (August 19, 2014) ##
* Prepend a JS comment to JSONP callbacks. Addresses CVE-2014-4671
("Rosetta Flash")

View File

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

View File

@ -1,3 +1,5 @@
## Rails 4.1.6 (August 19, 2014) ##
* Fix that render layout: 'messages/layout' should also be added to the dependency tracker tree.
*DHH*

View File

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

View File

@ -1,3 +1,8 @@
## Rails 4.1.6 (August 19, 2014) ##
* No changes.
## Rails 4.1.5 (August 18, 2014) ##
* No changes.

View File

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

View File

@ -1,3 +1,5 @@
## Rails 4.1.6 (August 19, 2014) ##
* Fixed an issue where custom accessor methods (such as those generated by
`enum`) with the same name as a global method are incorrectly overridden
when subclassing.

View File

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

View File

@ -1,3 +1,5 @@
## Rails 4.1.6 (August 19, 2014) ##
* Fix DateTime comparison with DateTime::Infinity object.
*Rafael Mendonça França*

View File

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

View File

@ -1,3 +1,8 @@
## Rails 4.1.6 (August 19, 2014) ##
* No changes.
## Rails 4.1.5 (August 18, 2014) ##
* No changes.

View File

@ -1,3 +1,5 @@
## Rails 4.1.6 (August 19, 2014) ##
* Scaffold generator `_form` partial adds `class="field"` for password
confirmation fields.

View File

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

View File

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