mirror of https://github.com/rails/rails
Preparing for 4.1.6 release
This commit is contained in:
parent
3a9bcd9798
commit
24027162db
|
@ -1 +1 @@
|
|||
4.1.6.rc2
|
||||
4.1.6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* Make ActionMailer::Previews methods class methods. Previously they were
|
||||
instance methods and ActionMailer tries to render a message when they
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionMailer
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* Prepend a JS comment to JSONP callbacks. Addresses CVE-2014-4671
|
||||
("Rosetta Flash")
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionPack
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* Fix that render layout: 'messages/layout' should also be added to the dependency tracker tree.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionView
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveModel
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* Fixed a regression where whitespaces were stripped from DISTINCT queries in
|
||||
PostgreSQL.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveRecord
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* Fix DateTime comparison with DateTime::Infinity object.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveSupport
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.6 (September 8, 2014) ##
|
||||
## Rails 4.1.6 (September 11, 2014) ##
|
||||
|
||||
* Scaffold generator `_form` partial adds `class="field"` for password
|
||||
confirmation fields.
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 6
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue