forked from pool/python-webauthn
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
289d976f50 | ||
15204dd0b2 | |||
|
b3fcadc948 | ||
cabeb1da6e | |||
|
22bfe7e123 | ||
322f150b07 | |||
|
7792481c0d | ||
5f89c5ab5f |
@ -1,3 +1,42 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 2 06:36:35 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.5.1
|
||||||
|
* Fix test_verify_attestation_android_key_hardware_authority
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 20 10:52:18 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.5.0
|
||||||
|
* A new `require_user_presence` argument has been added to `verify_registration_response()`
|
||||||
|
to enable verification of WebAuthn responses generated through use of conditional create
|
||||||
|
where the `up` bit in `authData.flags` will be `False` (#236)
|
||||||
|
* `verify_authentication_response()` has been updated to return `user_verified` as well to
|
||||||
|
indicate whether or not the user performed user verification (#235)
|
||||||
|
* Verification of `"android-key"` attestation statements has been modernized in light of
|
||||||
|
Android's latest observable behavior (#240)
|
||||||
|
* Verification of `"android-safetynet"` attestation statements now enforces the `"basicIntegrity"`
|
||||||
|
flag instead of the `"ctsProfileMatch"` flag when determining device integrity (#241)
|
||||||
|
* The list of known TPM manufacturers has been updated (#242)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 7 09:34:40 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.4.0
|
||||||
|
* An optional `hints` argument has been added to `generate_registration_options()`
|
||||||
|
to specify one or more categories of authenticators for the browser to prioritize
|
||||||
|
registration of. See `webauthn.helpers.structs.PublicKeyCredentialHint` for more
|
||||||
|
information (#234)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 23 16:39:23 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 2.3.0:
|
||||||
|
* The minimum supported version of Python has been bumped up to
|
||||||
|
Python 3.9, with ongoing testing from Python 3.9 through
|
||||||
|
Python 3.13. Dependencies have been updated as well,
|
||||||
|
including upgrading to `cryptography==43.0.3`
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 29 07:01:01 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sat Jun 29 07:01:01 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-webauthn
|
# spec file for package python-webauthn
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-webauthn
|
Name: python-webauthn
|
||||||
Version: 2.2.0
|
Version: 2.5.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Pythonic WebAuthn
|
Summary: Pythonic WebAuthn
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -31,14 +31,14 @@ BuildRequires: python-rpm-macros
|
|||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module asn1crypto >= 1.4.0}
|
BuildRequires: %{python_module asn1crypto >= 1.4.0}
|
||||||
BuildRequires: %{python_module cbor2 >= 5.4.6}
|
BuildRequires: %{python_module cbor2 >= 5.4.6}
|
||||||
BuildRequires: %{python_module cryptography >= 41.0.7}
|
BuildRequires: %{python_module cryptography >= 43.0.3}
|
||||||
BuildRequires: %{python_module pyOpenSSL >= 23.3.0}
|
BuildRequires: %{python_module pyOpenSSL >= 23.3.0}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
Requires: python-asn1crypto >= 1.4.0
|
Requires: python-asn1crypto >= 1.4.0
|
||||||
Requires: python-cbor2 >= 5.4.6
|
Requires: python-cbor2 >= 5.4.6
|
||||||
Requires: python-cryptography >= 41.0.7
|
Requires: python-cryptography >= 43.0.3
|
||||||
Requires: python-pyOpenSSL >= 23.3.0
|
Requires: python-pyOpenSSL >= 23.3.0
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:70e4f318d293125e3a8609838be0561119f4f8846bc430d524f8da4052ee18cc
|
|
||||||
size 113978
|
|
3
webauthn-2.5.1.tar.gz
Normal file
3
webauthn-2.5.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f1b7447bae1056e110a9e71ff287f639d05d4d14589911d75fea255c3a03aff0
|
||||||
|
size 122656
|
Loading…
x
Reference in New Issue
Block a user