Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-bootsnap for
openSUSE:Factory checked in at 2021-08-25 20:58:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-bootsnap (Old)
and /work/SRC/openSUSE:Factory/.rubygem-bootsnap.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-bootsnap"
Wed Aug 25 20:58:07 2021 rev:13 rq:914122 version:1.7.7
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-bootsnap/rubygem-bootsnap.changes
2021-07-29 21:33:03.044690770 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-bootsnap.new.1899/rubygem-bootsnap.changes
2021-08-25 20:59:38.377048440 +0200
@@ -1,0 +2,7 @@
+Wed Aug 25 05:06:34 UTC 2021 - Manuel Schnitzer <[email protected]>
+
+- updated to version 1.7.7
+
+ * Fix `require_relative` in evaled code on latest ruby 3.1.0-dev. (#366)
+
+-------------------------------------------------------------------
Old:
----
bootsnap-1.7.6.gem
New:
----
bootsnap-1.7.7.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-bootsnap.spec ++++++
--- /var/tmp/diff_new_pack.G4W0Ej/_old 2021-08-25 20:59:38.901047752 +0200
+++ /var/tmp/diff_new_pack.G4W0Ej/_new 2021-08-25 20:59:38.905047746 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-bootsnap
-Version: 1.7.6
+Version: 1.7.7
Release: 0
%define mod_name bootsnap
%define mod_full_name %{mod_name}-%{version}
++++++ bootsnap-1.7.6.gem -> bootsnap-1.7.7.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2021-07-26 19:30:39.000000000 +0200
+++ new/CHANGELOG.md 2021-08-02 12:15:53.000000000 +0200
@@ -1,5 +1,11 @@
# Unreleased
+# 1.7.7
+
+* Fix `require_relative` in evaled code on latest ruby 3.1.0-dev. (#366)
+
+# 1.7.6
+
* Fix reliance on `set` to be required.
* Fix `Encoding::UndefinedConversionError` error for Rails applications when
precompiling cache. (#364)
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb
new/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb
--- old/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb 2021-07-26
19:30:39.000000000 +0200
+++ new/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb 2021-08-02
12:15:53.000000000 +0200
@@ -47,8 +47,9 @@
alias_method(:require_relative_without_bootsnap, :require_relative)
def require_relative(path)
+ location = caller_locations(1..1).first
realpath = Bootsnap::LoadPathCache.realpath_cache.call(
- caller_locations(1..1).first.absolute_path, path
+ location.absolute_path || location.path, path
)
require(realpath)
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/bootsnap/version.rb new/lib/bootsnap/version.rb
--- old/lib/bootsnap/version.rb 2021-07-26 19:30:39.000000000 +0200
+++ new/lib/bootsnap/version.rb 2021-08-02 12:15:53.000000000 +0200
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Bootsnap
- VERSION = "1.7.6"
+ VERSION = "1.7.7"
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2021-07-26 19:30:39.000000000 +0200
+++ new/metadata 2021-08-02 12:15:53.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: bootsnap
version: !ruby/object:Gem::Version
- version: 1.7.6
+ version: 1.7.7
platform: ruby
authors:
- Burke Libbey
autorequire:
bindir: exe
cert_chain: []
-date: 2021-07-26 00:00:00.000000000 Z
+date: 2021-08-02 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: bundler