Skip to content

Commit 7d7733b

Browse files
committed
chore: release 1.3.3
1 parent 3ddf29f commit 7d7733b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ Changelog
1212
.. module:: joserfc
1313
:noindex:
1414

15+
1.3.3
16+
-----
17+
18+
**Released on September 15, 2025**
19+
20+
- Reject ``crit`` header in unprotected headers.
21+
1522
1.3.2
1623
-----
1724

src/joserfc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.3.2"
1+
__version__ = "1.3.3"
22
__homepage__ = "https://jose.authlib.org/en/"
33
__author__ = "Hsiaoming Yang <me@lepture.com>"
44
__license__ = "BSD-3-Clause"

src/joserfc/_rfc7517/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class BaseKey(t.Generic[NativePrivateKey, NativePublicKey], metaclass=ABCMeta):
8282
value_registry: t.ClassVar[KeyParameterRegistryDict]
8383
param_registry: t.ClassVar[KeyParameterRegistryDict] = JWK_PARAMETER_REGISTRY
8484
operation_registry: t.ClassVar[KeyOperationRegistryDict] = JWK_OPERATION_REGISTRY
85-
thumbprint_digest_method: t.ClassVar[t.Literal["sha256", "sha384", "sha512"]] = "sha256"
85+
thumbprint_digest_method: t.Literal["sha256", "sha384", "sha512"] = "sha256"
8686

8787
def __init__(
8888
self,

0 commit comments

Comments
 (0)