From 4fc0fd82bd0cc43d73bad67fdee58ddfd3c46203 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Thu, 18 Sep 2025 19:26:40 +0200 Subject: [PATCH] [Authlib] Update to 1.6.4 (#14736) --- stubs/Authlib/METADATA.toml | 2 +- stubs/Authlib/authlib/jose/errors.pyi | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 23fef9b25..e5f5788ee 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ -version = "~= 1.6.2" +version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" requires = ["cryptography"] partial_stub = true diff --git a/stubs/Authlib/authlib/jose/errors.pyi b/stubs/Authlib/authlib/jose/errors.pyi index 4a44693b4..29c29a3a9 100644 --- a/stubs/Authlib/authlib/jose/errors.pyi +++ b/stubs/Authlib/authlib/jose/errors.pyi @@ -22,6 +22,10 @@ class InvalidHeaderParameterNameError(JoseError): error: str def __init__(self, name) -> None: ... +class InvalidCritHeaderParameterNameError(JoseError): + error: str + def __init__(self, name: str) -> None: ... + class InvalidEncryptionAlgorithmForECDH1PUWithKeyWrappingError(JoseError): error: str def __init__(self) -> None: ...