Skip to content

Commit

Permalink
Preparing for 4.1.14.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Feb 29, 2016
1 parent 983d9e0 commit 4cffd33
Show file tree
Hide file tree
Showing 18 changed files with 126 additions and 36 deletions.
54 changes: 27 additions & 27 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)

Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -151,4 +151,4 @@ DEPENDENCIES
w3c_validators

BUNDLED WITH
1.10.6
1.11.2
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.14.1
4.1.14.2
10 changes: 10 additions & 0 deletions actionmailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
14 changes: 14 additions & 0 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
16 changes: 16 additions & 0 deletions actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
## 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
to `render file: "foo/bar"`. This has been changed to mean
`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.
Expand Down
2 changes: 1 addition & 1 deletion actionview/lib/action_view/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
10 changes: 10 additions & 0 deletions activemodel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
10 changes: 10 additions & 0 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
10 changes: 10 additions & 0 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
10 changes: 10 additions & 0 deletions guides/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 10 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 14
PRE = "1"
PRE = "2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down

0 comments on commit 4cffd33

Please sign in to comment.