From 21e12c72555cdfd78a6baafa37f6f8d0d15dfd0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Sun, 28 Sep 2025 02:13:15 +0300 Subject: [PATCH 01/34] Added annotation for five functions in Authlib --- .../authlib/integrations/base_client/async_app.pyi | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index c684655f946c..c12173dde07e 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -1,3 +1,4 @@ +from typing import Any from logging import Logger from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base @@ -8,11 +9,11 @@ __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): async def request(self, method, url, token=None, **kwargs): ... - async def create_authorization_url(self, redirect_uri=None, **kwargs): ... - async def fetch_access_token(self, request_token=None, **kwargs): ... + async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... + async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): - async def load_server_metadata(self): ... + async def load_server_metadata(self) -> dict[str, Any]: ... async def request(self, method, url, token=None, **kwargs): ... - async def create_authorization_url(self, redirect_uri=None, **kwargs): ... - async def fetch_access_token(self, redirect_uri=None, **kwargs): ... + async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... From 84bcf4f6110813fa912955725f4caaf1395308d8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 27 Sep 2025 23:20:44 +0000 Subject: [PATCH 02/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/Authlib/authlib/integrations/base_client/async_app.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index c12173dde07e..98b90a6cd24c 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -1,5 +1,5 @@ -from typing import Any from logging import Logger +from typing import Any from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base From 57fa61cfe02baecd882728333333a9fa972b4f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Mon, 29 Sep 2025 03:46:45 +0300 Subject: [PATCH 03/34] Added annotation for remaining two functions --- .../Authlib/authlib/integrations/base_client/async_app.pyi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 98b90a6cd24c..abaf235072e1 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -1,6 +1,7 @@ -from logging import Logger from typing import Any +from logging import Logger +import requests from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base log: Logger @@ -8,12 +9,12 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request(self, method, url, token=None, **kwargs): ... + async def request(self, method: str, url: str, token: dict[str, Any] | None =None, **kwargs) -> requests.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request(self, method, url, token=None, **kwargs): ... + async def request(self, method: str, url: str, token: dict[str, Any] | None =None, **kwargs) -> requests.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... From 514d619bf50b8b31c08035a630d6c12820de9cc9 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 00:48:47 +0000 Subject: [PATCH 04/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- .../Authlib/authlib/integrations/base_client/async_app.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index abaf235072e1..0f512f75b053 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -1,5 +1,5 @@ -from typing import Any from logging import Logger +from typing import Any import requests from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base @@ -9,12 +9,12 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request(self, method: str, url: str, token: dict[str, Any] | None =None, **kwargs) -> requests.Response: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request(self, method: str, url: str, token: dict[str, Any] | None =None, **kwargs) -> requests.Response: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... From c17df4496c24905497fedc2ba804862f67a45c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Mon, 29 Sep 2025 23:41:51 +0300 Subject: [PATCH 05/34] Added "type: ignore[import-untyped]" to pass mypytest --- stubs/Authlib/authlib/integrations/base_client/async_app.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 0f512f75b053..fde387c2c82c 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -1,7 +1,7 @@ from logging import Logger from typing import Any -import requests +import requests # type: ignore[import-untyped] from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base log: Logger @@ -17,4 +17,4 @@ class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... \ No newline at end of file From 8addbd31f71aaa5350f80e299556f068654c344c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 20:44:35 +0000 Subject: [PATCH 06/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/Authlib/authlib/integrations/base_client/async_app.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index fde387c2c82c..45ca3363cfef 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -17,4 +17,4 @@ class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... \ No newline at end of file + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... From 8af2d45a8553499819d0231e3bc15a9e96afcb2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Tue, 30 Sep 2025 21:24:40 +0300 Subject: [PATCH 07/34] Changed library for requests from requests to authx --- .../authlib/integrations/base_client/async_app.pyi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 45ca3363cfef..cfda0f0e130a 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -1,7 +1,7 @@ from logging import Logger from typing import Any -import requests # type: ignore[import-untyped] +import httpx from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base log: Logger @@ -9,12 +9,12 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... \ No newline at end of file From 42348ad74a8f1229b48f7410606af8fe18f52a81 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 18:27:21 +0000 Subject: [PATCH 08/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/Authlib/authlib/integrations/base_client/async_app.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index cfda0f0e130a..84a3ddd6fde8 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -17,4 +17,4 @@ class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... \ No newline at end of file + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... From a36b99d44c22207b83b82d65a795c1b6b6704230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Tue, 30 Sep 2025 21:34:27 +0300 Subject: [PATCH 09/34] Added authx library to dependencies --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index e5f5788ee39c..1c142f229072 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography"] +requires = ["cryptography", "types-httpx"] partial_stub = true From fe8f5f095c224876bff56c3a725a4e42e9085fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Tue, 30 Sep 2025 21:41:28 +0300 Subject: [PATCH 10/34] Added authx library to dependencies --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 1c142f229072..341ab5c5d750 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" requires = ["cryptography", "types-httpx"] -partial_stub = true +partial_stub = true \ No newline at end of file From 9f0ed4ed5d397c9962c57bcfa6ac29704b6cddce Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 18:44:38 +0000 Subject: [PATCH 11/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 341ab5c5d750..1c142f229072 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" requires = ["cryptography", "types-httpx"] -partial_stub = true \ No newline at end of file +partial_stub = true From 736414c92334bd50f93fa05c7e0207579792447d Mon Sep 17 00:00:00 2001 From: Spider84pr Date: Tue, 30 Sep 2025 23:42:32 +0300 Subject: [PATCH 12/34] Update stubs/Authlib/authlib/integrations/base_client/async_app.pyi Co-authored-by: sobolevn --- stubs/Authlib/authlib/integrations/base_client/async_app.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 84a3ddd6fde8..dbe3814f286d 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -18,3 +18,4 @@ class AsyncOAuth2Mixin(OAuth2Base): async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... + From 210f1f52eedf1368efb4dafbd974bf2265d0be38 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 20:44:21 +0000 Subject: [PATCH 13/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/Authlib/authlib/integrations/base_client/async_app.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index dbe3814f286d..84a3ddd6fde8 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -18,4 +18,3 @@ class AsyncOAuth2Mixin(OAuth2Base): async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - From 6e406b43c1fe8ed8491b868d5190c5da90a03101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Tue, 30 Sep 2025 23:56:42 +0300 Subject: [PATCH 14/34] Added authx library to dependencies --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 1c142f229072..ebe63d4dd66b 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography", "types-httpx"] +requires = ["cryptography", "httpx", "types-httpx"] partial_stub = true From ce035d245d8026312d24be6742195150a4e17b02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Wed, 1 Oct 2025 00:28:36 +0300 Subject: [PATCH 15/34] Added annotations to kwargs for all functions --- .../authlib/integrations/base_client/async_app.pyi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 84a3ddd6fde8..0d89889c45b6 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -9,12 +9,12 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... - async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> dict[str, Any]: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ... + async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... + async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ... - async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... - async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ... + async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... From dd1416f2256ec323bc4005e6eea347fc35cc9f7a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 21:30:39 +0000 Subject: [PATCH 16/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- .../authlib/integrations/base_client/async_app.pyi | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 0d89889c45b6..a80b2eea1643 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -9,12 +9,18 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ... + async def request( + self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any] + ) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... - async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... + async def fetch_access_token( + self, request_token: dict[str, Any] | None = None, **kwargs: dict[str, Any] + ) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ... + async def request( + self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any] + ) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... From e368db31cd6d2045dad65fecb0a2370553272d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Wed, 1 Oct 2025 03:47:26 +0300 Subject: [PATCH 17/34] Fixed annotations to kwargs for all functions --- .../integrations/base_client/async_app.pyi | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 0d89889c45b6..6700be28c06e 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -9,12 +9,18 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ... - async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... - async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... + async def request( + self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any + ) -> httpx.Response: ... + async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ... + async def fetch_access_token( + self, request_token: dict[str, Any] | None = None, **kwargs: Any + ) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ... - async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... - async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ... + async def request( + self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any + ) -> httpx.Response: ... + async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ... + async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ... From c50be52dd6653050f9757a91af822a4791c8cace Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 00:50:56 +0000 Subject: [PATCH 18/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- .../authlib/integrations/base_client/async_app.pyi | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi index 6700be28c06e..efb43dd5bbb7 100644 --- a/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +++ b/stubs/Authlib/authlib/integrations/base_client/async_app.pyi @@ -9,18 +9,12 @@ log: Logger __all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"] class AsyncOAuth1Mixin(OAuth1Base): - async def request( - self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any - ) -> httpx.Response: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ... - async def fetch_access_token( - self, request_token: dict[str, Any] | None = None, **kwargs: Any - ) -> dict[str, Any]: ... + async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs: Any) -> dict[str, Any]: ... class AsyncOAuth2Mixin(OAuth2Base): async def load_server_metadata(self) -> dict[str, Any]: ... - async def request( - self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any - ) -> httpx.Response: ... + async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any) -> httpx.Response: ... async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ... async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ... From 65acd6cba7ce47104807427f401db80451c2c22a Mon Sep 17 00:00:00 2001 From: sobolevn Date: Wed, 1 Oct 2025 08:37:14 +0300 Subject: [PATCH 19/34] Update stubs/Authlib/METADATA.toml --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index ebe63d4dd66b..a730e399d1c4 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography", "httpx", "types-httpx"] +requires = ["cryptography", "httpx"] partial_stub = true From 4b771bf37eec9d478ad23f13f9d678821bd5139d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Thu, 2 Oct 2025 23:59:34 +0300 Subject: [PATCH 20/34] Trying to fix stubtest. Remove httpx entry from entries from stubs/Authlib/@tests/stubtest_allowlist.txt --- stubs/Authlib/@tests/.#stubtest_allowlist.txt | 1 + 1 file changed, 1 insertion(+) create mode 120000 stubs/Authlib/@tests/.#stubtest_allowlist.txt diff --git a/stubs/Authlib/@tests/.#stubtest_allowlist.txt b/stubs/Authlib/@tests/.#stubtest_allowlist.txt new file mode 120000 index 000000000000..7445af8f3c75 --- /dev/null +++ b/stubs/Authlib/@tests/.#stubtest_allowlist.txt @@ -0,0 +1 @@ +a@host-191.67543 \ No newline at end of file From c2469c08856b7b34feb4965215860f3dc4b980bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 00:19:19 +0300 Subject: [PATCH 21/34] Revert "Update stubs/Authlib/METADATA.toml" This reverts commit 65acd6cba7ce47104807427f401db80451c2c22a. --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index a730e399d1c4..ebe63d4dd66b 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography", "httpx"] +requires = ["cryptography", "httpx", "types-httpx"] partial_stub = true From 405cb7e48e29cc1f7eee4dd2bb0be0b0ff6095fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 00:29:46 +0300 Subject: [PATCH 22/34] Trying to fix stubtest. add entry in METADATA.toml --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index ebe63d4dd66b..5bc609fd9a21 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" requires = ["cryptography", "httpx", "types-httpx"] -partial_stub = true +partial_stub = true From c1b465baddc1be600798eea7a5f63d605a823f95 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 2 Oct 2025 21:32:14 +0000 Subject: [PATCH 23/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 5bc609fd9a21..ebe63d4dd66b 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" requires = ["cryptography", "httpx", "types-httpx"] -partial_stub = true +partial_stub = true From 3280a42fde6330493ad0496b91a1239dee6f4c8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 00:46:43 +0300 Subject: [PATCH 24/34] added back @tests/.#stubtest_allowlist.txt --- stubs/Authlib/@tests/.#stubtest_allowlist.txt | 1 - 1 file changed, 1 deletion(-) delete mode 120000 stubs/Authlib/@tests/.#stubtest_allowlist.txt diff --git a/stubs/Authlib/@tests/.#stubtest_allowlist.txt b/stubs/Authlib/@tests/.#stubtest_allowlist.txt deleted file mode 120000 index 7445af8f3c75..000000000000 --- a/stubs/Authlib/@tests/.#stubtest_allowlist.txt +++ /dev/null @@ -1 +0,0 @@ -a@host-191.67543 \ No newline at end of file From 51db573fc6504ec201a3610dba8b2f32ab10fd83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 00:48:46 +0300 Subject: [PATCH 25/34] Trying to fix stubtest. add entry in METADATA.toml --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 5bc609fd9a21..ebe63d4dd66b 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" requires = ["cryptography", "httpx", "types-httpx"] -partial_stub = true +partial_stub = true From 8b1a45de26f5bdc339aa30c8b03acc458ca444c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 00:49:54 +0300 Subject: [PATCH 26/34] Trying to fix stubtest. add entry in METADATA.toml --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index ebe63d4dd66b..a730e399d1c4 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography", "httpx", "types-httpx"] +requires = ["cryptography", "httpx"] partial_stub = true From 4428ef8679de6bfafb877e0626cbcdbfea72711d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 02:04:25 +0300 Subject: [PATCH 27/34] Trying to fix stubtest. add entry in requirements-tests.txt --- requirements-tests.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements-tests.txt b/requirements-tests.txt index 293e12c6fa21..57e20342d1f0 100644 --- a/requirements-tests.txt +++ b/requirements-tests.txt @@ -23,3 +23,5 @@ uv==0.8.6 # Utilities for typeshed infrastructure scripts. ts_utils @ file:lib + +cryptography>=3.2 \ No newline at end of file From 94e23c45ff6e36fe194af2622522cc21a40af753 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 2 Oct 2025 23:06:34 +0000 Subject: [PATCH 28/34] [pre-commit.ci] auto fixes from pre-commit.com hooks --- requirements-tests.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-tests.txt b/requirements-tests.txt index 57e20342d1f0..ee1a1645ef82 100644 --- a/requirements-tests.txt +++ b/requirements-tests.txt @@ -24,4 +24,4 @@ uv==0.8.6 # Utilities for typeshed infrastructure scripts. ts_utils @ file:lib -cryptography>=3.2 \ No newline at end of file +cryptography>=3.2 From 3665c2bd3bb62a787bc4b9540d78e94b663fa671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 02:20:09 +0300 Subject: [PATCH 29/34] Trying to fix stubtest. Corrected METADATA.toml --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index a730e399d1c4..82512d9832df 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography", "httpx"] +requires = ["cryptography", "types-cryptography", "httpx"] partial_stub = true From ebaf5aed55a3200ee307cfdbfe879444b0ce7784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 02:21:31 +0300 Subject: [PATCH 30/34] Trying to fix stubtest. Corrected METADATA.toml --- stubs/Authlib/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Authlib/METADATA.toml b/stubs/Authlib/METADATA.toml index 82512d9832df..a730e399d1c4 100644 --- a/stubs/Authlib/METADATA.toml +++ b/stubs/Authlib/METADATA.toml @@ -1,4 +1,4 @@ version = "~= 1.6.4" upstream_repository = "https://github.com/lepture/authlib" -requires = ["cryptography", "types-cryptography", "httpx"] +requires = ["cryptography", "httpx"] partial_stub = true From 2ce89399f25cf3f4a76d69e801b1cfa35198550c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Fri, 3 Oct 2025 02:31:41 +0300 Subject: [PATCH 31/34] Trying to fix stubtest. remove my changes in requirements-tests.txt --- requirements-tests.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/requirements-tests.txt b/requirements-tests.txt index ee1a1645ef82..293e12c6fa21 100644 --- a/requirements-tests.txt +++ b/requirements-tests.txt @@ -23,5 +23,3 @@ uv==0.8.6 # Utilities for typeshed infrastructure scripts. ts_utils @ file:lib - -cryptography>=3.2 From 99a15db87e2ee2afeb16375b1c9bb85c13590133 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Sun, 5 Oct 2025 02:01:21 +0300 Subject: [PATCH 32/34] Added entries from stubs/Authlib/@tests/stubtest_allowlist.txt --- stubs/Authlib/@tests/stubtest_allowlist.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stubs/Authlib/@tests/stubtest_allowlist.txt b/stubs/Authlib/@tests/stubtest_allowlist.txt index 8f5458773f6c..864878e5b1e3 100644 --- a/stubs/Authlib/@tests/stubtest_allowlist.txt +++ b/stubs/Authlib/@tests/stubtest_allowlist.txt @@ -1,5 +1,11 @@ # TODO: check these entries authlib.jose.drafts._jwe_enc_cryptodome +authlib.jose.JsonWebSignature.MAX_CONTENT_LENGTH +authlib.oauth2.rfc7591.endpoint.ClientRegistrationEndpoint.generate_client_secret +authlib.integrations.httpx_client.assertion_client +authlib.integrations.httpx_client.oauth1_client +authlib.integrations.httpx_client.oauth2_client +authlib.integrations.httpx_client.utils # Are set to `None` by default, initialized later: authlib.jose.drafts._jwe_algorithms.ECDH1PUAlgorithm.description From 7b83007876479e895320c0469d22261fa7b3069b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B2=D1=87=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Sun, 5 Oct 2025 02:12:32 +0300 Subject: [PATCH 33/34] Added TODO comment stubs/Authlib/@tests/stubtest_allowlist.txt --- stubs/Authlib/@tests/stubtest_allowlist.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/Authlib/@tests/stubtest_allowlist.txt b/stubs/Authlib/@tests/stubtest_allowlist.txt index 864878e5b1e3..4b1e011fc274 100644 --- a/stubs/Authlib/@tests/stubtest_allowlist.txt +++ b/stubs/Authlib/@tests/stubtest_allowlist.txt @@ -1,6 +1,7 @@ # TODO: check these entries authlib.jose.drafts._jwe_enc_cryptodome authlib.jose.JsonWebSignature.MAX_CONTENT_LENGTH +# TODO: fix failing tests with following entries authlib.oauth2.rfc7591.endpoint.ClientRegistrationEndpoint.generate_client_secret authlib.integrations.httpx_client.assertion_client authlib.integrations.httpx_client.oauth1_client From 5060bd8d1427ad798ec1c9e89b2903e076cd2797 Mon Sep 17 00:00:00 2001 From: Spider84pr Date: Sun, 5 Oct 2025 16:13:35 +0300 Subject: [PATCH 34/34] Update stubs/Authlib/@tests/stubtest_allowlist.txt Co-authored-by: sobolevn --- stubs/Authlib/@tests/stubtest_allowlist.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/stubs/Authlib/@tests/stubtest_allowlist.txt b/stubs/Authlib/@tests/stubtest_allowlist.txt index 4b1e011fc274..cb8cffd5a656 100644 --- a/stubs/Authlib/@tests/stubtest_allowlist.txt +++ b/stubs/Authlib/@tests/stubtest_allowlist.txt @@ -1,8 +1,5 @@ # TODO: check these entries authlib.jose.drafts._jwe_enc_cryptodome -authlib.jose.JsonWebSignature.MAX_CONTENT_LENGTH -# TODO: fix failing tests with following entries -authlib.oauth2.rfc7591.endpoint.ClientRegistrationEndpoint.generate_client_secret authlib.integrations.httpx_client.assertion_client authlib.integrations.httpx_client.oauth1_client authlib.integrations.httpx_client.oauth2_client