Preparing for 4.1.14.2 release

This commit is contained in:
Rafael Mendonça França 2016-02-26 16:19:44 -03:00
parent 983d9e0bda
commit 4cffd33a96
18 changed files with 126 additions and 36 deletions

View File

@ -1,45 +1,45 @@
PATH
remote: .
specs:
actionmailer (4.1.14.1)
actionpack (= 4.1.14.1)
actionview (= 4.1.14.1)
actionmailer (4.1.14.2)
actionpack (= 4.1.14.2)
actionview (= 4.1.14.2)
mail (~> 2.5, >= 2.5.4)
actionpack (4.1.14.1)
actionview (= 4.1.14.1)
activesupport (= 4.1.14.1)
actionpack (4.1.14.2)
actionview (= 4.1.14.2)
activesupport (= 4.1.14.2)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
actionview (4.1.14.1)
activesupport (= 4.1.14.1)
actionview (4.1.14.2)
activesupport (= 4.1.14.2)
builder (~> 3.1)
erubis (~> 2.7.0)
activemodel (4.1.14.1)
activesupport (= 4.1.14.1)
activemodel (4.1.14.2)
activesupport (= 4.1.14.2)
builder (~> 3.1)
activerecord (4.1.14.1)
activemodel (= 4.1.14.1)
activesupport (= 4.1.14.1)
activerecord (4.1.14.2)
activemodel (= 4.1.14.2)
activesupport (= 4.1.14.2)
arel (~> 5.0.0)
activesupport (4.1.14.1)
activesupport (4.1.14.2)
i18n (~> 0.6, >= 0.6.9)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.1)
tzinfo (~> 1.1)
rails (4.1.14.1)
actionmailer (= 4.1.14.1)
actionpack (= 4.1.14.1)
actionview (= 4.1.14.1)
activemodel (= 4.1.14.1)
activerecord (= 4.1.14.1)
activesupport (= 4.1.14.1)
rails (4.1.14.2)
actionmailer (= 4.1.14.2)
actionpack (= 4.1.14.2)
actionview (= 4.1.14.2)
activemodel (= 4.1.14.2)
activerecord (= 4.1.14.2)
activesupport (= 4.1.14.2)
bundler (>= 1.3.0, < 2.0)
railties (= 4.1.14.1)
railties (= 4.1.14.2)
sprockets-rails (~> 2.0)
railties (4.1.14.1)
actionpack (= 4.1.14.1)
activesupport (= 4.1.14.1)
railties (4.1.14.2)
actionpack (= 4.1.14.2)
activesupport (= 4.1.14.2)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
@ -72,7 +72,7 @@ GEM
mime-types (>= 1.16, < 3)
metaclass (0.0.4)
mime-types (2.6.2)
mini_portile (0.6.2)
mini_portile2 (2.0.0)
minitest (5.3.3)
mocha (0.14.0)
metaclass (~> 0.0.1)
@ -151,4 +151,4 @@ DEPENDENCIES
w3c_validators
BUNDLED WITH
1.10.6
1.11.2

View File

@ -1 +1 @@
4.1.14.1
4.1.14.2

View File

@ -1,3 +1,13 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No changes.

View File

@ -8,7 +8,7 @@ module ActionMailer
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,17 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* Do not allow render with unpermitted parameter.
Fixes CVE-2016-2098.
*Arthur Neves*
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No changes.

View File

@ -8,7 +8,7 @@ module ActionPack
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,12 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* Do not allow render with unpermitted parameter.
Fixes CVE-2016-2098.
*Arthur Neves*
* Changed the meaning of `render "foo/bar"`.
Previously, calling `render "foo/bar"` in a controller action is equivalent
@ -5,9 +14,16 @@
`render template: "foo/bar"` instead. If you need to render a file, please
change your code to use the explicit form (`render file: "foo/bar"`) instead.
Fixes CVE-2016-2097.
*Eileen Uchitelle*
## Rails 4.2.5.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* Fix `mail_to` when called with `nil` as argument.

View File

@ -8,7 +8,7 @@ module ActionView
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,13 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No changes.

View File

@ -8,7 +8,7 @@ module ActiveModel
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,13 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No longer pass deprecated option `-i` to `pg_dump`.

View File

@ -8,7 +8,7 @@ module ActiveRecord
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,13 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No changes.

View File

@ -8,7 +8,7 @@ module ActiveSupport
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,13 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No changes.

View File

@ -1,3 +1,13 @@
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
## Rails 4.1.14 (November 12, 2015) ##
* No changes.

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end