Hello community,
here is the log from the commit of package rubygem-rspec-core for
openSUSE:Factory checked in at 2018-02-12 10:08:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-core (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-core"
Mon Feb 12 10:08:53 2018 rev:24 rq:574090 version:3.7.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rspec-core/rubygem-rspec-core.changes
2017-11-01 11:08:05.481163720 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rspec-core.new/rubygem-rspec-core.changes
2018-02-12 10:08:57.903019238 +0100
@@ -1,0 +2,6 @@
+Tue Jan 9 07:44:29 UTC 2018 - [email protected]
+
+- updated to version 3.7.1
+ see installed Changelog.md
+
+-------------------------------------------------------------------
Old:
----
rspec-core-3.7.0.gem
New:
----
rspec-core-3.7.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rspec-core.spec ++++++
--- /var/tmp/diff_new_pack.swDBxv/_old 2018-02-12 10:08:59.254970515 +0100
+++ /var/tmp/diff_new_pack.swDBxv/_new 2018-02-12 10:08:59.258970371 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-rspec-core
#
-# 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-rspec-core
-Version: 3.7.0
+Version: 3.7.1
Release: 0
%define mod_name rspec-core
%define mod_full_name %{mod_name}-%{version}
++++++ rspec-core-3.7.0.gem -> rspec-core-3.7.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md 2017-10-17 17:13:00.000000000 +0200
+++ new/Changelog.md 2018-01-03 07:02:03.000000000 +0100
@@ -1,5 +1,10 @@
-### Development
-[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.0...master)
+### 3.7.1 / 2018-01-02
+[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.0...v3.7.1)
+
+Bug Fixes:
+
+* Work around duplicate config hook regression introduced
+ by Ruby 2.5's lazy proc allocation. (Myron Marston, #2497)
### 3.7.0 / 2017-10-17
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0...v3.7.0)
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Binary files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Binary files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/core/configuration.rb
new/lib/rspec/core/configuration.rb
--- old/lib/rspec/core/configuration.rb 2017-10-17 17:13:00.000000000 +0200
+++ new/lib/rspec/core/configuration.rb 2018-01-03 07:02:03.000000000 +0100
@@ -1810,6 +1810,12 @@
handle_suite_hook(scope, meta) do
@before_suite_hooks << Hooks::BeforeHook.new(block, {})
end || begin
+ # defeat Ruby 2.5 lazy proc allocation to ensure
+ # the methods below are passed the same proc instances
+ # so `Hook` equality is preserved. For more info, see:
+ # https://bugs.ruby-lang.org/issues/14045#note-5
+ block.__id__
+
add_hook_to_existing_matching_groups(meta, scope) { |g|
g.before(scope, *meta, &block) }
super(scope, *meta, &block)
end
@@ -1833,6 +1839,12 @@
handle_suite_hook(scope, meta) do
@before_suite_hooks.unshift Hooks::BeforeHook.new(block, {})
end || begin
+ # defeat Ruby 2.5 lazy proc allocation to ensure
+ # the methods below are passed the same proc instances
+ # so `Hook` equality is preserved. For more info, see:
+ # https://bugs.ruby-lang.org/issues/14045#note-5
+ block.__id__
+
add_hook_to_existing_matching_groups(meta, scope) { |g|
g.prepend_before(scope, *meta, &block) }
super(scope, *meta, &block)
end
@@ -1851,6 +1863,12 @@
handle_suite_hook(scope, meta) do
@after_suite_hooks.unshift Hooks::AfterHook.new(block, {})
end || begin
+ # defeat Ruby 2.5 lazy proc allocation to ensure
+ # the methods below are passed the same proc instances
+ # so `Hook` equality is preserved. For more info, see:
+ # https://bugs.ruby-lang.org/issues/14045#note-5
+ block.__id__
+
add_hook_to_existing_matching_groups(meta, scope) { |g|
g.after(scope, *meta, &block) }
super(scope, *meta, &block)
end
@@ -1874,6 +1892,12 @@
handle_suite_hook(scope, meta) do
@after_suite_hooks << Hooks::AfterHook.new(block, {})
end || begin
+ # defeat Ruby 2.5 lazy proc allocation to ensure
+ # the methods below are passed the same proc instances
+ # so `Hook` equality is preserved. For more info, see:
+ # https://bugs.ruby-lang.org/issues/14045#note-5
+ block.__id__
+
add_hook_to_existing_matching_groups(meta, scope) { |g|
g.append_after(scope, *meta, &block) }
super(scope, *meta, &block)
end
@@ -1883,6 +1907,12 @@
#
# See {Hooks#around} for full `around` hook docs.
def around(scope=nil, *meta, &block)
+ # defeat Ruby 2.5 lazy proc allocation to ensure
+ # the methods below are passed the same proc instances
+ # so `Hook` equality is preserved. For more info, see:
+ # https://bugs.ruby-lang.org/issues/14045#note-5
+ block.__id__
+
add_hook_to_existing_matching_groups(meta, scope) { |g|
g.around(scope, *meta, &block) }
super(scope, *meta, &block)
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/core/version.rb
new/lib/rspec/core/version.rb
--- old/lib/rspec/core/version.rb 2017-10-17 17:13:00.000000000 +0200
+++ new/lib/rspec/core/version.rb 2018-01-03 07:02:04.000000000 +0100
@@ -3,7 +3,7 @@
# Version information for RSpec Core.
module Version
# Current version of RSpec Core, in semantic versioning format.
- STRING = '3.7.0'
+ STRING = '3.7.1'
end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-10-17 17:13:00.000000000 +0200
+++ new/metadata 2018-01-03 07:02:03.000000000 +0100
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: rspec-core
version: !ruby/object:Gem::Version
- version: 3.7.0
+ version: 3.7.1
platform: ruby
authors:
- Steven Baker
@@ -46,7 +46,7 @@
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
F3MdtaDehhjC
-----END CERTIFICATE-----
-date: 2017-10-17 00:00:00.000000000 Z
+date: 2018-01-03 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: rspec-support
@@ -277,9 +277,8 @@
version: '0'
requirements: []
rubyforge_project:
-rubygems_version: 2.6.14
+rubygems_version: 2.7.3
signing_key:
specification_version: 4
-summary: rspec-core-3.7.0
+summary: rspec-core-3.7.1
test_files: []
-has_rdoc:
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ