未验证 提交 9902dcd8 编写于 作者: R Rafael Mendonça França

Merge branch '5-2-3' into 5-2-stable

......@@ -26,63 +26,63 @@ GIT
PATH
remote: .
specs:
actioncable (5.2.2.1)
actionpack (= 5.2.2.1)
actioncable (5.2.3)
actionpack (= 5.2.3)
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)
actionpack (= 5.2.3)
actionview (= 5.2.3)
activejob (= 5.2.3)
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)
actionview (= 5.2.3)
activesupport (= 5.2.3)
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)
activesupport (= 5.2.3)
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)
activesupport (= 5.2.3)
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)
activesupport (= 5.2.3)
activerecord (5.2.3)
activemodel (= 5.2.3)
activesupport (= 5.2.3)
arel (>= 9.0)
activestorage (5.2.2.1)
actionpack (= 5.2.2.1)
activerecord (= 5.2.2.1)
activestorage (5.2.3)
actionpack (= 5.2.3)
activerecord (= 5.2.3)
marcel (~> 0.3.1)
activesupport (5.2.2.1)
activesupport (5.2.3)
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)
actioncable (= 5.2.3)
actionmailer (= 5.2.3)
actionpack (= 5.2.3)
actionview (= 5.2.3)
activejob (= 5.2.3)
activemodel (= 5.2.3)
activerecord (= 5.2.3)
activestorage (= 5.2.3)
activesupport (= 5.2.3)
bundler (>= 1.3.0)
railties (= 5.2.2.1)
railties (= 5.2.3)
sprockets-rails (>= 2.0.0)
railties (5.2.2.1)
actionpack (= 5.2.2.1)
activesupport (= 5.2.2.1)
railties (5.2.3)
actionpack (= 5.2.3)
activesupport (= 5.2.3)
method_source
rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0)
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
{
"name": "actioncable",
"version": "5.2.2-1",
"version": "5.2.3",
"description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js",
"files": [
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
{
"name": "rails-ujs",
"version": "5.2.2-1",
"version": "5.2.3",
"description": "Ruby on Rails unobtrusive scripting adapter",
"main": "lib/assets/compiled/rails-ujs.js",
"files": [
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
{
"name": "activestorage",
"version": "5.2.2-1",
"version": "5.2.3",
"description": "Attach cloud and local files in Rails applications",
"main": "app/assets/javascripts/activestorage.js",
"files": [
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.2.3 (March 27, 2019) ##
* No changes.
## Rails 5.2.2.1 (March 11, 2019) ##
* No changes.
......
## Rails 5.2.3 (March 27, 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 = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
......@@ -12,19 +12,22 @@ If you find one, please open an [issue on GitHub](https://github.com/rails/rails
## CHANGES since <%= version.previous %>
To view the changes for each gem, please read the changelogs on GitHub:
<%- FRAMEWORKS.sort.each do |framework| -%>
<% FRAMEWORKS.sort.each do |framework| %>
<%= "* [#{FRAMEWORK_NAMES[framework]} CHANGELOG](https://github.com/rails/rails/blob/v#{version}/#{framework}/CHANGELOG.md)" %>
<%- end -%>
<% end %>
To see a summary of changes, please read the release on GitHub:
<%= "[#{version} CHANGELOG](https://github.com/rails/rails/releases/tag/v#{version})" %>
*Full listing*
To see the full list of changes, [check out all the commits on
GitHub](https://github.com/rails/rails/compare/v<%= "#{version.previous}...v#{version}" %>).
<% end %>
## SHA-256
If you'd like to verify that your gem is the same as the one I've uploaded,
......
......@@ -9,8 +9,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 2
TINY = 2
PRE = "1"
TINY = 3
PRE = nil
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.
先完成此消息的编辑!
想要评论请 注册