mirror of https://github.com/rails/rails
Preparing for 4.1.9 release
This commit is contained in:
parent
ed2b4eb1cb
commit
5d9f3cf272
|
@ -1 +1 @@
|
|||
4.1.9.rc1
|
||||
4.1.9
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.8 (November 16, 2014) ##
|
||||
|
||||
* Attachments can be added while rendering the mail template.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionMailer
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* Fixed handling of positional url helper arguments when `format: false`.
|
||||
|
||||
Fixes #17819.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionPack
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionView
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.8 (November 16, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveModel
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* `db:schema:load` and `db:structure:load` no longer purge the database
|
||||
before loading the schema. This is left for the user to do.
|
||||
`db:test:prepare` will still purge the database.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveRecord
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.8 (November 16, 2014) ##
|
||||
|
||||
* `Method` objects now report themselves as not `duplicable?`. This allows
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveSupport
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.8 (November 16, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.9 (January 6, 2015) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.8 (November 16, 2014) ##
|
||||
|
||||
* `secret_token` is now saved in `Rails.application.secrets.secret_token`
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 9
|
||||
PRE = "rc1"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue