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 2023-11-15 21:06:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-support (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-support"
Wed Nov 15 21:06:53 2023 rev:20 rq:1126303 version:3.12.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-rspec-support/rubygem-rspec-support.changes
2022-12-04 14:58:03.896170220 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.17445/rubygem-rspec-support.changes
2023-11-15 21:07:19.697465198 +0100
@@ -1,0 +2,5 @@
+Tue Nov 14 15:33:56 UTC 2023 - Dan Äermák <[email protected]>
+
+- New upstream release 3.12.1, see bundled Changelog.md
+
+-------------------------------------------------------------------
Old:
----
rspec-support-3.12.0.gem
New:
----
rspec-support-3.12.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rspec-support.spec ++++++
--- /var/tmp/diff_new_pack.bsLZEt/_old 2023-11-15 21:07:22.057552275 +0100
+++ /var/tmp/diff_new_pack.bsLZEt/_new 2023-11-15 21:07:22.061552423 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-rspec-support
#
-# 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-support
-Version: 3.12.0
+Version: 3.12.1
Release: 0
%define mod_name rspec-support
%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}
@@ -38,7 +37,6 @@
Source1: gem2rpm.yml
Summary: Common code needed by the other RSpec gems
License: MIT
-Group: Development/Languages/Ruby
%description
Support utilities for RSpec gems.
++++++ rspec-support-3.12.0.gem -> rspec-support-3.12.1.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:19.000000000 +0200
+++ new/Changelog.md 2023-06-26 17:51:45.000000000 +0200
@@ -1,5 +1,13 @@
### Development
-[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.0...3-12-maintenance)
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...3-12-maintenance)
+
+### 3.12.1 / 2023-06-26
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.0...v3.12.1)
+
+Bug Fixes:
+
+* Fix `RSpec::Support.thread_local_data` to be Thread local but not Fiber
local.
+ (Jon Rowe, #581)
### 3.12.0 / 2022-10-26
[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.11.1...v3.12.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/spec/shell_out.rb
new/lib/rspec/support/spec/shell_out.rb
--- old/lib/rspec/support/spec/shell_out.rb 2022-10-26 21:13:19.000000000
+0200
+++ new/lib/rspec/support/spec/shell_out.rb 2023-06-26 17:51:45.000000000
+0200
@@ -77,6 +77,9 @@
# This is a JRuby 9.2.1.x error
%r{jruby/kernel/gem_prelude},
%r{lib/jruby\.jar!/jruby/preludes},
+ # Ignore some JRuby errors for gems
+ %r{jruby/\d\.\d(\.\d)?/gems/aruba},
+ %r{jruby/\d\.\d(\.\d)?/gems/ffi},
]
def strip_known_warnings(input)
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-10-26 21:13:19.000000000 +0200
+++ new/lib/rspec/support/version.rb 2023-06-26 17:51:45.000000000 +0200
@@ -1,7 +1,7 @@
module RSpec
module Support
module Version
- STRING = '3.12.0'
+ STRING = '3.12.1'
end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support.rb new/lib/rspec/support.rb
--- old/lib/rspec/support.rb 2022-10-26 21:13:19.000000000 +0200
+++ new/lib/rspec/support.rb 2023-06-26 17:51:45.000000000 +0200
@@ -89,8 +89,14 @@
end
# A single thread local variable so we don't excessively pollute that
namespace.
- def self.thread_local_data
- Thread.current[:__rspec] ||= {}
+ if RUBY_VERSION.to_f >= 2
+ def self.thread_local_data
+ Thread.current.thread_variable_get(:__rspec) ||
Thread.current.thread_variable_set(:__rspec, {})
+ end
+ else
+ def self.thread_local_data
+ Thread.current[:__rspec] ||= {}
+ end
end
# @api private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2022-10-26 21:13:19.000000000 +0200
+++ new/metadata 2023-06-26 17:51:45.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: rspec-support
version: !ruby/object:Gem::Version
- version: 3.12.0
+ version: 3.12.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-10-26 00:00:00.000000000 Z
+date: 2023-06-26 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.12.0/Changelog.md
+ changelog_uri:
https://github.com/rspec/rspec-support/blob/v3.12.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.1.6
-signing_key:
+rubygems_version: 3.4.1
+signing_key:
specification_version: 4
-summary: rspec-support-3.12.0
+summary: rspec-support-3.12.1
test_files: []
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ