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 2022-12-04 14:57:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-core (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rspec-core"

Sun Dec  4 14:57:51 2022 rev:32 rq:1032155 version:3.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rspec-core/rubygem-rspec-core.changes    
2022-02-28 19:43:08.817931818 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-core.new.1835/rubygem-rspec-core.changes
  2022-12-04 14:58:00.648151508 +0100
@@ -1,0 +2,7 @@
+Fri Oct 28 05:05:16 UTC 2022 - Stephan Kulow <co...@suse.com>
+
+updated to version 3.12.0
+ see installed Changelog.md
+
+
+-------------------------------------------------------------------

Old:
----
  rspec-core-3.11.0.gem

New:
----
  rspec-core-3.12.0.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-rspec-core.spec ++++++
--- /var/tmp/diff_new_pack.WdGVav/_old  2022-12-04 14:58:01.156154435 +0100
+++ /var/tmp/diff_new_pack.WdGVav/_new  2022-12-04 14:58:01.160154458 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-rspec-core
-Version:        3.11.0
+Version:        3.12.0
 Release:        0
 %define mod_name rspec-core
 %define mod_full_name %{mod_name}-%{version}

++++++ rspec-core-3.11.0.gem -> rspec-core-3.12.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md    2022-02-09 12:38:32.000000000 +0100
+++ new/Changelog.md    2022-10-26 21:13:22.000000000 +0200
@@ -1,5 +1,10 @@
 ### Development
-[Full 
Changelog](http://github.com/rspec/rspec-core/compare/v3.11.0...3-11-maintenance)
+[Full 
Changelog](http://github.com/rspec/rspec-core/compare/v3.12.0...3-12-maintenance)
+
+### 3.12.0 / 2022-10-26
+[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.11.0...v3.12.0)
+
+* No changes, released to support other gems.
 
 ### 3.11.0 / 2022-02-09
 [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.2...v3.11.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 2022-02-09 12:38:32.000000000 +0100
+++ new/lib/rspec/core/configuration.rb 2022-10-26 21:13:22.000000000 +0200
@@ -502,7 +502,8 @@
       # @private
       attr_reader :backtrace_formatter, :ordering_manager, :loaded_spec_files
 
-      # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
+      # rubocop:disable Metrics/AbcSize
+      # rubocop:disable Metrics/MethodLength
 
       # Build an object to store runtime configuration options and set defaults
       def initialize
@@ -561,7 +562,8 @@
 
         define_built_in_hooks
       end
-      # rubocop:enable Metrics/MethodLength, Metrics/AbcSize
+      # rubocop:enable Metrics/AbcSize
+      # rubocop:enable Metrics/MethodLength
 
       # @private
       #
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-02-09 
12:38:32.000000000 +0100
+++ new/lib/rspec/core/formatters/exception_presenter.rb        2022-10-26 
21:13:22.000000000 +0200
@@ -242,6 +242,10 @@
           line_regex = RSpec.configuration.in_project_source_dir_regex
           loaded_spec_files = RSpec.configuration.loaded_spec_files
 
+          exception_backtrace.reject! do |line|
+            line.start_with?("<internal:")
+          end
+
           exception_backtrace.find do |line|
             next unless (line_path = line[/(.+?):(\d+)(|:\d+)/, 1])
             path = File.expand_path(line_path)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/core/formatters/html_printer.rb 
new/lib/rspec/core/formatters/html_printer.rb
--- old/lib/rspec/core/formatters/html_printer.rb       2022-02-09 
12:38:32.000000000 +0100
+++ new/lib/rspec/core/formatters/html_printer.rb       2022-10-26 
21:13:22.000000000 +0200
@@ -33,10 +33,8 @@
             "<span class='duration'>#{formatted_run_time}s</span></dd>"
         end
 
-        # rubocop:disable Metrics/ParameterLists
         def print_example_failed(pending_fixed, description, run_time, 
failure_id,
                                  exception, extra_content)
-          # rubocop:enable Metrics/ParameterLists
           formatted_run_time = "%.5f" % run_time
 
           @output.puts "    <dd class=\"example #{pending_fixed ? 
'pending_fixed' : 'failed'}\">"
@@ -215,7 +213,7 @@
   }
 }
 EOF
-        # rubocop:enable LineLength
+        # rubocop:enable Layout/LineLength
 
         GLOBAL_STYLES = <<-EOF
 #rspec-header {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/core/option_parser.rb 
new/lib/rspec/core/option_parser.rb
--- old/lib/rspec/core/option_parser.rb 2022-02-09 12:38:32.000000000 +0100
+++ new/lib/rspec/core/option_parser.rb 2022-10-26 21:13:22.000000000 +0200
@@ -32,11 +32,10 @@
 
   private
 
-    # rubocop:disable MethodLength
     # rubocop:disable Metrics/AbcSize
-    # rubocop:disable CyclomaticComplexity
-    # rubocop:disable PerceivedComplexity
-    # rubocop:disable Metrics/BlockLength
+    # rubocop:disable Metrics/MethodLength
+    # rubocop:disable Metrics/CyclomaticComplexity
+    # rubocop:disable Metrics/PerceivedComplexity
     def parser(options)
       OptionParser.new do |parser|
         parser.summary_width = 34
@@ -303,11 +302,10 @@
         end
       end
     end
-    # rubocop:enable Metrics/BlockLength
     # rubocop:enable Metrics/AbcSize
-    # rubocop:enable MethodLength
-    # rubocop:enable CyclomaticComplexity
-    # rubocop:enable PerceivedComplexity
+    # rubocop:enable Metrics/MethodLength
+    # rubocop:enable Metrics/CyclomaticComplexity
+    # rubocop:enable Metrics/PerceivedComplexity
 
     def add_tag_filter(options, filter_type, tag_name, value=true)
       (options[filter_type] ||= {})[tag_name] = value
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-02-09 12:38:32.000000000 +0100
+++ new/lib/rspec/core/version.rb       2022-10-26 21:13:22.000000000 +0200
@@ -3,7 +3,7 @@
     # Version information for RSpec Core.
     module Version
       # Current version of RSpec Core, in semantic versioning format.
-      STRING = '3.11.0'
+      STRING = '3.12.0'
     end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2022-02-09 12:38:32.000000000 +0100
+++ new/metadata        2022-10-26 21:13:22.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: rspec-core
 version: !ruby/object:Gem::Version
-  version: 3.11.0
+  version: 3.12.0
 platform: ruby
 authors:
 - Steven Baker
@@ -46,7 +46,7 @@
   ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
   F3MdtaDehhjC
   -----END CERTIFICATE-----
-date: 2022-02-09 00:00:00.000000000 Z
+date: 2022-10-26 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rspec-support
@@ -54,26 +54,26 @@
     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: cucumber
   requirement: !ruby/object:Gem::Requirement
     requirements:
-    - - "~>"
+    - - ">="
       - !ruby/object:Gem::Version
         version: '1.3'
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
-    - - "~>"
+    - - ">="
       - !ruby/object:Gem::Version
         version: '1.3'
 - !ruby/object:Gem::Dependency
@@ -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.11.0/Changelog.md
+  changelog_uri: https://github.com/rspec/rspec-core/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-core
@@ -290,5 +290,5 @@
 rubygems_version: 3.3.3
 signing_key:
 specification_version: 4
-summary: rspec-core-3.11.0
+summary: rspec-core-3.12.0
 test_files: []
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ

Reply via email to