mirror of https://github.com/rails/rails
Preparing for 4.1.12 release
This commit is contained in:
parent
68d3245496
commit
adfda00f06
|
@ -1 +1 @@
|
|||
4.1.12.rc1
|
||||
4.1.12
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* Mailer preview now uses `url_for` to fix links to emails for apps running on
|
||||
a subdirectory.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionMailer
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* Fix handling of empty X_FORWARDED_HOST header in raw_host_with_port
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionPack
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* `translate` should handle `raise` flag correctly in case of both main and default
|
||||
translation is missing.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionView
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveModel
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* Raises the right exception when declares a has many through
|
||||
association with missing source.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveRecord
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveSupport
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.12 (June 22, 2015) ##
|
||||
## Rails 4.1.12 (June 25, 2015) ##
|
||||
|
||||
* Add support for inline images in mailer previews by using an interceptor
|
||||
class to convert cid: urls in image src attributes to data urls. The
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 12
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue