Preparing for 4.2.8 release

上级 75734399
...@@ -14,54 +14,54 @@ GIT ...@@ -14,54 +14,54 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
actionmailer (4.2.8.rc1) actionmailer (4.2.8)
actionpack (= 4.2.8.rc1) actionpack (= 4.2.8)
actionview (= 4.2.8.rc1) actionview (= 4.2.8)
activejob (= 4.2.8.rc1) activejob (= 4.2.8)
mail (~> 2.5, >= 2.5.4) mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5) rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.8.rc1) actionpack (4.2.8)
actionview (= 4.2.8.rc1) actionview (= 4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
rack (~> 1.6) rack (~> 1.6)
rack-test (~> 0.6.2) rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5) rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2) rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.8.rc1) actionview (4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
builder (~> 3.1) builder (~> 3.1)
erubis (~> 2.7.0) erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5) rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.3) rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (4.2.8.rc1) activejob (4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
globalid (>= 0.3.0) globalid (>= 0.3.0)
activemodel (4.2.8.rc1) activemodel (4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
builder (~> 3.1) builder (~> 3.1)
activerecord (4.2.8.rc1) activerecord (4.2.8)
activemodel (= 4.2.8.rc1) activemodel (= 4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
arel (~> 6.0) arel (~> 6.0)
activesupport (4.2.8.rc1) activesupport (4.2.8)
i18n (~> 0.7) i18n (~> 0.7)
minitest (~> 5.1) minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4) thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1) tzinfo (~> 1.1)
rails (4.2.8.rc1) rails (4.2.8)
actionmailer (= 4.2.8.rc1) actionmailer (= 4.2.8)
actionpack (= 4.2.8.rc1) actionpack (= 4.2.8)
actionview (= 4.2.8.rc1) actionview (= 4.2.8)
activejob (= 4.2.8.rc1) activejob (= 4.2.8)
activemodel (= 4.2.8.rc1) activemodel (= 4.2.8)
activerecord (= 4.2.8.rc1) activerecord (= 4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
bundler (>= 1.3.0, < 2.0) bundler (>= 1.3.0, < 2.0)
railties (= 4.2.8.rc1) railties (= 4.2.8)
sprockets-rails sprockets-rails
railties (4.2.8.rc1) railties (4.2.8)
actionpack (= 4.2.8.rc1) actionpack (= 4.2.8)
activesupport (= 4.2.8.rc1) activesupport (= 4.2.8)
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)
...@@ -294,4 +294,4 @@ DEPENDENCIES ...@@ -294,4 +294,4 @@ DEPENDENCIES
w3c_validators w3c_validators
BUNDLED WITH BUNDLED WITH
1.14.3 1.14.4
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* No changes. * No changes.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* No changes. * No changes.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* No changes. * No changes.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* No changes. * No changes.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* No changes. * No changes.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* Using a mysql2 connection after it fails to reconnect will now have an error message * Using a mysql2 connection after it fails to reconnect will now have an error message
saying the connection is closed rather than an undefined method error message. saying the connection is closed rather than an undefined method error message.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* Make `getlocal` and `getutc` always return instances of `Time` for * Make `getlocal` and `getutc` always return instances of `Time` for
`ActiveSupport::TimeWithZone` and `DateTime`. This eliminates a possible `ActiveSupport::TimeWithZone` and `DateTime`. This eliminates a possible
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* No changes. * No changes.
......
## Rails 4.2.8.rc1 (February 09, 2017) ## ## Rails 4.2.8 (February 21, 2017) ##
* Add `config/initializers/to_time_preserves_timezone.rb`, which tells * Add `config/initializers/to_time_preserves_timezone.rb`, which tells
Active Support to preserve the receiver's timezone when calling `to_time`. Active Support to preserve the receiver's timezone when calling `to_time`.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 4 MAJOR = 4
MINOR = 2 MINOR = 2
TINY = 8 TINY = 8
PRE = "rc1" PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册