Skip to content

Commit 69209fd

Browse files
authored
[Authlib] Update to 1.7.2 (#16069)
1 parent 1cb63c8 commit 69209fd

4 files changed

Lines changed: 4 additions & 1 deletion

File tree

stubs/Authlib/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version = "1.7.1"
1+
version = "1.7.2"
22
upstream-repository = "https://github.com/authlib/authlib"
33
dependencies = ["cryptography"]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
def is_valid_language_tag(tag: object) -> bool: ...

stubs/Authlib/authlib/oauth2/rfc8414/models.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ class AuthorizationServerMetadata(dict[str, object]):
3838
def __getattr__(self, key): ...
3939

4040
def validate_array_value(metadata, key) -> None: ...
41+
def validate_language_tags_array(metadata, key) -> None: ...
4142
def validate_boolean_value(metadata, key) -> None: ...

stubs/Authlib/authlib/oidc/core/claims.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class HybridIDToken(ImplicitIDToken):
2929
class UserInfo(dict[str, object]):
3030
REGISTERED_CLAIMS: list[str]
3131
SCOPES_CLAIMS_MAPPING: dict[str, list[str]]
32+
def validate_locale(self) -> None: ...
3233
def filter(self, scope: str) -> UserInfo: ...
3334
def __getattr__(self, key): ...
3435

0 commit comments

Comments
 (0)