Hello community,

here is the log from the commit of package rubygem-mixlib-authentication for 
openSUSE:Factory checked in at 2020-10-26 16:13:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-mixlib-authentication (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-mixlib-authentication.new.3463 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-mixlib-authentication"

Mon Oct 26 16:13:47 2020 rev:11 rq:838050 version:3.0.7

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-mixlib-authentication/rubygem-mixlib-authentication.changes
      2020-03-07 21:38:51.324297140 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mixlib-authentication.new.3463/rubygem-mixlib-authentication.changes
    2020-10-26 16:15:01.742866201 +0100
@@ -1,0 +2,6 @@
+Fri Sep 25 14:18:01 UTC 2020 - Stephan Kulow <[email protected]>
+
+updated to version 3.0.7
+  no changelog found
+
+-------------------------------------------------------------------

Old:
----
  mixlib-authentication-3.0.6.gem

New:
----
  mixlib-authentication-3.0.7.gem

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

Other differences:
------------------
++++++ rubygem-mixlib-authentication.spec ++++++
--- /var/tmp/diff_new_pack.M270sg/_old  2020-10-26 16:15:03.538867854 +0100
+++ /var/tmp/diff_new_pack.M270sg/_new  2020-10-26 16:15:03.542867857 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-mixlib-authentication
-Version:        3.0.6
+Version:        3.0.7
 Release:        0
 %define mod_name mixlib-authentication
 %define mod_full_name %{mod_name}-%{version}

++++++ mixlib-authentication-3.0.6.gem -> mixlib-authentication-3.0.7.gem ++++++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/authentication/digester.rb 
new/lib/mixlib/authentication/digester.rb
--- old/lib/mixlib/authentication/digester.rb   2019-12-30 02:51:15.000000000 
+0100
+++ new/lib/mixlib/authentication/digester.rb   2020-08-21 21:18:41.000000000 
+0200
@@ -17,7 +17,7 @@
 #
 
 require_relative "../authentication"
-require "openssl"
+require "openssl" unless defined?(OpenSSL)
 
 module Mixlib
   module Authentication
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/authentication/signatureverification.rb 
new/lib/mixlib/authentication/signatureverification.rb
--- old/lib/mixlib/authentication/signatureverification.rb      2019-12-30 
02:51:15.000000000 +0100
+++ new/lib/mixlib/authentication/signatureverification.rb      2020-08-21 
21:18:42.000000000 +0200
@@ -17,8 +17,8 @@
 # limitations under the License.
 #
 
-require "net/http"
-require "forwardable"
+require "net/http" unless defined?(Net::HTTP)
+require "forwardable" unless defined?(Forwardable)
 require_relative "../authentication"
 require_relative "http_authentication_request"
 require_relative "signedheaderauth"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/authentication/signedheaderauth.rb 
new/lib/mixlib/authentication/signedheaderauth.rb
--- old/lib/mixlib/authentication/signedheaderauth.rb   2019-12-30 
02:51:15.000000000 +0100
+++ new/lib/mixlib/authentication/signedheaderauth.rb   2020-08-21 
21:18:42.000000000 +0200
@@ -17,8 +17,8 @@
 # limitations under the License.
 #
 
-require "time"
-require "base64"
+require "time" unless defined?(Time)
+require "base64" unless defined?(Base64)
 require "openssl/digest"
 require_relative "../authentication"
 require_relative "digester"
@@ -306,7 +306,7 @@
       def do_sign_ssh_agent(rsa_key, string_to_sign)
         # First try loading net-ssh as it is an optional dependency.
         begin
-          require "net/ssh"
+          require "net/ssh" unless defined?(Net::SSH)
         rescue LoadError => e
           # ???: Since agent mode is explicitly enabled, should we even catch
           # this in the first place? Might be cleaner to let the LoadError 
bubble.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/authentication/version.rb 
new/lib/mixlib/authentication/version.rb
--- old/lib/mixlib/authentication/version.rb    2019-12-30 02:51:15.000000000 
+0100
+++ new/lib/mixlib/authentication/version.rb    2020-08-21 21:18:42.000000000 
+0200
@@ -16,6 +16,6 @@
 
 module Mixlib
   module Authentication
-    VERSION = "3.0.6".freeze
+    VERSION = "3.0.7".freeze
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2019-12-30 02:51:15.000000000 +0100
+++ new/metadata        2020-08-21 21:18:41.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: mixlib-authentication
 version: !ruby/object:Gem::Version
-  version: 3.0.6
+  version: 3.0.7
 platform: ruby
 authors:
 - Chef Software, Inc.
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2019-12-30 00:00:00.000000000 Z
+date: 2020-08-21 00:00:00.000000000 Z
 dependencies: []
 description: Mixes in simple per-request authentication
 email: [email protected]


Reply via email to