Skip to content

Commit 97ad61e

Browse files
committed
Preparing for 4.2.5.2 release
1 parent 881f561 commit 97ad61e

File tree

20 files changed

+132
-39
lines changed

20 files changed

+132
-39
lines changed

Gemfile.lock

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,55 @@ GIT
1414
PATH
1515
remote: .
1616
specs:
17-
actionmailer (4.2.5)
18-
actionpack (= 4.2.5)
19-
actionview (= 4.2.5)
20-
activejob (= 4.2.5)
17+
actionmailer (4.2.5.2)
18+
actionpack (= 4.2.5.2)
19+
actionview (= 4.2.5.2)
20+
activejob (= 4.2.5.2)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 1.0, >= 1.0.5)
23-
actionpack (4.2.5)
24-
actionview (= 4.2.5)
25-
activesupport (= 4.2.5)
23+
actionpack (4.2.5.2)
24+
actionview (= 4.2.5.2)
25+
activesupport (= 4.2.5.2)
2626
rack (~> 1.6)
2727
rack-test (~> 0.6.2)
2828
rails-dom-testing (~> 1.0, >= 1.0.5)
2929
rails-html-sanitizer (~> 1.0, >= 1.0.2)
30-
actionview (4.2.5)
31-
activesupport (= 4.2.5)
30+
actionview (4.2.5.2)
31+
activesupport (= 4.2.5.2)
3232
builder (~> 3.1)
3333
erubis (~> 2.7.0)
3434
rails-dom-testing (~> 1.0, >= 1.0.5)
3535
rails-html-sanitizer (~> 1.0, >= 1.0.2)
36-
activejob (4.2.5)
37-
activesupport (= 4.2.5)
36+
activejob (4.2.5.2)
37+
activesupport (= 4.2.5.2)
3838
globalid (>= 0.3.0)
39-
activemodel (4.2.5)
40-
activesupport (= 4.2.5)
39+
activemodel (4.2.5.2)
40+
activesupport (= 4.2.5.2)
4141
builder (~> 3.1)
42-
activerecord (4.2.5)
43-
activemodel (= 4.2.5)
44-
activesupport (= 4.2.5)
42+
activerecord (4.2.5.2)
43+
activemodel (= 4.2.5.2)
44+
activesupport (= 4.2.5.2)
4545
arel (~> 6.0)
46-
activesupport (4.2.5)
46+
activesupport (4.2.5.2)
4747
i18n (~> 0.7)
4848
json (~> 1.7, >= 1.7.7)
4949
minitest (~> 5.1)
5050
thread_safe (~> 0.3, >= 0.3.4)
5151
tzinfo (~> 1.1)
52-
rails (4.2.5)
53-
actionmailer (= 4.2.5)
54-
actionpack (= 4.2.5)
55-
actionview (= 4.2.5)
56-
activejob (= 4.2.5)
57-
activemodel (= 4.2.5)
58-
activerecord (= 4.2.5)
59-
activesupport (= 4.2.5)
52+
rails (4.2.5.2)
53+
actionmailer (= 4.2.5.2)
54+
actionpack (= 4.2.5.2)
55+
actionview (= 4.2.5.2)
56+
activejob (= 4.2.5.2)
57+
activemodel (= 4.2.5.2)
58+
activerecord (= 4.2.5.2)
59+
activesupport (= 4.2.5.2)
6060
bundler (>= 1.3.0, < 2.0)
61-
railties (= 4.2.5)
61+
railties (= 4.2.5.2)
6262
sprockets-rails
63-
railties (4.2.5)
64-
actionpack (= 4.2.5)
65-
activesupport (= 4.2.5)
63+
railties (4.2.5.2)
64+
actionpack (= 4.2.5.2)
65+
activesupport (= 4.2.5.2)
6666
rake (>= 0.8.7)
6767
thor (>= 0.18.1, < 2.0)
6868

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.5.1
1+
4.2.5.2

actionmailer/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* No changes.

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

actionpack/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* Do not allow render with unpermitted parameter.
4+
5+
Fixes CVE-2016-2098.
6+
7+
*Arthur Neves*
8+
9+
10+
## Rails 4.2.5.1 (January 25, 2015) ##
11+
12+
* No changes.
13+
14+
115
## Rails 4.2.5 (November 12, 2015) ##
216

317
* `ActionController::TestCase` can teardown gracefully if an error is raised

actionpack/lib/action_pack/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

actionview/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* Do not allow render with unpermitted parameter.
4+
5+
Fixes CVE-2016-2098.
6+
7+
*Arthur Neves*
8+
9+
110
## Rails 4.2.5.1 (January 25, 2015) ##
211

312
* Adds boolean argument outside_app_allowed to `ActionView::Resolver#find_templates`

actionview/lib/action_view/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

activejob/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* No changes.

activejob/lib/active_job/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

activemodel/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* No changes.

activemodel/lib/active_model/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

activerecord/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* No longer pass deprecated option `-i` to `pg_dump`.

activerecord/lib/active_record/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

activesupport/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* Fix `TimeWithZone#eql?` to properly handle `TimeWithZone` created from `DateTime`:

activesupport/lib/active_support/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

guides/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* No changes.

railties/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 4.2.5.2 (February 26, 2016) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.2.5.1 (January 25, 2015) ##
7+
8+
* No changes.
9+
10+
111
## Rails 4.2.5 (November 12, 2015) ##
212

313
* Fix displaying mailer previews on non local requests when config

railties/lib/rails/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "1"
11+
PRE = "2"
1212

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

0 commit comments

Comments
 (0)