Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-rspec-mocks for openSUSE:Factory checked in at 2021-02-11 12:45:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-mocks (Old) and /work/SRC/openSUSE:Factory/.rubygem-rspec-mocks.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-mocks" Thu Feb 11 12:45:11 2021 rev:22 rq:869952 version:3.10.2 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rspec-mocks/rubygem-rspec-mocks.changes 2021-01-22 21:49:30.673609727 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rspec-mocks.new.28504/rubygem-rspec-mocks.changes 2021-02-11 12:45:41.173340268 +0100 @@ -1,0 +2,18 @@ +Sat Feb 6 11:35:31 UTC 2021 - Manuel Schnitzer <mschnit...@suse.com> + +- updated to version 3.10.2 + + ### 3.10.2 / 2021-01-27 + [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.1...v3.10.2) + + Bug Fixes: + + * Support keyword arguments with `and_call_original` on Ruby 3.0. + (Bryan Powell, #1385) + * `RSpec::Mocks::Constant#previously_defined?` is now always a boolean. + (Phil Pirozhkov, #1397) + * Support keyword arguments on Ruby 3.0 when used with `expect_any_instance_of` + or `allow_any_instance_of` with `and_call_original`. + (Jess Hottenstein, #1407) + +------------------------------------------------------------------- Old: ---- rspec-mocks-3.10.1.gem New: ---- rspec-mocks-3.10.2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rspec-mocks.spec ++++++ --- /var/tmp/diff_new_pack.yrzLMM/_old 2021-02-11 12:45:41.741341095 +0100 +++ /var/tmp/diff_new_pack.yrzLMM/_new 2021-02-11 12:45:41.745341101 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-rspec-mocks -Version: 3.10.1 +Version: 3.10.2 Release: 0 %define mod_name rspec-mocks %define mod_full_name %{mod_name}-%{version} ++++++ rspec-mocks-3.10.1.gem -> rspec-mocks-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-28 17:16:52.000000000 +0100 +++ new/Changelog.md 2021-01-29 00:09:23.000000000 +0100 @@ -1,3 +1,19 @@ +### Development +[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.2...main) + +### 3.10.2 / 2021-01-27 +[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.1...v3.10.2) + +Bug Fixes: + +* Support keyword arguments with `and_call_original` on Ruby 3.0. + (Bryan Powell, #1385) +* `RSpec::Mocks::Constant#previously_defined?` is now always a boolean. + (Phil Pirozhkov, #1397) +* Support keyword arguments on Ruby 3.0 when used with `expect_any_instance_of` + or `allow_any_instance_of` with `and_call_original`. + (Jess Hottenstein, #1407) + ### 3.10.1 / 2020-12-27 [Full Changelog](http://github.com/rspec/rspec-mocks/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-28 17:16:52.000000000 +0100 +++ new/README.md 2021-01-29 00:09:23.000000000 +0100 @@ -1,4 +1,4 @@ -# RSpec Mocks [](http://travis-ci.org/rspec/rspec-mocks) [](https://codeclimate.com/github/rspec/rspec-mocks) +# RSpec Mocks [](https://github.com/rspec/rspec-mocks/actions) [](https://codeclimate.com/github/rspec/rspec-mocks) rspec-mocks is a test-double framework for rspec with support for method stubs, fakes, and message expectations on generated test-doubles and real objects alike. 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/mocks/any_instance/recorder.rb new/lib/rspec/mocks/any_instance/recorder.rb --- old/lib/rspec/mocks/any_instance/recorder.rb 2020-12-28 17:16:52.000000000 +0100 +++ new/lib/rspec/mocks/any_instance/recorder.rb 2021-01-29 00:09:23.000000000 +0100 @@ -261,6 +261,7 @@ recorder.playback!(self, method_name) __send__(method_name, *args, &blk) end + @klass.__send__(:ruby2_keywords, method_name) if @klass.respond_to?(:ruby2_keywords, true) end def mark_invoked!(method_name) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/mocks/method_double.rb new/lib/rspec/mocks/method_double.rb --- old/lib/rspec/mocks/method_double.rb 2020-12-28 17:16:52.000000000 +0100 +++ new/lib/rspec/mocks/method_double.rb 2021-01-29 00:09:23.000000000 +0100 @@ -63,6 +63,7 @@ define_method(method_name) do |*args, &block| method_double.proxy_method_invoked(self, *args, &block) end + ruby2_keywords(method_name) if Module.private_method_defined?(:ruby2_keywords) __send__(visibility, method_name) end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/mocks/mutate_const.rb new/lib/rspec/mocks/mutate_const.rb --- old/lib/rspec/mocks/mutate_const.rb 2020-12-28 17:16:52.000000000 +0100 +++ new/lib/rspec/mocks/mutate_const.rb 2021-01-29 00:09:23.000000000 +0100 @@ -66,7 +66,7 @@ # @private def self.unmutated(name) - previously_defined = recursive_const_defined?(name) + previously_defined = !!recursive_const_defined?(name) rescue NameError new(name) do |c| c.valid_name = false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/mocks/version.rb new/lib/rspec/mocks/version.rb --- old/lib/rspec/mocks/version.rb 2020-12-28 17:16:52.000000000 +0100 +++ new/lib/rspec/mocks/version.rb 2021-01-29 00:09:23.000000000 +0100 @@ -3,7 +3,7 @@ # Version information for RSpec mocks. module Version # Version of RSpec mocks currently in use in SemVer format. - STRING = '3.10.1' + STRING = '3.10.2' end end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-12-28 17:16:52.000000000 +0100 +++ new/metadata 2021-01-29 00:09:23.000000000 +0100 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: rspec-mocks version: !ruby/object:Gem::Version - version: 3.10.1 + version: 3.10.2 platform: ruby authors: - Steven Baker @@ -45,7 +45,7 @@ ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ F3MdtaDehhjC -----END CERTIFICATE----- -date: 2020-12-28 00:00:00.000000000 Z +date: 2021-01-28 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rspec-support @@ -194,7 +194,7 @@ - MIT metadata: bug_tracker_uri: https://github.com/rspec/rspec-mocks/issues - changelog_uri: https://github.com/rspec/rspec-mocks/blob/v3.10.1/Changelog.md + changelog_uri: https://github.com/rspec/rspec-mocks/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-mocks @@ -214,8 +214,8 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.1.4 +rubygems_version: 3.2.4 signing_key: specification_version: 4 -summary: rspec-mocks-3.10.1 +summary: rspec-mocks-3.10.2 test_files: [] Binary files old/metadata.gz.sig and new/metadata.gz.sig differ