Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-rspec-expectations for openSUSE:Factory checked in at 2022-12-04 14:57:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-expectations (Old) and /work/SRC/openSUSE:Factory/.rubygem-rspec-expectations.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-expectations" Sun Dec 4 14:57:51 2022 rev:25 rq:1032156 version:3.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rspec-expectations/rubygem-rspec-expectations.changes 2022-10-12 18:22:41.665365109 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-rspec-expectations.new.1835/rubygem-rspec-expectations.changes 2022-12-04 14:58:01.424155979 +0100 @@ -1,0 +2,7 @@ +Fri Oct 28 05:05:29 UTC 2022 - Stephan Kulow <co...@suse.com> + +updated to version 3.12.0 + see installed Changelog.md + + +------------------------------------------------------------------- Old: ---- rspec-expectations-3.11.1.gem New: ---- rspec-expectations-3.12.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rspec-expectations.spec ++++++ --- /var/tmp/diff_new_pack.JNf95X/_old 2022-12-04 14:58:01.796158122 +0100 +++ /var/tmp/diff_new_pack.JNf95X/_new 2022-12-04 14:58:01.796158122 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-rspec-expectations -Version: 3.11.1 +Version: 3.12.0 Release: 0 %define mod_name rspec-expectations %define mod_full_name %{mod_name}-%{version} ++++++ rspec-expectations-3.11.1.gem -> rspec-expectations-3.12.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Changelog.md new/Changelog.md --- old/Changelog.md 2022-09-12 12:12:30.000000000 +0200 +++ new/Changelog.md 2022-10-26 21:13:26.000000000 +0200 @@ -1,5 +1,13 @@ ### Development -[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.11.1...3-11-maintenance) +[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.0...3-12-maintenance) + +### 3.12.0 / 2022-10-26 +[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.11.1...v3.12.0) + +Enhancements: + +* Add `an_array_matching` alias for `match_array` to improve readability as an argument + matcher. (Mark Schneider, #1361) ### 3.11.1 / 2022-09-12 [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.11.0...v3.11.1) 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/expectations/version.rb new/lib/rspec/expectations/version.rb --- old/lib/rspec/expectations/version.rb 2022-09-12 12:12:30.000000000 +0200 +++ new/lib/rspec/expectations/version.rb 2022-10-26 21:13:26.000000000 +0200 @@ -2,7 +2,7 @@ module Expectations # @private module Version - STRING = '3.11.1' + STRING = '3.12.0' end end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/matchers.rb new/lib/rspec/matchers.rb --- old/lib/rspec/matchers.rb 2022-09-12 12:12:30.000000000 +0200 +++ new/lib/rspec/matchers.rb 2022-10-26 21:13:26.000000000 +0200 @@ -715,6 +715,9 @@ def match_array(items) contain_exactly(*items) end + alias_matcher :an_array_matching, :match_array do |desc| + desc.sub("contain exactly", "an array containing exactly") + end # With no arg, passes if the block outputs `to_stdout` or `to_stderr`. # With a string, passes if the block outputs that specific string `to_stdout` or `to_stderr`. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-09-12 12:12:30.000000000 +0200 +++ new/metadata 2022-10-26 21:13:26.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: rspec-expectations version: !ruby/object:Gem::Version - version: 3.11.1 + version: 3.12.0 platform: ruby authors: - Steven Baker @@ -45,7 +45,7 @@ ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ F3MdtaDehhjC -----END CERTIFICATE----- -date: 2022-09-12 00:00:00.000000000 Z +date: 2022-10-26 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rspec-support @@ -53,14 +53,14 @@ requirements: - - "~>" - !ruby/object:Gem::Version - version: 3.11.0 + version: 3.12.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version - version: 3.11.0 + version: 3.12.0 - !ruby/object:Gem::Dependency name: diff-lcs requirement: !ruby/object:Gem::Requirement @@ -203,7 +203,7 @@ - MIT metadata: bug_tracker_uri: https://github.com/rspec/rspec-expectations/issues - changelog_uri: https://github.com/rspec/rspec-expectations/blob/v3.11.1/Changelog.md + changelog_uri: https://github.com/rspec/rspec-expectations/blob/v3.12.0/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-expectations @@ -226,5 +226,5 @@ rubygems_version: 3.3.3 signing_key: specification_version: 4 -summary: rspec-expectations-3.11.1 +summary: rspec-expectations-3.12.0 test_files: [] Binary files old/metadata.gz.sig and new/metadata.gz.sig differ