mirror of https://github.com/rails/rails
Preparing for 4.1.6.rc1 release
This commit is contained in:
parent
06b185c655
commit
c3f578c4b8
|
@ -1 +1 @@
|
|||
4.1.5
|
||||
4.1.6.rc1
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.6 (August 19, 2014) ##
|
||||
|
||||
* Prepend a JS comment to JSONP callbacks. Addresses CVE-2014-4671
|
||||
("Rosetta Flash")
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.6 (August 19, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.5 (August 18, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.6 (August 19, 2014) ##
|
||||
|
||||
* Fix DateTime comparison with DateTime::Infinity object.
|
||||
|
||||
*Rafael Mendonça França*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.6 (August 19, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.5 (August 18, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.6 (August 19, 2014) ##
|
||||
|
||||
* Scaffold generator `_form` partial adds `class="field"` for password
|
||||
confirmation fields.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue