Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-rspec-core for openSUSE:Factory checked in at 2023-11-15 21:06:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-core (Old) and /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-core" Wed Nov 15 21:06:51 2023 rev:33 rq:1126299 version:3.12.2 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rspec-core/rubygem-rspec-core.changes 2022-12-04 14:58:00.648151508 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new.17445/rubygem-rspec-core.changes 2023-11-15 21:07:16.465345947 +0100 @@ -1,0 +2,5 @@ +Tue Nov 14 15:33:05 UTC 2023 - Dan Äermák <[email protected]> + +- New upstream release 3.12.2, see bundled Changelog.md + +------------------------------------------------------------------- Old: ---- rspec-core-3.12.0.gem New: ---- rspec-core-3.12.2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rspec-core.spec ++++++ --- /var/tmp/diff_new_pack.sUIWER/_old 2023-11-15 21:07:17.289376350 +0100 +++ /var/tmp/diff_new_pack.sUIWER/_new 2023-11-15 21:07:17.293376498 +0100 @@ -1,7 +1,7 @@ # # spec file for package rubygem-rspec-core # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,11 +24,10 @@ # Name: rubygem-rspec-core -Version: 3.12.0 +Version: 3.12.2 Release: 0 %define mod_name rspec-core %define mod_full_name %{mod_name}-%{version} -BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: %{ruby >= 1.8.7} BuildRequires: %{rubygem gem2rpm} BuildRequires: %{rubygem rdoc > 3.10} @@ -39,7 +38,6 @@ Source1: gem2rpm.yml Summary: RSpec runner and formatters License: MIT -Group: Development/Languages/Ruby PreReq: update-alternatives %description ++++++ rspec-core-3.12.0.gem -> rspec-core-3.12.2.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Changelog.md new/Changelog.md --- old/Changelog.md 2022-10-26 21:13:22.000000000 +0200 +++ new/Changelog.md 2023-04-18 22:36:02.000000000 +0200 @@ -1,5 +1,20 @@ ### Development -[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.0...3-12-maintenance) +[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.2...3-12-maintenance) + +### 3.12.2 / 2023-04-18 +[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.1...v3.12.2) + +Bug fixes: + +* Remove link to outdated documentation in generated output. (Jon Rowe, #3035) + +### 3.12.1 / 2023-02-03 +[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.0...v3.12.1) + +Bug fixes: + +* Prevent multiple calls to `extra_failure_lines` from adding additional whitespace + around them when the lines already contain whitespace. (Jon Rowe, #3006) ### 3.12.0 / 2022-10-26 [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.11.0...v3.12.0) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2022-10-26 21:13:22.000000000 +0200 +++ new/README.md 2023-04-18 22:36:02.000000000 +0200 @@ -322,14 +322,14 @@ got: nil (compared using ==) - # ./spec/calcalator_spec.rb:6:in `block (3 levels) in <top (required)>' + # ./spec/calculator_spec.rb:6:in `block (3 levels) in <top (required)>' Finished in 0.00131 seconds (files took 0.10968 seconds to load) 1 example, 1 failure Failed examples: -rspec ./spec/calcalator_spec.rb:5 # Calculator#add returns the sum of its arguments +rspec ./spec/calculator_spec.rb:5 # Calculator#add returns the sum of its arguments ``` Implement the simplest solution, by changing the definition of `Calculator#add` to: 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 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/configuration.rb 2023-04-18 22:36:02.000000000 +0200 @@ -678,7 +678,7 @@ end # Set regular expressions used to exclude lines in backtrace. - # @param patterns [Array<Regexp>] set backtrace_formatter exlusion_patterns + # @param patterns [Array<Regexp>] set backtrace_formatter exclusion_patterns def backtrace_exclusion_patterns=(patterns) @backtrace_formatter.exclusion_patterns = patterns end @@ -1820,7 +1820,7 @@ # by not setting `mock_with` or `expect_with` to anything else). # # @note If the user uses this options with `mock_with :mocha` - # (or similiar) they will still have monkey patching active + # (or similar) they will still have monkey patching active # in their test environment from mocha. # # @example diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/core/example_status_persister.rb new/lib/rspec/core/example_status_persister.rb --- old/lib/rspec/core/example_status_persister.rb 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/example_status_persister.rb 2023-04-18 22:36:02.000000000 +0200 @@ -63,7 +63,7 @@ # were loaded but not executed (due to filtering, `--fail-fast` # or whatever) should have a `:status` of `UNKNOWN_STATUS`. # - # This willl produce a new list that: + # This will produce a new list that: # - Will be missing examples from previous runs that we know for sure # no longer exist. # - Will have the latest known status for any examples that either @@ -164,7 +164,7 @@ end def formatted_value_rows - @foramtted_value_rows ||= rows.map do |row| + @formatted_value_rows ||= rows.map do |row| formatted_row_from(row) end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/core/formatters/exception_presenter.rb new/lib/rspec/core/formatters/exception_presenter.rb --- old/lib/rspec/core/formatters/exception_presenter.rb 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/formatters/exception_presenter.rb 2023-04-18 22:36:02.000000000 +0200 @@ -197,8 +197,8 @@ @extra_failure_lines ||= begin lines = Array(example.metadata[:extra_failure_lines]) unless lines.empty? - lines.unshift('') - lines.push('') + lines.unshift('') unless lines.first == '' + lines.push('') unless lines.last == '' end lines end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/core/formatters/html_snippet_extractor.rb new/lib/rspec/core/formatters/html_snippet_extractor.rb --- old/lib/rspec/core/formatters/html_snippet_extractor.rb 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/formatters/html_snippet_extractor.rb 2023-04-18 22:36:02.000000000 +0200 @@ -43,7 +43,7 @@ # # @param backtrace [String] the backtrace from a test failure # @return [String] highlighted code snippet indicating where the test - # failure occured + # failure occurred # # @see #post_process def snippet(backtrace) @@ -103,7 +103,7 @@ # # @param highlighted [String] syntax-highlighted snippet surrounding the # offending line of code - # @param offending_line [Fixnum] line where failure occured + # @param offending_line [Fixnum] line where failure occurred # @return [String] completed snippet def post_process(highlighted, offending_line) new_lines = [] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/core/metadata_filter.rb new/lib/rspec/core/metadata_filter.rb --- old/lib/rspec/core/metadata_filter.rb 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/metadata_filter.rb 2023-04-18 22:36:02.000000000 +0200 @@ -92,7 +92,7 @@ # # This is ideal for use by a example or example group, which may # be updated multiple times with globally configured hooks, etc, - # but will not be queried frequently by other examples or examle + # but will not be queried frequently by other examples or example # groups. # @private class UpdateOptimized diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/core/project_initializer/spec/spec_helper.rb new/lib/rspec/core/project_initializer/spec/spec_helper.rb --- old/lib/rspec/core/project_initializer/spec/spec_helper.rb 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/project_initializer/spec/spec_helper.rb 2023-04-18 22:36:02.000000000 +0200 @@ -61,7 +61,7 @@ # Limits the available syntax to the non-monkey patched syntax that is # recommended. For more details, see: - # https://relishapp.com/rspec/rspec-core/docs/configuration/zero-monkey-patching-mode + # https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/ config.disable_monkey_patching! # This setting enables warnings. It's recommended, but in some cases may diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rspec/core/reporter.rb new/lib/rspec/core/reporter.rb --- old/lib/rspec/core/reporter.rb 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/reporter.rb 2023-04-18 22:36:02.000000000 +0200 @@ -30,7 +30,7 @@ # Registers a listener to a list of notifications. The reporter will send # notification of events to all registered listeners. # - # @param listener [Object] An obect that wishes to be notified of reporter + # @param listener [Object] An object that wishes to be notified of reporter # events # @param notifications [Array] Array of symbols represents the events a # listener wishes to subscribe too 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 2022-10-26 21:13:22.000000000 +0200 +++ new/lib/rspec/core/version.rb 2023-04-18 22:36:02.000000000 +0200 @@ -3,7 +3,7 @@ # Version information for RSpec Core. module Version # Current version of RSpec Core, in semantic versioning format. - STRING = '3.12.0' + STRING = '3.12.2' end end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-10-26 21:13:22.000000000 +0200 +++ new/metadata 2023-04-18 22:36:02.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: rspec-core version: !ruby/object:Gem::Version - version: 3.12.0 + version: 3.12.2 platform: ruby authors: - Steven Baker @@ -46,7 +46,7 @@ ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ F3MdtaDehhjC -----END CERTIFICATE----- -date: 2022-10-26 00:00:00.000000000 Z +date: 2023-04-18 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rspec-support @@ -267,7 +267,7 @@ - MIT metadata: bug_tracker_uri: https://github.com/rspec/rspec-core/issues - changelog_uri: https://github.com/rspec/rspec-core/blob/v3.12.0/Changelog.md + changelog_uri: https://github.com/rspec/rspec-core/blob/v3.12.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-core @@ -287,8 +287,8 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.3.3 +rubygems_version: 3.4.10 signing_key: specification_version: 4 -summary: rspec-core-3.12.0 +summary: rspec-core-3.12.2 test_files: [] Binary files old/metadata.gz.sig and new/metadata.gz.sig differ
