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 2022-10-12 18:22:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-support (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-support"
Wed Oct 12 18:22:34 2022 rev:18 rq:1010070 version:3.11.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-rspec-support/rubygem-rspec-support.changes
2022-02-28 19:43:09.921932232 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.2275/rubygem-rspec-support.changes
2022-10-12 18:22:40.713362731 +0200
@@ -1,0 +2,7 @@
+Mon Oct 10 13:19:30 UTC 2022 - Stephan Kulow <[email protected]>
+
+updated to version 3.11.1
+ see installed Changelog.md
+
+
+-------------------------------------------------------------------
Old:
----
rspec-support-3.11.0.gem
New:
----
rspec-support-3.11.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rspec-support.spec ++++++
--- /var/tmp/diff_new_pack.SiGd8S/_old 2022-10-12 18:22:41.153363830 +0200
+++ /var/tmp/diff_new_pack.SiGd8S/_new 2022-10-12 18:22:41.157363840 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-rspec-support
-Version: 3.11.0
+Version: 3.11.1
Release: 0
%define mod_name rspec-support
%define mod_full_name %{mod_name}-%{version}
++++++ rspec-support-3.11.0.gem -> rspec-support-3.11.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md 2022-02-09 12:10:21.000000000 +0100
+++ new/Changelog.md 2022-09-12 18:01:30.000000000 +0200
@@ -1,5 +1,12 @@
### Development
-[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.11.0...3-11-maintenance)
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.11.1...3-11-maintenance)
+
+### 3.11.1 / 2022-09-12
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.11.0...v3.11.1)
+
+Bug Fixes:
+
+* Fix ripper detection on TruffleRuby. (Brandon Fish, #541)
### 3.11.0 / 2022-02-09
[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.10.3...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/support/caller_filter.rb
new/lib/rspec/support/caller_filter.rb
--- old/lib/rspec/support/caller_filter.rb 2022-02-09 12:10:21.000000000
+0100
+++ new/lib/rspec/support/caller_filter.rb 2022-09-12 18:01:30.000000000
+0200
@@ -25,7 +25,7 @@
# when `CallerFilter.first_non_rspec_line` is called from the top level of
a required
# file, but it depends on if rubygems is loaded or not. We don't want to
have to deal
# with this complexity in our `RSpec.deprecate` calls, so we ignore it
here.
- IGNORE_REGEX = Regexp.union(LIB_REGEX,
"rubygems/core_ext/kernel_require.rb")
+ IGNORE_REGEX = Regexp.union(LIB_REGEX,
"rubygems/core_ext/kernel_require.rb", "<internal:")
if RSpec::Support::RubyFeatures.caller_locations_supported?
# This supports args because it's more efficient when the caller
specifies
@@ -34,7 +34,7 @@
# be found in a small number of stack frames from `skip_frames`.
#
# Note that there is a risk to passing a `skip_frames` value that is too
high:
- # If it skippped the first non-rspec line, then this method would return
the
+ # If it skipped the first non-rspec line, then this method would return
the
# 2nd or 3rd (or whatever) non-rspec line. Thus, you generally shouldn't
pass
# values for these parameters, particularly since most places that use
this are
# not hot spots (generally it gets used for deprecation warnings).
However,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/comparable_version.rb
new/lib/rspec/support/comparable_version.rb
--- old/lib/rspec/support/comparable_version.rb 2022-02-09 12:10:21.000000000
+0100
+++ new/lib/rspec/support/comparable_version.rb 2022-09-12 18:01:30.000000000
+0200
@@ -10,7 +10,7 @@
@string = string
end
- def <=>(other) # rubocop:disable Metrics/AbcSize
+ def <=>(other)
other = self.class.new(other) unless other.is_a?(self.class)
return 0 if string == other.string
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/differ.rb
new/lib/rspec/support/differ.rb
--- old/lib/rspec/support/differ.rb 2022-02-09 12:10:21.000000000 +0100
+++ new/lib/rspec/support/differ.rb 2022-09-12 18:01:30.000000000 +0200
@@ -6,7 +6,7 @@
module RSpec
module Support
- # rubocop:disable ClassLength
+ # rubocop:disable Metrics/ClassLength
class Differ
def diff(actual, expected)
diff = ""
@@ -24,7 +24,7 @@
diff.to_s
end
- # rubocop:disable MethodLength
+ # rubocop:disable Metrics/MethodLength
def diff_as_string(actual, expected)
encoding = EncodedString.pick_encoding(actual, expected)
@@ -52,7 +52,7 @@
rescue Encoding::CompatibilityError
handle_encoding_errors(actual, expected)
end
- # rubocop:enable MethodLength
+ # rubocop:enable Metrics/MethodLength
def diff_as_object(actual, expected)
actual_as_string = object_to_string(actual)
@@ -210,6 +210,6 @@
end
end
end
- # rubocop:enable ClassLength
+ # rubocop:enable Metrics/ClassLength
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/encoded_string.rb
new/lib/rspec/support/encoded_string.rb
--- old/lib/rspec/support/encoded_string.rb 2022-02-09 12:10:21.000000000
+0100
+++ new/lib/rspec/support/encoded_string.rb 2022-09-12 18:01:30.000000000
+0200
@@ -60,7 +60,7 @@
# vs "\x80".encode('UTF-8','ASCII-8BIT', undef: :replace, replace:
'<undef>')
# # => '<undef>'
# Encoding::CompatibilityError
- # when Encoding.compatibile?(str1, str2) is nil
+ # when Encoding.compatible?(str1, str2) is nil
# e.g. utf_16le_emoji_string.split("\n")
# e.g. valid_unicode_string.encode(utf8_encoding) << ascii_string
# Encoding::InvalidByteSequenceError:
@@ -92,7 +92,7 @@
string = remove_invalid_bytes(string)
string.encode(@encoding)
rescue Encoding::UndefinedConversionError,
Encoding::InvalidByteSequenceError
- # Originally defined as a constant to avoid uneeded allocations,
this hash must
+ # Originally defined as a constant to avoid unneeded allocations,
this hash must
# be defined inline (without {}) to avoid warnings on Ruby 2.7
#
# In MRI 2.1 'invalid: :replace' changed to also replace an invalid
byte sequence
@@ -108,7 +108,7 @@
#
string.encode(@encoding, :invalid => :replace, :undef => :replace,
:replace => REPLACE)
rescue Encoding::ConverterNotFoundError
- # Originally defined as a constant to avoid uneeded allocations,
this hash must
+ # Originally defined as a constant to avoid unneeded allocations,
this hash must
# be defined inline (without {}) to avoid warnings on Ruby 2.7
string.dup.force_encoding(@encoding).encode(:invalid => :replace,
:replace => REPLACE)
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/method_signature_verifier.rb
new/lib/rspec/support/method_signature_verifier.rb
--- old/lib/rspec/support/method_signature_verifier.rb 2022-02-09
12:10:21.000000000 +0100
+++ new/lib/rspec/support/method_signature_verifier.rb 2022-09-12
18:01:30.000000000 +0200
@@ -8,7 +8,7 @@
# keyword args of a given method.
#
# @private
- class MethodSignature # rubocop:disable ClassLength
+ class MethodSignature # rubocop:disable Metrics/ClassLength
attr_reader :min_non_kw_args, :max_non_kw_args, :optional_kw_args,
:required_kw_args
def initialize(method)
@@ -285,7 +285,7 @@
@arbitrary_kw_args = @unlimited_args = false
end
- def with_expectation(expectation) # rubocop:disable MethodLength,
Metrics/PerceivedComplexity
+ def with_expectation(expectation) # rubocop:disable Metrics/MethodLength
return self unless MethodSignatureExpectation === expectation
if expectation.empty?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/mutex.rb
new/lib/rspec/support/mutex.rb
--- old/lib/rspec/support/mutex.rb 2022-02-09 12:10:21.000000000 +0100
+++ new/lib/rspec/support/mutex.rb 2022-09-12 18:01:30.000000000 +0200
@@ -9,7 +9,7 @@
# Some methods we don't need are deleted. Anything I don't
# understand (there's quite a bit, actually) is left in.
#
- # Some formating changes are made to appease the robot overlord:
+ # Some formatting changes are made to appease the robot overlord:
# https://travis-ci.org/rspec/rspec-core/jobs/54410874
# @private
class Mutex
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/ruby_features.rb
new/lib/rspec/support/ruby_features.rb
--- old/lib/rspec/support/ruby_features.rb 2022-02-09 12:10:21.000000000
+0100
+++ new/lib/rspec/support/ruby_features.rb 2022-09-12 18:01:30.000000000
+0200
@@ -116,6 +116,9 @@
ripper_requirements.push(!Ruby.jruby_version.between?('9.0.0.0.rc1',
'9.2.0.0'))
end
+ # TruffleRuby disables ripper due to low performance
+ ripper_requirements.push(false) if Ruby.truffleruby?
+
if ripper_requirements.all?
def ripper_supported?
true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/in_sub_process.rb
new/lib/rspec/support/spec/in_sub_process.rb
--- old/lib/rspec/support/spec/in_sub_process.rb 2022-02-09
12:10:21.000000000 +0100
+++ new/lib/rspec/support/spec/in_sub_process.rb 2022-09-12
18:01:30.000000000 +0200
@@ -7,7 +7,7 @@
# Useful as a way to isolate a global change to a subprocess.
- def in_sub_process(prevent_warnings=true) # rubocop:disable
MethodLength, Metrics/AbcSize
+ def in_sub_process(prevent_warnings=true) # rubocop:disable
Metrics/MethodLength, Metrics/AbcSize
exception_reader, exception_writer = IO.pipe
result_reader, result_writer = IO.pipe
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/stderr_splitter.rb
new/lib/rspec/support/spec/stderr_splitter.rb
--- old/lib/rspec/support/spec/stderr_splitter.rb 2022-02-09
12:10:21.000000000 +0100
+++ new/lib/rspec/support/spec/stderr_splitter.rb 2022-09-12
18:01:30.000000000 +0200
@@ -39,7 +39,7 @@
def write(line)
return if line =~ %r{^\S+/gems/\S+:\d+: warning:} #
http://rubular.com/r/kqeUIZOfPG
- # Ruby 2.7.0 warnings from keyword argments span multiple lines,
extend check above
+ # Ruby 2.7.0 warnings from keyword arguments span multiple lines,
extend check above
# to look for the next line.
return if @last_line =~ %r{^\S+/gems/\S+:\d+: warning:} &&
line =~ %r{warning: The called method .* is defined here}
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 2022-02-09 12:10:21.000000000 +0100
+++ new/lib/rspec/support/version.rb 2022-09-12 18:01:30.000000000 +0200
@@ -1,7 +1,7 @@
module RSpec
module Support
module Version
- STRING = '3.11.0'
+ STRING = '3.11.1'
end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/with_keywords_when_needed.rb
new/lib/rspec/support/with_keywords_when_needed.rb
--- old/lib/rspec/support/with_keywords_when_needed.rb 2022-02-09
12:10:21.000000000 +0100
+++ new/lib/rspec/support/with_keywords_when_needed.rb 2022-09-12
18:01:30.000000000 +0200
@@ -9,7 +9,7 @@
module_function
if RSpec::Support::RubyFeatures.kw_args_supported?
- # Remove this in RSpec 4 in favour of explictly passed in kwargs where
+ # Remove this in RSpec 4 in favour of explicitly passed in kwargs where
# this is used. Works around a warning in Ruby 2.7
def class_exec(klass, *args, &block)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2022-02-09 12:10:21.000000000 +0100
+++ new/metadata 2022-09-12 18:01:30.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: rspec-support
version: !ruby/object:Gem::Version
- version: 3.11.0
+ version: 3.11.1
platform: ruby
authors:
- David Chelimsky
@@ -10,7 +10,7 @@
- Sam Phippen
- Xaviery Shay
- Bradley Schaefer
-autorequire:
+autorequire:
bindir: bin
cert_chain:
- |
@@ -48,7 +48,7 @@
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
F3MdtaDehhjC
-----END CERTIFICATE-----
-date: 2022-02-09 00:00:00.000000000 Z
+date: 2022-09-12 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: rake
@@ -125,11 +125,11 @@
- MIT
metadata:
bug_tracker_uri: https://github.com/rspec/rspec-support/issues
- changelog_uri:
https://github.com/rspec/rspec-support/blob/v3.11.0/Changelog.md
+ changelog_uri:
https://github.com/rspec/rspec-support/blob/v3.11.1/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
-post_install_message:
+post_install_message:
rdoc_options:
- "--charset=UTF-8"
require_paths:
@@ -145,8 +145,8 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.3.3
-signing_key:
+rubygems_version: 3.1.6
+signing_key:
specification_version: 4
-summary: rspec-support-3.11.0
+summary: rspec-support-3.11.1
test_files: []
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata.gz.sig new/metadata.gz.sig
--- old/metadata.gz.sig 2022-02-09 12:10:21.000000000 +0100
+++ new/metadata.gz.sig 2022-09-12 18:01:30.000000000 +0200
@@ -1,8 +1 @@
-???\?
-Ii??T???~
?gE?J???k??u??J_???z&??k?@sw?g-??=?J?<????5yv5?? s?
????2(??v?
-?[t![??????*]???*????K??8pU?Y???FI????e???B??2????????bpI??;Q???&
h5??p?B35???3?????g{N??.=?S??gX?=?&iQcQ?u?????1M????f??????4????j??q)??D(?3?pl?O??2w
-i??*?ql'
-???g7???;z??
-????????f???&???!??Z?{??&?nt??????7?2?w??j??_?5?/??????x
m?47??K*>?T;?0t????`E??-=2?.?=<??Y-P?Q??8???e??{???:FC??'?|UU40?w#.
???:G%?n?)?#?X??????Y-5NSpZ-&???dz??
-C???2?PH?
-&????? ??t??0??z?Z:%?????
\ No newline at end of file
+fHp?-????e<??8?iv?s?????]??????N-s???vK?w???9Dm
??????? ?&oB??k??x?`???"?`???? ?h???5??`?~????$v? ~????bG?,?=?d^?
?j?x{Cm???g>????>~?????w?yV??:???R?S?????\?9O?S?x3?T?v??
Lg?????=???V??????ql;l?Z?????B???WH ?{?w=65?2??6?a[E??Q??l
??K???-*2?,?>B???6?@%|?3?z?????G??#t?T???x?s??fEU
?#t?"Z??z?m)lxj?(??????
?????F??W"???i0$??#6i?YK????o.?f??D'w???????[????Z??\???????b(K?J???\?;S?E??`0V?}???"?!????N?s?d????*~?|QK??Q?sU$?*??%x???Y5zK?2????rrF??j?Qj?v???6?????MEo???
\ No newline at end of file