Hello community,
here is the log from the commit of package rubygem-actionview-6.0 for
openSUSE:Factory checked in at 2019-11-13 13:25:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-6.0 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-actionview-6.0.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-actionview-6.0"
Wed Nov 13 13:25:03 2019 rev:2 rq:747683 version:6.0.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-actionview-6.0/rubygem-actionview-6.0.changes
2019-08-19 21:40:21.936302509 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-actionview-6.0.new.2990/rubygem-actionview-6.0.changes
2019-11-13 13:25:13.203503493 +0100
@@ -1,0 +2,9 @@
+Tue Nov 12 13:30:33 UTC 2019 - Manuel Schnitzer <[email protected]>
+
+- updated to version 6.0.1
+
+ * UJS avoids `Element.closest()` for IE 9 compatibility.
+
+ *George Claghorn*
+
+-------------------------------------------------------------------
Old:
----
actionview-6.0.0.gem
New:
----
actionview-6.0.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-actionview-6.0.spec ++++++
--- /var/tmp/diff_new_pack.gr9h56/_old 2019-11-13 13:25:14.011504334 +0100
+++ /var/tmp/diff_new_pack.gr9h56/_new 2019-11-13 13:25:14.011504334 +0100
@@ -24,7 +24,7 @@
#
Name: rubygem-actionview-6.0
-Version: 6.0.0
+Version: 6.0.1
Release: 0
%define mod_name actionview
%define mod_full_name %{mod_name}-%{version}
++++++ actionview-6.0.0.gem -> actionview-6.0.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2019-08-16 19:58:57.000000000 +0200
+++ new/CHANGELOG.md 2019-11-05 15:37:43.000000000 +0100
@@ -1,3 +1,10 @@
+## Rails 6.0.1 (November 5, 2019) ##
+
+* UJS avoids `Element.closest()` for IE 9 compatibility.
+
+ *George Claghorn*
+
+
## Rails 6.0.0 (August 16, 2019) ##
* ActionView::Helpers::SanitizeHelper: support rails-html-sanitizer 1.1.0.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_view/gem_version.rb
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb 2019-08-16 19:58:57.000000000 +0200
+++ new/lib/action_view/gem_version.rb 2019-11-05 15:37:43.000000000 +0100
@@ -9,7 +9,7 @@
module VERSION
MAJOR = 6
MINOR = 0
- TINY = 0
+ TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_view/helpers/form_tag_helper.rb
new/lib/action_view/helpers/form_tag_helper.rb
--- old/lib/action_view/helpers/form_tag_helper.rb 2019-08-16
19:58:57.000000000 +0200
+++ new/lib/action_view/helpers/form_tag_helper.rb 2019-11-05
15:37:44.000000000 +0100
@@ -166,6 +166,8 @@
# * <tt>:size</tt> - The number of visible characters that will fit in
the input.
# * <tt>:maxlength</tt> - The maximum number of characters that the
browser will allow the user to enter.
# * <tt>:placeholder</tt> - The text contained in the field by default
which is removed when the field receives focus.
+ # If set to true, use a translation is found in the current I18n locale
+ # (through helpers.placeholders.<modelname>.<attribute>).
# * Any other key creates standard HTML attributes for the tag.
#
# ==== Examples
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_view/helpers/tag_helper.rb
new/lib/action_view/helpers/tag_helper.rb
--- old/lib/action_view/helpers/tag_helper.rb 2019-08-16 19:58:57.000000000
+0200
+++ new/lib/action_view/helpers/tag_helper.rb 2019-11-05 15:37:44.000000000
+0100
@@ -88,7 +88,7 @@
if value.is_a?(Array)
value = escape ? safe_join(value, " ") : value.join(" ")
else
- value = escape ? ERB::Util.unwrapped_html_escape(value) :
value.to_s.dup
+ value = escape ? ERB::Util.unwrapped_html_escape(value).dup :
value.to_s.dup
end
value.gsub!('"', """)
%(#{key}="#{value}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/assets/compiled/rails-ujs.js
new/lib/assets/compiled/rails-ujs.js
--- old/lib/assets/compiled/rails-ujs.js 2019-08-16 19:58:57.000000000
+0200
+++ new/lib/assets/compiled/rails-ujs.js 2019-11-05 15:37:44.000000000
+0100
@@ -2,7 +2,7 @@
Unobtrusive JavaScript
https://github.com/rails/rails/blob/master/actionview/app/assets/javascripts
Released under the MIT license
- */
+ */;
(function() {
var context = this;
@@ -320,7 +320,7 @@
if (!input.name || input.disabled) {
return;
}
- if (input.closest('fieldset[disabled]')) {
+ if (matches(input, 'fieldset[disabled] *')) {
return;
}
if (matches(input, 'select')) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2019-08-16 19:58:57.000000000 +0200
+++ new/metadata 2019-11-05 15:37:43.000000000 +0100
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: actionview
version: !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
platform: ruby
authors:
- David Heinemeier Hansson
autorequire:
bindir: bin
cert_chain: []
-date: 2019-08-16 00:00:00.000000000 Z
+date: 2019-11-05 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: activesupport
@@ -16,14 +16,14 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
- !ruby/object:Gem::Dependency
name: builder
requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
type: :development
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
- !ruby/object:Gem::Dependency
name: activemodel
requirement: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
type: :development
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.0
+ version: 6.0.1
description: Simple, battle-tested conventions and helpers for building web
pages.
email: [email protected]
executables: []
@@ -235,8 +235,11 @@
licenses:
- MIT
metadata:
- source_code_uri: https://github.com/rails/rails/tree/v6.0.0/actionview
- changelog_uri:
https://github.com/rails/rails/blob/v6.0.0/actionview/CHANGELOG.md
+ bug_tracker_uri: https://github.com/rails/rails/issues
+ changelog_uri:
https://github.com/rails/rails/blob/v6.0.1/actionview/CHANGELOG.md
+ documentation_uri: https://api.rubyonrails.org/v6.0.1/
+ mailing_list_uri: https://groups.google.com/forum/#!forum/rubyonrails-talk
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.1/actionview
post_install_message:
rdoc_options: []
require_paths:
@@ -253,7 +256,7 @@
version: '0'
requirements:
- none
-rubygems_version: 3.0.1
+rubygems_version: 3.0.3
signing_key:
specification_version: 4
summary: Rendering framework putting the V in MVC (part of Rails).