Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-webauthn for openSUSE:Factory 
checked in at 2025-02-03 21:44:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-webauthn (Old)
 and      /work/SRC/openSUSE:Factory/.python-webauthn.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-webauthn"

Mon Feb  3 21:44:42 2025 rev:6 rq:1242322 version:2.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-webauthn/python-webauthn.changes  
2025-01-20 17:16:43.839522411 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-webauthn.new.2316/python-webauthn.changes    
    2025-02-03 21:46:07.196944064 +0100
@@ -1,0 +2,6 @@
+Sun Feb  2 06:36:35 UTC 2025 - Bernhard Wiedemann <[email protected]>
+
+- Update to 2.5.1
+  * Fix test_verify_attestation_android_key_hardware_authority
+
+-------------------------------------------------------------------

Old:
----
  webauthn-2.5.0.tar.gz

New:
----
  webauthn-2.5.1.tar.gz

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

Other differences:
------------------
++++++ python-webauthn.spec ++++++
--- /var/tmp/diff_new_pack.9ZotCq/_old  2025-02-03 21:46:07.728966114 +0100
+++ /var/tmp/diff_new_pack.9ZotCq/_new  2025-02-03 21:46:07.728966114 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-webauthn
-Version:        2.5.0
+Version:        2.5.1
 Release:        0
 Summary:        Pythonic WebAuthn
 License:        BSD-3-Clause

++++++ webauthn-2.5.0.tar.gz -> webauthn-2.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webauthn-2.5.0/PKG-INFO new/webauthn-2.5.1/PKG-INFO
--- old/webauthn-2.5.0/PKG-INFO 2025-01-17 00:22:17.990845400 +0100
+++ new/webauthn-2.5.1/PKG-INFO 2025-02-02 06:30:40.454656100 +0100
@@ -1,9 +1,9 @@
 Metadata-Version: 2.2
 Name: webauthn
-Version: 2.5.0
+Version: 2.5.1
 Summary: Pythonic WebAuthn
 Home-page: https://github.com/duo-labs/py_webauthn
-Download-URL: https://github.com/duo-labs/py_webauthn/archive/2.5.0.tar.gz
+Download-URL: https://github.com/duo-labs/py_webauthn/archive/2.5.1.tar.gz
 Author: Duo Labs
 Author-email: [email protected]
 License: BSD
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/webauthn-2.5.0/tests/test_verify_registration_response_android_key.py 
new/webauthn-2.5.1/tests/test_verify_registration_response_android_key.py
--- old/webauthn-2.5.0/tests/test_verify_registration_response_android_key.py   
2025-01-17 00:22:10.000000000 +0100
+++ new/webauthn-2.5.1/tests/test_verify_registration_response_android_key.py   
2025-02-02 06:30:33.000000000 +0100
@@ -1,4 +1,5 @@
 from unittest import TestCase
+from unittest.mock import MagicMock, patch
 
 from webauthn.helpers import base64url_to_bytes
 from webauthn.helpers.structs import AttestationFormat
@@ -6,7 +7,13 @@
 
 
 class TestVerifyRegistrationResponseAndroidKey(TestCase):
-    def test_verify_attestation_android_key_hardware_authority(self):
+    @patch("OpenSSL.crypto.X509StoreContext.verify_certificate")
+    def test_verify_attestation_android_key_hardware_authority(
+        self, mock_verify_certificate: MagicMock
+    ):
+        # Mocked because these certs actually expired and started failing this 
test
+        mock_verify_certificate.return_value = True
+
         """
         This android-key attestation was generated on a Pixel 8a in January 
2025 via an origin
         trial. Google will be sunsetting android-safetynet attestation for 
android-key attestations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webauthn-2.5.0/webauthn/__init__.py 
new/webauthn-2.5.1/webauthn/__init__.py
--- old/webauthn-2.5.0/webauthn/__init__.py     2025-01-17 00:22:10.000000000 
+0100
+++ new/webauthn-2.5.1/webauthn/__init__.py     2025-02-02 06:30:33.000000000 
+0100
@@ -8,7 +8,7 @@
 )
 from .helpers import base64url_to_bytes, options_to_json
 
-__version__ = "2.5.0"
+__version__ = "2.5.1"
 
 __all__ = [
     "generate_registration_options",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webauthn-2.5.0/webauthn.egg-info/PKG-INFO 
new/webauthn-2.5.1/webauthn.egg-info/PKG-INFO
--- old/webauthn-2.5.0/webauthn.egg-info/PKG-INFO       2025-01-17 
00:22:17.000000000 +0100
+++ new/webauthn-2.5.1/webauthn.egg-info/PKG-INFO       2025-02-02 
06:30:40.000000000 +0100
@@ -1,9 +1,9 @@
 Metadata-Version: 2.2
 Name: webauthn
-Version: 2.5.0
+Version: 2.5.1
 Summary: Pythonic WebAuthn
 Home-page: https://github.com/duo-labs/py_webauthn
-Download-URL: https://github.com/duo-labs/py_webauthn/archive/2.5.0.tar.gz
+Download-URL: https://github.com/duo-labs/py_webauthn/archive/2.5.1.tar.gz
 Author: Duo Labs
 Author-email: [email protected]
 License: BSD

Reply via email to