Merge branch '4-1-13' into 4-1-stable

This commit is contained in:
Rafael Mendonça França 2015-08-24 15:05:41 -03:00
commit af68f1f4dd
18 changed files with 47 additions and 10 deletions

View File

@ -1 +1 @@
4.1.12
4.1.13

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* Mailer preview now uses `url_for` to fix links to emails for apps running on

View File

@ -7,7 +7,7 @@ module ActionMailer
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* Fix handling of empty X_FORWARDED_HOST header in raw_host_with_port

View File

@ -7,7 +7,7 @@ module ActionPack
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* `translate` should handle `raise` flag correctly in case of both main and default

View File

@ -7,7 +7,7 @@ module ActionView
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* No changes.

View File

@ -7,7 +7,7 @@ module ActiveModel
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,5 @@
## Rails 4.1.13 (August 24, 2015) ##
* Don't define autosave association callbacks twice from
`accepts_nested_attributes_for`.

View File

@ -7,7 +7,7 @@ module ActiveRecord
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* No changes.

View File

@ -7,7 +7,7 @@ module ActiveSupport
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* No changes.

View File

@ -1,3 +1,8 @@
## Rails 4.1.13 (August 24, 2015) ##
* No changes.
## Rails 4.1.12 (June 25, 2015) ##
* Add support for inline images in mailer previews by using an interceptor

View File

@ -7,7 +7,7 @@ module Rails
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")

View File

@ -98,7 +98,7 @@ namespace :all do
task :push => FRAMEWORKS.map { |f| "#{f}:push" } + ['rails:push']
task :ensure_clean_state do
unless `git status -s | grep -v RAILS_VERSION`.strip.empty?
unless `git status -s | grep -v 'RAILS_VERSION\\|CHANGELOG'`.strip.empty?
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
end

View File

@ -7,7 +7,7 @@ module Rails
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
TINY = 13
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")