SHA256
1
0
forked from pool/python-PyJWT

12 Commits

Author SHA256 Message Date
e1c10a4658 Accepting request 1313822 from devel:languages:python
- Remove not needed update-alternatives requirement.

OBS-URL: https://build.opensuse.org/request/show/1313822
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyJWT?expand=0&rev=37
2025-10-28 13:45:13 +00:00
7f1a1221bc - Remove not needed update-alternatives requirement.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=83
2025-10-27 11:09:10 +00:00
9d8f7f990b Accepting request 1267105 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1267105
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyJWT?expand=0&rev=36
2025-04-11 14:45:29 +00:00
3843f3179d - Just use a wildcard for the dist-info metadata to make it
properly work on all setuptools versions.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=81
2025-04-04 10:51:07 +00:00
e9d9d273f5 - Wrap the metadata directory name in a distro-based conditional
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=80
2025-04-01 12:53:05 +00:00
22f88a4154 - Lowercase metadata directory name.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=79
2025-03-25 04:35:15 +00:00
e89bfdb525 Accepting request 1227953 from devel:languages:python
- Update to version 2.10.1 (bsc#1234038, CVE-2024-53861):
  * Prevent partial matching of iss claim. Thanks @fabianbadoi!
    (See: GHSA-75c5-xw7c-p5pm)

OBS-URL: https://build.opensuse.org/request/show/1227953
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyJWT?expand=0&rev=35
2024-12-03 19:45:59 +00:00
baf0742359 - Update to version 2.10.1 (bsc#1234038, CVE-2024-53861):
* Prevent partial matching of iss claim. Thanks @fabianbadoi!
    (See: GHSA-75c5-xw7c-p5pm)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=77
2024-12-03 09:44:15 +00:00
7b0c40a3cd Accepting request 1225415 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1225415
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyJWT?expand=0&rev=34
2024-11-21 14:13:33 +00:00
890027283b - Update to version 2.10.0
* chore: use sequence for typing rather than list
  * Add support for Python 3.13
  * [pre-commit.ci] pre-commit autoupdate
  * Add an RTD config file to resolve RTD build failures
  * docs: Update iat exception docs
  * Remove algorithm requirement for JWT API
  * [pre-commit.ci] pre-commit autoupdate
  * Create SECURITY.md
  * docs fix: decode_complete scope and algorithms
  * fix doctest for docs/usage.rst
  * fix test_utils.py not to xfail
  * Correct jwt.decode audience param doc expression
  * Add PS256 encoding and decoding usage
  * Add API docs for PyJWK
  * Refactor project configuration files from setup.cfg to pyproject.toml PEP-518
  * Add JWK support to JWT encode
  * Update pre-commit hooks to lint pyproject.toml
  * Add EdDSA algorithm encoding/decoding usage
  * Ruff linter and formatter changes
  * Validate sub and jti claims for the token
  * Add ES256 usage
  * Encode EC keys with a fixed bit length
  * [pre-commit.ci] pre-commit autoupdate
  * Drop support for Python 3.8
  * Prepare 2.10.0 release
  * Bump codecov/codecov-action from 4 to 5
  * [pre-commit.ci] pre-commit autoupdate

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=75
2024-11-20 22:52:08 +00:00
42636c5864 Accepting request 1206126 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1206126
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyJWT?expand=0&rev=33
2024-10-08 15:22:54 +00:00
1baf6dc509 - Fix requirements
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=73
2024-10-07 14:42:42 +00:00
4 changed files with 73 additions and 13 deletions

BIN
pyjwt-2.10.1.tar.gz LFS Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -1,3 +1,68 @@
-------------------------------------------------------------------
Mon Oct 27 11:07:51 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
- Remove not needed update-alternatives requirement.
-------------------------------------------------------------------
Thu Apr 3 19:47:31 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>
- Just use a wildcard for the dist-info metadata to make it
properly work on all setuptools versions.
-------------------------------------------------------------------
Tue Apr 1 12:52:41 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Wrap the metadata directory name in a distro-based conditional
-------------------------------------------------------------------
Tue Mar 25 04:34:47 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Lowercase metadata directory name.
-------------------------------------------------------------------
Tue Dec 3 09:42:44 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
- Update to version 2.10.1 (bsc#1234038, CVE-2024-53861):
* Prevent partial matching of iss claim. Thanks @fabianbadoi!
(See: GHSA-75c5-xw7c-p5pm)
-------------------------------------------------------------------
Wed Nov 20 07:59:12 UTC 2024 - Adrian Schröter <adrian@suse.de>
- Update to version 2.10.0
* chore: use sequence for typing rather than list
* Add support for Python 3.13
* [pre-commit.ci] pre-commit autoupdate
* Add an RTD config file to resolve RTD build failures
* docs: Update iat exception docs
* Remove algorithm requirement for JWT API
* [pre-commit.ci] pre-commit autoupdate
* Create SECURITY.md
* docs fix: decode_complete scope and algorithms
* fix doctest for docs/usage.rst
* fix test_utils.py not to xfail
* Correct jwt.decode audience param doc expression
* Add PS256 encoding and decoding usage
* Add API docs for PyJWK
* Refactor project configuration files from setup.cfg to pyproject.toml PEP-518
* Add JWK support to JWT encode
* Update pre-commit hooks to lint pyproject.toml
* Add EdDSA algorithm encoding/decoding usage
* Ruff linter and formatter changes
* Validate sub and jti claims for the token
* Add ES256 usage
* Encode EC keys with a fixed bit length
* [pre-commit.ci] pre-commit autoupdate
* Drop support for Python 3.8
* Prepare 2.10.0 release
* Bump codecov/codecov-action from 4 to 5
* [pre-commit.ci] pre-commit autoupdate
-------------------------------------------------------------------
Mon Oct 7 13:53:47 UTC 2024 - Benjamin Greiner <code@bnavigator.de>
- Fix requirements
-------------------------------------------------------------------
Tue Aug 13 07:09:23 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-PyJWT
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,27 +16,22 @@
#
%global skip_python2 1
%{?sle15_python_module_pythons}
Name: python-PyJWT
Version: 2.9.0
Version: 2.10.1
Release: 0
Summary: JSON Web Token implementation in Python
License: MIT
Group: Development/Languages/Python
URL: https://github.com/progrium/pyjwt
Source: https://files.pythonhosted.org/packages/source/p/pyjwt/pyjwt-%{version}.tar.gz
BuildRequires: %{python_module cryptography >= 3.3.1}
BuildRequires: %{python_module cryptography >= 3.4}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module typing-extensions}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-cryptography >= 3.3.1
Requires: python-typing-extensions
Requires(post): update-alternatives
Requires(postun): update-alternatives
Recommends: python-cryptography >= 3.4
BuildArch: noarch
%python_subpackages
@@ -66,6 +61,6 @@ donttest+=" or test_ec_to_jwk_with_invalid_curve"
%license LICENSE
%doc AUTHORS.rst CHANGELOG.rst README.rst
%{python_sitelib}/jwt
%{python_sitelib}/PyJWT-%{version}*-info
%{python_sitelib}/*-%{version}.dist-info
%changelog