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-07-29 21:31:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-bootsnap (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-bootsnap.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-bootsnap"

Thu Jul 29 21:31:56 2021 rev:12 rq:909125 version:1.7.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-bootsnap/rubygem-bootsnap.changes        
2021-05-15 01:24:55.934867983 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-bootsnap.new.1899/rubygem-bootsnap.changes  
    2021-07-29 21:33:03.044690770 +0200
@@ -1,0 +2,8 @@
+Thu Jul 29 08:40:13 UTC 2021 - Manuel Schnitzer <[email protected]>
+
+- updated to version 1.7.6
+
+  * Fix reliance on `set` to be required.
+  * Fix `Encoding::UndefinedConversionError` error for Rails applications when 
precompiling cache. (#364)
+
+-------------------------------------------------------------------

Old:
----
  bootsnap-1.7.5.gem

New:
----
  bootsnap-1.7.6.gem

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

Other differences:
------------------
++++++ rubygem-bootsnap.spec ++++++
--- /var/tmp/diff_new_pack.jWiWSO/_old  2021-07-29 21:33:03.376690362 +0200
+++ /var/tmp/diff_new_pack.jWiWSO/_new  2021-07-29 21:33:03.384690351 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-bootsnap
-Version:        1.7.5
+Version:        1.7.6
 Release:        0
 %define mod_name bootsnap
 %define mod_full_name %{mod_name}-%{version}

++++++ bootsnap-1.7.5.gem -> bootsnap-1.7.6.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2021-05-04 11:38:38.000000000 +0200
+++ new/CHANGELOG.md    2021-07-26 19:30:39.000000000 +0200
@@ -1,5 +1,8 @@
 # Unreleased
 
+* Fix reliance on `set` to be required.
+* Fix `Encoding::UndefinedConversionError` error for Rails applications when 
precompiling cache. (#364)
+
 # 1.7.5
 
 * Handle a regression of Ruby 2.7.3 causing Bootsnap to call the deprecated 
`untaint` method. (#360)
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/cli/worker_pool.rb 
new/lib/bootsnap/cli/worker_pool.rb
--- old/lib/bootsnap/cli/worker_pool.rb 2021-05-04 11:38:38.000000000 +0200
+++ new/lib/bootsnap/cli/worker_pool.rb 2021-07-26 19:30:39.000000000 +0200
@@ -37,7 +37,11 @@
 
         def initialize(jobs)
           @jobs = jobs
-          @pipe_out, @to_io = IO.pipe
+          @pipe_out, @to_io = IO.pipe(binmode: true)
+          # Set the writer encoding to binary since IO.pipe only sets it for 
the reader.
+          # https://github.com/rails/rails/issues/16514#issuecomment-52313290
+          @to_io.set_encoding(Encoding::BINARY)
+
           @pid = nil
         end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/bootsnap/load_path_cache/change_observer.rb 
new/lib/bootsnap/load_path_cache/change_observer.rb
--- old/lib/bootsnap/load_path_cache/change_observer.rb 2021-05-04 
11:38:38.000000000 +0200
+++ new/lib/bootsnap/load_path_cache/change_observer.rb 2021-07-26 
19:30:39.000000000 +0200
@@ -15,11 +15,13 @@
           @lpc_observer.push_paths(self, *entries.map(&:to_s))
           super
         end
+        alias_method :append, :push
 
         def unshift(*entries)
           @lpc_observer.unshift_paths(self, *entries.map(&:to_s))
           super
         end
+        alias_method :prepend, :unshift
 
         def concat(entries)
           @lpc_observer.push_paths(self, *entries.map(&:to_s))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/bootsnap/load_path_cache/loaded_features_index.rb 
new/lib/bootsnap/load_path_cache/loaded_features_index.rb
--- old/lib/bootsnap/load_path_cache/loaded_features_index.rb   2021-05-04 
11:38:38.000000000 +0200
+++ new/lib/bootsnap/load_path_cache/loaded_features_index.rb   2021-07-26 
19:30:39.000000000 +0200
@@ -58,9 +58,9 @@
       end
 
       def purge_multi(features)
-        rejected_hashes = features.map(&:hash).to_set
+        rejected_hashes = features.each_with_object({}) { |f, h| h[f.hash] = 
true }
         @mutex.synchronize do
-          @lfi.reject! { |_, hash| rejected_hashes.include?(hash) }
+          @lfi.reject! { |_, hash| rejected_hashes.key?(hash) }
         end
       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-05-04 11:38:38.000000000 +0200
+++ new/lib/bootsnap/version.rb 2021-07-26 19:30:39.000000000 +0200
@@ -1,4 +1,4 @@
 # frozen_string_literal: true
 module Bootsnap
-  VERSION = "1.7.5"
+  VERSION = "1.7.6"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2021-05-04 11:38:38.000000000 +0200
+++ new/metadata        2021-07-26 19:30:39.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: bootsnap
 version: !ruby/object:Gem::Version
-  version: 1.7.5
+  version: 1.7.6
 platform: ruby
 authors:
 - Burke Libbey
 autorequire: 
 bindir: exe
 cert_chain: []
-date: 2021-05-04 00:00:00.000000000 Z
+date: 2021-07-26 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: bundler
@@ -153,7 +153,7 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubygems_version: 3.0.3
+rubygems_version: 3.2.20
 signing_key: 
 specification_version: 4
 summary: Boot large ruby/rails apps faster

Reply via email to