Hello community,
here is the log from the commit of package rubygem-activesupport-5_1 for
openSUSE:Factory checked in at 2018-02-18 11:44:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-activesupport-5_1 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-activesupport-5_1.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-activesupport-5_1"
Sun Feb 18 11:44:42 2018 rev:3 rq:577555 version:5.1.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-activesupport-5_1/rubygem-activesupport-5_1.changes
2017-09-13 22:36:14.185759879 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-activesupport-5_1.new/rubygem-activesupport-5_1.changes
2018-02-18 11:44:49.068316278 +0100
@@ -1,0 +2,10 @@
+Thu Feb 15 05:29:58 UTC 2018 - [email protected]
+
+- updated to version 5.1.5
+ see installed CHANGELOG.md
+
+ ## Rails 5.1.5 (February 14, 2018) ##
+
+ * No changes.
+
+-------------------------------------------------------------------
Old:
----
activesupport-5.1.4.gem
New:
----
activesupport-5.1.5.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-activesupport-5_1.spec ++++++
--- /var/tmp/diff_new_pack.Wtf66z/_old 2018-02-18 11:44:50.088279663 +0100
+++ /var/tmp/diff_new_pack.Wtf66z/_new 2018-02-18 11:44:50.092279519 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-activesupport-5_1
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
#
Name: rubygem-activesupport-5_1
-Version: 5.1.4
+Version: 5.1.5
Release: 0
%define mod_name activesupport
%define mod_full_name %{mod_name}-%{version}
++++++ activesupport-5.1.4.gem -> activesupport-5.1.5.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2017-09-08 02:48:50.000000000 +0200
+++ new/CHANGELOG.md 2018-02-14 20:54:10.000000000 +0100
@@ -1,3 +1,8 @@
+## Rails 5.1.5 (February 14, 2018) ##
+
+* No changes.
+
+
## Rails 5.1.4 (September 07, 2017) ##
* No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/lib/active_support/concurrency/load_interlock_aware_monitor.rb
new/lib/active_support/concurrency/load_interlock_aware_monitor.rb
--- old/lib/active_support/concurrency/load_interlock_aware_monitor.rb
1970-01-01 01:00:00.000000000 +0100
+++ new/lib/active_support/concurrency/load_interlock_aware_monitor.rb
2018-02-14 20:54:10.000000000 +0100
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+require "monitor"
+
+module ActiveSupport
+ module Concurrency
+ # A monitor that will permit dependency loading while blocked waiting for
+ # the lock.
+ class LoadInterlockAwareMonitor < Monitor
+ # Enters an exclusive section, but allows dependency loading while
blocked
+ def mon_enter
+ mon_try_enter ||
+ ActiveSupport::Dependencies.interlock.permit_concurrent_loads {
super }
+ end
+ end
+ end
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_support/core_ext/hash/keys.rb
new/lib/active_support/core_ext/hash/keys.rb
--- old/lib/active_support/core_ext/hash/keys.rb 2017-09-08
02:48:50.000000000 +0200
+++ new/lib/active_support/core_ext/hash/keys.rb 2018-02-14
20:54:10.000000000 +0100
@@ -16,7 +16,7 @@
result[yield(key)] = self[key]
end
result
- end
+ end unless method_defined? :transform_keys
# Destructively converts all keys using the +block+ operations.
# Same as +transform_keys+ but modifies +self+.
@@ -26,7 +26,7 @@
self[yield(key)] = delete(key)
end
self
- end
+ end unless method_defined? :transform_keys!
# Returns a new hash with all keys converted to strings.
#
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_support/dependencies.rb
new/lib/active_support/dependencies.rb
--- old/lib/active_support/dependencies.rb 2017-09-08 02:48:50.000000000
+0200
+++ new/lib/active_support/dependencies.rb 2018-02-14 20:54:10.000000000
+0100
@@ -456,6 +456,7 @@
mod = Module.new
into.const_set const_name, mod
autoloaded_constants << qualified_name unless
autoload_once_paths.include?(base_path)
+ autoloaded_constants.uniq!
mod
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_support/deprecation/method_wrappers.rb
new/lib/active_support/deprecation/method_wrappers.rb
--- old/lib/active_support/deprecation/method_wrappers.rb 2017-09-08
02:48:50.000000000 +0200
+++ new/lib/active_support/deprecation/method_wrappers.rb 2018-02-14
20:54:10.000000000 +0100
@@ -60,6 +60,13 @@
deprecator.deprecation_warning(method_name, options[method_name])
super(*args, &block)
end
+
+ case
+ when target_module.protected_method_defined?(method_name)
+ protected method_name
+ when target_module.private_method_defined?(method_name)
+ private method_name
+ end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_support/gem_version.rb
new/lib/active_support/gem_version.rb
--- old/lib/active_support/gem_version.rb 2017-09-08 02:48:50.000000000
+0200
+++ new/lib/active_support/gem_version.rb 2018-02-14 20:54:10.000000000
+0100
@@ -7,7 +7,7 @@
module VERSION
MAJOR = 5
MINOR = 1
- TINY = 4
+ TINY = 5
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_support/testing/isolation.rb
new/lib/active_support/testing/isolation.rb
--- old/lib/active_support/testing/isolation.rb 2017-09-08 02:48:50.000000000
+0200
+++ new/lib/active_support/testing/isolation.rb 2018-02-14 20:54:10.000000000
+0100
@@ -43,7 +43,8 @@
end
}
end
- result = Marshal.dump(dup)
+ test_result = defined?(Minitest::Result) ?
Minitest::Result.from(self) : dup
+ result = Marshal.dump(test_result)
end
write.puts [result].pack("m")
@@ -67,8 +68,9 @@
if ENV["ISOLATION_TEST"]
yield
+ test_result = defined?(Minitest::Result) ?
Minitest::Result.from(self) : dup
File.open(ENV["ISOLATION_OUTPUT"], "w") do |file|
- file.puts [Marshal.dump(dup)].pack("m")
+ file.puts [Marshal.dump(test_result)].pack("m")
end
exit!
else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-09-08 02:48:50.000000000 +0200
+++ new/metadata 2018-02-14 20:54:10.000000000 +0100
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: activesupport
version: !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
platform: ruby
authors:
- David Heinemeier Hansson
autorequire:
bindir: bin
cert_chain: []
-date: 2017-09-08 00:00:00.000000000 Z
+date: 2018-02-14 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: i18n
@@ -98,6 +98,7 @@
- lib/active_support/cache/strategy/local_cache_middleware.rb
- lib/active_support/callbacks.rb
- lib/active_support/concern.rb
+- lib/active_support/concurrency/load_interlock_aware_monitor.rb
- lib/active_support/concurrency/share_lock.rb
- lib/active_support/configurable.rb
- lib/active_support/core_ext.rb
@@ -313,7 +314,9 @@
homepage: http://rubyonrails.org
licenses:
- MIT
-metadata: {}
+metadata:
+ source_code_uri: https://github.com/rails/rails/tree/v5.1.5/activesupport
+ changelog_uri:
https://github.com/rails/rails/blob/v5.1.5/activesupport/CHANGELOG.md
post_install_message:
rdoc_options:
- "--encoding"
@@ -332,7 +335,7 @@
version: '0'
requirements: []
rubyforge_project:
-rubygems_version: 2.6.13
+rubygems_version: 2.7.3
signing_key:
specification_version: 4
summary: A toolkit of support libraries and Ruby core extensions extracted
from the