Preparing for 5.1.0.rc1 release

上级 fee4257f
...@@ -26,58 +26,58 @@ GIT ...@@ -26,58 +26,58 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
actioncable (5.1.0.beta1) actioncable (5.1.0.rc1)
actionpack (= 5.1.0.beta1) actionpack (= 5.1.0.rc1)
nio4r (~> 2.0) nio4r (~> 2.0)
websocket-driver (~> 0.6.1) websocket-driver (~> 0.6.1)
actionmailer (5.1.0.beta1) actionmailer (5.1.0.rc1)
actionpack (= 5.1.0.beta1) actionpack (= 5.1.0.rc1)
actionview (= 5.1.0.beta1) actionview (= 5.1.0.rc1)
activejob (= 5.1.0.beta1) activejob (= 5.1.0.rc1)
mail (~> 2.5, >= 2.5.4) mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
actionpack (5.1.0.beta1) actionpack (5.1.0.rc1)
actionview (= 5.1.0.beta1) actionview (= 5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
rack (~> 2.0) rack (~> 2.0)
rack-test (~> 0.6.3) rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2) rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.1.0.beta1) actionview (5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
builder (~> 3.1) builder (~> 3.1)
erubi (~> 1.4) erubi (~> 1.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3) rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.1.0.beta1) activejob (5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
globalid (>= 0.3.6) globalid (>= 0.3.6)
activemodel (5.1.0.beta1) activemodel (5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
activerecord (5.1.0.beta1) activerecord (5.1.0.rc1)
activemodel (= 5.1.0.beta1) activemodel (= 5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
arel (~> 8.0) arel (~> 8.0)
activesupport (5.1.0.beta1) activesupport (5.1.0.rc1)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7) i18n (~> 0.7)
minitest (~> 5.1) minitest (~> 5.1)
tzinfo (~> 1.1) tzinfo (~> 1.1)
rails (5.1.0.beta1) rails (5.1.0.rc1)
actioncable (= 5.1.0.beta1) actioncable (= 5.1.0.rc1)
actionmailer (= 5.1.0.beta1) actionmailer (= 5.1.0.rc1)
actionpack (= 5.1.0.beta1) actionpack (= 5.1.0.rc1)
actionview (= 5.1.0.beta1) actionview (= 5.1.0.rc1)
activejob (= 5.1.0.beta1) activejob (= 5.1.0.rc1)
activemodel (= 5.1.0.beta1) activemodel (= 5.1.0.rc1)
activerecord (= 5.1.0.beta1) activerecord (= 5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
bundler (>= 1.3.0, < 2.0) bundler (>= 1.3.0, < 2.0)
railties (= 5.1.0.beta1) railties (= 5.1.0.rc1)
sprockets-rails (>= 2.0.0) sprockets-rails (>= 2.0.0)
railties (5.1.0.beta1) railties (5.1.0.rc1)
actionpack (= 5.1.0.beta1) actionpack (= 5.1.0.rc1)
activesupport (= 5.1.0.beta1) activesupport (= 5.1.0.rc1)
method_source method_source
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)
...@@ -159,7 +159,7 @@ GEM ...@@ -159,7 +159,7 @@ GEM
http_parser.rb (>= 0.6.0) http_parser.rb (>= 0.6.0)
em-socksify (0.3.1) em-socksify (0.3.1)
eventmachine (>= 1.0.0.beta.4) eventmachine (>= 1.0.0.beta.4)
erubi (1.4.0) erubi (1.6.0)
erubis (2.7.0) erubis (2.7.0)
event_emitter (0.2.5) event_emitter (0.2.5)
eventmachine (1.2.1) eventmachine (1.2.1)
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* No changes.
## Rails 5.1.0.beta1 (February 23, 2017) ## ## Rails 5.1.0.beta1 (February 23, 2017) ##
* Redis subscription adapters now support `channel_prefix` option in `cable.yml` * Redis subscription adapters now support `channel_prefix` option in `cable.yml`
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
{ {
"name": "actioncable", "name": "actioncable",
"version": "5.1.0-beta1", "version": "5.1.0-rc1",
"description": "WebSocket framework for Ruby on Rails.", "description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js", "main": "lib/assets/compiled/action_cable.js",
"files": [ "files": [
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* No changes.
## Rails 5.1.0.beta1 (February 23, 2017) ## ## Rails 5.1.0.beta1 (February 23, 2017) ##
* Add `:args` to `process.action_mailer` event. * Add `:args` to `process.action_mailer` event.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* Fix `NameError` raised in `ActionController::Renderer#with_defaults` * Fix `NameError` raised in `ActionController::Renderer#with_defaults`
*Hiroyuki Ishii* *Hiroyuki Ishii*
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* Remove the option `encode_special_chars` misnomer from `strip_tags` * Remove the option `encode_special_chars` misnomer from `strip_tags`
As of rails-html-sanitizer v1.0.3, the sanitizer will ignore the As of rails-html-sanitizer v1.0.3, the sanitizer will ignore the
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
{ {
"name": "rails-ujs", "name": "rails-ujs",
"version": "5.1.0-beta1", "version": "5.1.0-rc1",
"description": "Ruby on Rails unobtrusive scripting adapter", "description": "Ruby on Rails unobtrusive scripting adapter",
"main": "lib/assets/compiled/rails-ujs.js", "main": "lib/assets/compiled/rails-ujs.js",
"files": [ "files": [
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* No changes.
## Rails 5.1.0.beta1 (February 23, 2017) ## ## Rails 5.1.0.beta1 (February 23, 2017) ##
* Correctly set test adapter when configure the queue adapter on a per job. * Correctly set test adapter when configure the queue adapter on a per job.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* No changes.
## Rails 5.1.0.beta1 (February 23, 2017) ## ## Rails 5.1.0.beta1 (February 23, 2017) ##
* Remove deprecated behavior that halts callbacks when the return is false. * Remove deprecated behavior that halts callbacks when the return is false.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* Remove comments from structure.sql when using postgresql adapter to avoid * Remove comments from structure.sql when using postgresql adapter to avoid
version-specific parts of the file. version-specific parts of the file.
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* Fixed bug in `DateAndTime::Compatibility#to_time` that caused it to * Fixed bug in `DateAndTime::Compatibility#to_time` that caused it to
raise `RuntimeError: can't modify frozen Time` when called on any frozen `Time`. raise `RuntimeError: can't modify frozen Time` when called on any frozen `Time`.
Properly pass through the frozen `Time` or `ActiveSupport::TimeWithZone` object Properly pass through the frozen `Time` or `ActiveSupport::TimeWithZone` object
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end end
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* No changes.
## Rails 5.1.0.beta1 (February 23, 2017) ## ## Rails 5.1.0.beta1 (February 23, 2017) ##
* No changes. * No changes.
......
## Rails 5.1.0.rc1 (March 20, 2017) ##
* Add `app:update` task to engines. * Add `app:update` task to engines.
*Yuji Yaginuma* *Yuji Yaginuma*
......
...@@ -8,7 +8,7 @@ module VERSION ...@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
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 = 5 MAJOR = 5
MINOR = 1 MINOR = 1
TINY = 0 TINY = 0
PRE = "beta1" PRE = "rc1"
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.
先完成此消息的编辑!
想要评论请 注册