Skip to content

Commit 254e8e2

Browse files
committed
Preparing for 4.1.1 release
1 parent 529720d commit 254e8e2

File tree

17 files changed

+72
-10
lines changed

17 files changed

+72
-10
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.0
1+
4.1.1

actionmailer/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Rails 4.1.1 (May 6, 2014) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.1.0 (April 8, 2014) ##
7+
18
* Support the use of underscored symbols when registering interceptors and
29
observers like we do elsewhere within Rails.
310

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 1
10-
TINY = 0
10+
TINY = 1
1111
PRE = nil
1212

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

actionpack/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## Rails 4.1.1 (May 6, 2014) ##
2+
3+
* Only accept actions without File::SEPARATOR in the name.
4+
5+
This will avoid directory traversal in implicit render.
6+
7+
Fixes: CVE-2014-0130
8+
9+
*Rafael Mendonça França*
10+
11+
12+
## Rails 4.1.0 (April 8, 2014) ##
13+
114
* Swapped the parameters of assert_equal in `assert_select` so that the
215
proper values were printed correctly
316

actionpack/lib/action_pack/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 1
10-
TINY = 0
10+
TINY = 1
1111
PRE = nil
1212

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

actionview/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1+
## Rails 4.1.1 (May 6, 2014) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.1.0 (April 8, 2014) ##
7+
18
* Fixed ActionView::Digestor template lookup to use the lookup_context exclusively, and not rely on the passed-in format.
29
This unfortunately means that the cache_key changed, so upgrading will invalidate all prior caches. Take note if you rely
310
heavily on caching in production when you push this live.
4-
11+
512
*DHH*
613

714
* `number_to_percentage` does not crash with `Float::NAN` or `Float::INFINITY`

actionview/lib/action_view/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 1
10-
TINY = 0
10+
TINY = 1
1111
PRE = nil
1212

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

activemodel/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Rails 4.1.1 (May 6, 2014) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.1.0 (April 8, 2014) ##
7+
18
* `#to_param` returns `nil` if `#to_key` returns `nil`. Fixes #11399.
29

310
*Yves Senn*

activemodel/lib/active_model/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 1
10-
TINY = 0
10+
TINY = 1
1111
PRE = nil
1212

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

activerecord/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Rails 4.1.1 (May 6, 2014) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 4.1.0 (April 8, 2014) ##
7+
18
* Fixed a problem where an enum would overwrite values of another enum
29
with the same name in an unrelated class.
310

0 commit comments

Comments
 (0)