Preparing for 5.2.3.rc1 release

上级 1b211bec
......@@ -26,63 +26,63 @@ GIT
PATH
remote: .
specs:
actioncable (5.2.2.1)
actionpack (= 5.2.2.1)
actioncable (5.2.3.rc1)
actionpack (= 5.2.3.rc1)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
actionmailer (5.2.2.1)
actionpack (= 5.2.2.1)
actionview (= 5.2.2.1)
activejob (= 5.2.2.1)
actionmailer (5.2.3.rc1)
actionpack (= 5.2.3.rc1)
actionview (= 5.2.3.rc1)
activejob (= 5.2.3.rc1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.2.2.1)
actionview (= 5.2.2.1)
activesupport (= 5.2.2.1)
actionpack (5.2.3.rc1)
actionview (= 5.2.3.rc1)
activesupport (= 5.2.3.rc1)
rack (~> 2.0)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.2.2.1)
activesupport (= 5.2.2.1)
actionview (5.2.3.rc1)
activesupport (= 5.2.3.rc1)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.2.2.1)
activesupport (= 5.2.2.1)
activejob (5.2.3.rc1)
activesupport (= 5.2.3.rc1)
globalid (>= 0.3.6)
activemodel (5.2.2.1)
activesupport (= 5.2.2.1)
activerecord (5.2.2.1)
activemodel (= 5.2.2.1)
activesupport (= 5.2.2.1)
activemodel (5.2.3.rc1)
activesupport (= 5.2.3.rc1)
activerecord (5.2.3.rc1)
activemodel (= 5.2.3.rc1)
activesupport (= 5.2.3.rc1)
arel (>= 9.0)
activestorage (5.2.2.1)
actionpack (= 5.2.2.1)
activerecord (= 5.2.2.1)
activestorage (5.2.3.rc1)
actionpack (= 5.2.3.rc1)
activerecord (= 5.2.3.rc1)
marcel (~> 0.3.1)
activesupport (5.2.2.1)
activesupport (5.2.3.rc1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.2.2.1)
actioncable (= 5.2.2.1)
actionmailer (= 5.2.2.1)
actionpack (= 5.2.2.1)
actionview (= 5.2.2.1)
activejob (= 5.2.2.1)
activemodel (= 5.2.2.1)
activerecord (= 5.2.2.1)
activestorage (= 5.2.2.1)
activesupport (= 5.2.2.1)
rails (5.2.3.rc1)
actioncable (= 5.2.3.rc1)
actionmailer (= 5.2.3.rc1)
actionpack (= 5.2.3.rc1)
actionview (= 5.2.3.rc1)
activejob (= 5.2.3.rc1)
activemodel (= 5.2.3.rc1)
activerecord (= 5.2.3.rc1)
activestorage (= 5.2.3.rc1)
activesupport (= 5.2.3.rc1)
bundler (>= 1.3.0)
railties (= 5.2.2.1)
railties (= 5.2.3.rc1)
sprockets-rails (>= 2.0.0)
railties (5.2.2.1)
actionpack (= 5.2.2.1)
activesupport (= 5.2.2.1)
railties (5.2.3.rc1)
actionpack (= 5.2.3.rc1)
activesupport (= 5.2.3.rc1)
method_source
rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0)
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* No changes.
## Rails 5.2.2.1 (March 11, 2019) ##
* No changes.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
{
"name": "actioncable",
"version": "5.2.2-1",
"version": "5.2.3-rc1",
"description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js",
"files": [
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* No changes.
## Rails 5.2.2.1 (March 11, 2019) ##
* No changes.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* Allow using combine the Cache Control `public` and `no-cache` headers.
Before this change, even if `public` was specified for Cache Control header,
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
{
"name": "rails-ujs",
"version": "5.2.2-1",
"version": "5.2.3-rc1",
"description": "Ruby on Rails unobtrusive scripting adapter",
"main": "lib/assets/compiled/rails-ujs.js",
"files": [
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* No changes.
## Rails 5.2.2.1 (March 11, 2019) ##
* No changes.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* Fix different `count` calculation when using `size` with manual `select` with DISTINCT.
Fixes #35214.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* No changes.
## Rails 5.2.2.1 (March 11, 2019) ##
* No changes.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
{
"name": "activestorage",
"version": "5.2.2-1",
"version": "5.2.3-rc1",
"description": "Attach cloud and local files in Rails applications",
"main": "app/assets/javascripts/activestorage.js",
"files": [
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* Add `ActiveSupport::HashWithIndifferentAccess#assoc`.
`assoc` can now be called with either a string or a symbol.
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* No changes.
## Rails 5.2.2.1 (March 11, 2019) ##
* No changes.
......
## Rails 5.2.3.rc1 (March 21, 2019) ##
* Seed database with inline ActiveJob job adapter.
*Gannon McGibbon*
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册