Skip to content

Commit

Permalink
Preparing for 4.1.12.rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Jun 22, 2015
1 parent 741a3e8 commit 68d3245
Show file tree
Hide file tree
Showing 17 changed files with 42 additions and 17 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
4.1.11 4.1.12.rc1
2 changes: 2 additions & 0 deletions actionmailer/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 4.1.12 (June 22, 2015) ##

* Mailer preview now uses `url_for` to fix links to emails for apps running on * Mailer preview now uses `url_for` to fix links to emails for apps running on
a subdirectory. a subdirectory.


Expand Down
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 4.1.12 (June 22, 2015) ##

* Fix handling of empty X_FORWARDED_HOST header in raw_host_with_port * Fix handling of empty X_FORWARDED_HOST header in raw_host_with_port


Previously, an empty X_FORWARDED_HOST header would cause Previously, an empty X_FORWARDED_HOST header would cause
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_pack/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
2 changes: 2 additions & 0 deletions actionview/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 4.1.12 (June 22, 2015) ##

* `translate` should handle `raise` flag correctly in case of both main and default * `translate` should handle `raise` flag correctly in case of both main and default
translation is missing. translation is missing.


Expand Down
4 changes: 2 additions & 2 deletions actionview/lib/action_view/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
5 changes: 5 additions & 0 deletions activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.12 (June 22, 2015) ##

* No changes.


## Rails 4.1.11 (June 16, 2015) ## ## Rails 4.1.11 (June 16, 2015) ##


* No changes. * No changes.
Expand Down
4 changes: 2 additions & 2 deletions activemodel/lib/active_model/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 4.1.12 (June 22, 2015) ##

* Raises the right exception when declares a has many through * Raises the right exception when declares a has many through
association with missing source. association with missing source.


Expand Down
4 changes: 2 additions & 2 deletions activerecord/lib/active_record/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
5 changes: 5 additions & 0 deletions activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.12 (June 22, 2015) ##

* No changes.


## Rails 4.1.11 (June 16, 2015) ## ## Rails 4.1.11 (June 16, 2015) ##


* Fix XSS vulnerability in `ActiveSupport::JSON.encode` method. * Fix XSS vulnerability in `ActiveSupport::JSON.encode` method.
Expand Down
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
5 changes: 5 additions & 0 deletions guides/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.12 (June 22, 2015) ##

* No changes.


## Rails 4.1.11 (June 16, 2015) ## ## Rails 4.1.11 (June 16, 2015) ##


* No changes. * No changes.
Expand Down
2 changes: 2 additions & 0 deletions railties/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 4.1.12 (June 22, 2015) ##

* Add support for inline images in mailer previews by using an interceptor * Add support for inline images in mailer previews by using an interceptor
class to convert cid: urls in image src attributes to data urls. The class to convert cid: urls in image src attributes to data urls. The
interceptor is not enabled by default but can be done in an initializer: interceptor is not enabled by default but can be done in an initializer:
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
Expand Down
4 changes: 2 additions & 2 deletions version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 1 MINOR = 1
TINY = 11 TINY = 12
PRE = nil PRE = "rc1"


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

0 comments on commit 68d3245

Please sign in to comment.