From 6a2093d0700c0e9c99e8eea04b9b588fd73a5294 Mon Sep 17 00:00:00 2001 From: Adrian Immer <62163284+TheTrueAI@users.noreply.github.com> Date: Thu, 21 May 2026 14:13:22 +0200 Subject: [PATCH] chore(auth): Update version of pyjwt Previous version contained vulnerability: https://github.com/jpadilla/pyjwt/security/advisories/GHSA-752w-5fwx-jx9f --- src/auth/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/pyproject.toml b/src/auth/pyproject.toml index 8c76de5b..c435e05d 100644 --- a/src/auth/pyproject.toml +++ b/src/auth/pyproject.toml @@ -19,7 +19,7 @@ requires-python = ">=3.9" dependencies = [ "httpx[http2] >=0.26,<0.29", "pydantic >=1.10,<3", - "pyjwt[crypto] >=2.10.1", + "pyjwt[crypto] >=2.12.0", ] [project.urls]