Hello community,
here is the log from the commit of package rubygem-openid_connect for
openSUSE:Factory checked in at 2020-10-05 19:32:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-openid_connect (Old)
and /work/SRC/openSUSE:Factory/.rubygem-openid_connect.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-openid_connect"
Mon Oct 5 19:32:36 2020 rev:5 rq:838061 version:1.2.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-openid_connect/rubygem-openid_connect.changes
2019-08-06 15:10:14.483778362 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-openid_connect.new.4249/rubygem-openid_connect.changes
2020-10-05 19:32:39.489083466 +0200
@@ -1,0 +2,6 @@
+Fri Sep 25 14:30:16 UTC 2020 - Stephan Kulow <[email protected]>
+
+updated to version 1.2.0
+ no changelog found
+
+-------------------------------------------------------------------
Old:
----
openid_connect-1.1.8.gem
New:
----
openid_connect-1.2.0.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-openid_connect.spec ++++++
--- /var/tmp/diff_new_pack.rIJ0CH/_old 2020-10-05 19:32:40.189086418 +0200
+++ /var/tmp/diff_new_pack.rIJ0CH/_new 2020-10-05 19:32:40.193086435 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-openid_connect
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
#
Name: rubygem-openid_connect
-Version: 1.1.8
+Version: 1.2.0
Release: 0
%define mod_name openid_connect
%define mod_full_name %{mod_name}-%{version}
@@ -32,7 +32,7 @@
BuildRequires: %{rubygem gem2rpm}
BuildRequires: %{ruby}
BuildRequires: ruby-macros >= 5
-Url: https://github.com/nov/openid_connect
+URL: https://github.com/nov/openid_connect
Source: https://rubygems.org/gems/%{mod_full_name}.gem
Source1: gem2rpm.yml
Summary: OpenID Connect Server & Client Library
++++++ openid_connect-1.1.8.gem -> openid_connect-1.2.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2019-06-27 11:36:56.000000000 +0200
+++ new/VERSION 2020-05-14 12:46:27.000000000 +0200
@@ -1 +1 @@
-1.1.8
\ No newline at end of file
+1.2.0
\ No newline at end of file
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/lib/openid_connect/discovery/provider/config/resource.rb
new/lib/openid_connect/discovery/provider/config/resource.rb
--- old/lib/openid_connect/discovery/provider/config/resource.rb
2019-06-27 11:36:56.000000000 +0200
+++ new/lib/openid_connect/discovery/provider/config/resource.rb
2020-05-14 12:46:27.000000000 +0200
@@ -1,3 +1,5 @@
+require "openssl"
+
module OpenIDConnect
module Discovery
module Provider
@@ -27,8 +29,8 @@
end
def cache_key
- md5 = Digest::MD5.hexdigest host
- "swd:resource:opneid-conf:#{md5}"
+ sha256 = OpenSSL::Digest::SHA256.hexdigest host
+ "swd:resource:opneid-conf:#{sha256}"
end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/openid_connect/response_object/id_token.rb
new/lib/openid_connect/response_object/id_token.rb
--- old/lib/openid_connect/response_object/id_token.rb 2019-06-27
11:36:56.000000000 +0200
+++ new/lib/openid_connect/response_object/id_token.rb 2020-05-14
12:46:27.000000000 +0200
@@ -8,7 +8,7 @@
class InvalidAudience < InvalidToken; end
attr_required :iss, :sub, :aud, :exp, :iat
- attr_optional :acr, :amr, :azp, :jti, :sid, :auth_time, :nonce,
:sub_jwk, :at_hash, :c_hash, :s_hash, :events
+ attr_optional :acr, :amr, :azp, :jti, :sid, :auth_time, :nonce,
:sub_jwk, :at_hash, :c_hash, :s_hash
attr_accessor :access_token, :code, :state
alias_method :subject, :sub
alias_method :subject=, :sub=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2019-06-27 11:36:56.000000000 +0200
+++ new/metadata 2020-05-14 12:46:27.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: openid_connect
version: !ruby/object:Gem::Version
- version: 1.1.8
+ version: 1.2.0
platform: ruby
authors:
- nov matake
autorequire:
bindir: bin
cert_chain: []
-date: 2019-06-27 00:00:00.000000000 Z
+date: 2020-05-14 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: tzinfo
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spec/openid_connect/response_object/id_token_spec.rb
new/spec/openid_connect/response_object/id_token_spec.rb
--- old/spec/openid_connect/response_object/id_token_spec.rb 2019-06-27
11:36:56.000000000 +0200
+++ new/spec/openid_connect/response_object/id_token_spec.rb 2020-05-14
12:46:27.000000000 +0200
@@ -19,7 +19,7 @@
describe 'attributes' do
subject { klass }
its(:required_attributes) { should == [:iss, :sub, :aud, :exp, :iat] }
- its(:optional_attributes) { should == [:acr, :amr, :azp, :jti, :sid,
:auth_time, :nonce, :sub_jwk, :at_hash, :c_hash, :s_hash, :events] }
+ its(:optional_attributes) { should == [:acr, :amr, :azp, :jti, :sid,
:auth_time, :nonce, :sub_jwk, :at_hash, :c_hash, :s_hash] }
describe 'auth_time' do
subject { id_token.auth_time }