Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-rspec-support for openSUSE:Factory checked in at 2021-02-11 12:45:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-support (Old) and /work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-support" Thu Feb 11 12:45:13 2021 rev:15 rq:869953 version:3.10.2 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rspec-support/rubygem-rspec-support.changes 2021-01-22 21:49:33.449613664 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.28504/rubygem-rspec-support.changes 2021-02-11 12:45:42.265341858 +0100 @@ -1,0 +2,13 @@ +Sat Feb 6 11:36:43 UTC 2021 - Manuel Schnitzer <mschnit...@suse.com> + +- updated to version 3.10.2 + + ### 3.10.2 / 2021-01-28 + [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.1...v3.10.2) + + Bug Fixes: + + * Fix issue with `RSpec::Support.define_optimized_require_for_rspec` on JRuby + 9.1.17.0 (Jon Rowe, #492) + +------------------------------------------------------------------- Old: ---- rspec-support-3.10.1.gem New: ---- rspec-support-3.10.2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rspec-support.spec ++++++ --- /var/tmp/diff_new_pack.LbzlCZ/_old 2021-02-11 12:45:43.121343105 +0100 +++ /var/tmp/diff_new_pack.LbzlCZ/_new 2021-02-11 12:45:43.125343110 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-rspec-support -Version: 3.10.1 +Version: 3.10.2 Release: 0 %define mod_name rspec-support %define mod_full_name %{mod_name}-%{version} ++++++ rspec-support-3.10.1.gem -> rspec-support-3.10.2.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Changelog.md new/Changelog.md --- old/Changelog.md 2020-12-27 16:51:44.000000000 +0100 +++ new/Changelog.md 2021-01-29 00:14:58.000000000 +0100 @@ -1,3 +1,11 @@ +### 3.10.2 / 2021-01-28 +[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.1...v3.10.2) + +Bug Fixes: + +* Fix issue with `RSpec::Support.define_optimized_require_for_rspec` on JRuby + 9.1.17.0 (Jon Rowe, #492) + ### 3.10.1 / 2020-12-27 [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.0...v3.10.1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2020-12-27 16:51:44.000000000 +0100 +++ new/README.md 2021-01-29 00:14:58.000000000 +0100 @@ -1,4 +1,4 @@ -# RSpec::Support +# RSpec::Support [](https://github.com/rspec/rspec-support/actions) `RSpec::Support` provides common functionality to `RSpec::Core`, `RSpec::Expectations` and `RSpec::Mocks`. It is considered 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/support/spec/shell_out.rb new/lib/rspec/support/spec/shell_out.rb --- old/lib/rspec/support/spec/shell_out.rb 2020-12-27 16:51:44.000000000 +0100 +++ new/lib/rspec/support/spec/shell_out.rb 2021-01-29 00:14:58.000000000 +0100 @@ -92,7 +92,7 @@ if Ruby.jruby? def filter(output) output.each_line.reject do |line| - line.include?("lib/ruby/shared/rubygems/defaults/jruby") + line.include?("lib/ruby/shared/rubygems") end.join($/) end else diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/support/spec.rb new/lib/rspec/support/spec.rb --- old/lib/rspec/support/spec.rb 2020-12-27 16:51:44.000000000 +0100 +++ new/lib/rspec/support/spec.rb 2021-01-29 00:14:58.000000000 +0100 @@ -65,8 +65,8 @@ def self.start_simplecov(&block) SimpleCov.start do - add_filter "./bundle/" - add_filter "./tmp/" + add_filter "bundle/" + add_filter "tmp/" add_filter do |source_file| # Filter out `spec` directory except when it is under `lib` # (as is the case in rspec-support) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/support/version.rb new/lib/rspec/support/version.rb --- old/lib/rspec/support/version.rb 2020-12-27 16:51:44.000000000 +0100 +++ new/lib/rspec/support/version.rb 2021-01-29 00:14:58.000000000 +0100 @@ -1,7 +1,7 @@ module RSpec module Support module Version - STRING = '3.10.1' + STRING = '3.10.2' end end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/support.rb new/lib/rspec/support.rb --- old/lib/rspec/support.rb 2020-12-27 16:51:44.000000000 +0100 +++ new/lib/rspec/support.rb 2021-01-29 00:14:58.000000000 +0100 @@ -14,7 +14,12 @@ def self.define_optimized_require_for_rspec(lib, &require_relative) name = "require_rspec_#{lib}" - if Kernel.respond_to?(:require_relative) + if RUBY_PLATFORM == 'java' && !Kernel.respond_to?(:require) + # JRuby 9.1.17.0 has developed a regression for require + (class << self; self; end).__send__(:define_method, name) do |f| + Kernel.send(:require, "rspec/#{lib}/#{f}") + end + elsif Kernel.respond_to?(:require_relative) (class << self; self; end).__send__(:define_method, name) do |f| require_relative.call("#{lib}/#{f}") end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-12-27 16:51:44.000000000 +0100 +++ new/metadata 2021-01-29 00:14:58.000000000 +0100 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: rspec-support version: !ruby/object:Gem::Version - version: 3.10.1 + version: 3.10.2 platform: ruby authors: - David Chelimsky @@ -48,7 +48,7 @@ ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ F3MdtaDehhjC -----END CERTIFICATE----- -date: 2020-12-27 00:00:00.000000000 Z +date: 2021-01-28 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rake @@ -125,7 +125,7 @@ - MIT metadata: bug_tracker_uri: https://github.com/rspec/rspec-support/issues - changelog_uri: https://github.com/rspec/rspec-support/blob/v3.10.1/Changelog.md + changelog_uri: https://github.com/rspec/rspec-support/blob/v3.10.2/Changelog.md documentation_uri: https://rspec.info/documentation/ mailing_list_uri: https://groups.google.com/forum/#!forum/rspec source_code_uri: https://github.com/rspec/rspec-support @@ -145,8 +145,8 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.2.3 +rubygems_version: 3.2.4 signing_key: specification_version: 4 -summary: rspec-support-3.10.1 +summary: rspec-support-3.10.2 test_files: [] Binary files old/metadata.gz.sig and new/metadata.gz.sig differ