Release: MFA, JWKS auth, run ownership, and dependency updates #79

Merged
TheFurya merged 36 commits from develop into main 2026-03-22 11:43:03 +01:00
Showing only changes of commit 94cc74c0fb - Show all commits

View File

@@ -71,7 +71,9 @@ def _verify_jwt(token: str) -> dict | None:
algorithms=["RS256"],
audience="authenticated",
)
except jwt.InvalidTokenError, PyJWKClientError:
except jwt.InvalidTokenError:
pass
except PyJWKClientError:
pass
return _verify_jwt_hs256(token)