Bump zxcvbn to 4.5.* (#13521)

This commit is contained in:
sobolevn
2025-02-22 23:18:33 +03:00
committed by GitHub
parent 844e4f7ee3
commit adba4359d0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
version = "4.4.*"
version = "4.5.*"
upstream_repository = "https://github.com/dwolfhub/zxcvbn-python"
+1 -1
View File
@@ -15,4 +15,4 @@ class _Result(_TimeEstimate, TypedDict):
calc_time: datetime.timedelta
feedback: _Feedback
def zxcvbn(password: str, user_inputs: Iterable[object] | None = None) -> _Result: ...
def zxcvbn(password: str, user_inputs: Iterable[object] | None = None, max_length: int = 72) -> _Result: ...