Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,21 @@ constraint-dependencies = [
"idna>=3.15",
"starlette>=1.3.1",
"pip>=26.1.2",
# cryptography: GHSA-537c-gmf6-5ccf (fixed in 48.0.1). Transitive via
# clerk-backend-api / authlib. Remove once a direct dep's own pin
# clears cryptography 48.0.1.
"cryptography>=48.0.1",
# cryptography: GHSA-537c-gmf6-5ccf (fixed in 48.0.1, already pinned).
# Plus PYSEC-2026-3552/3553/3554 — three advisories against 48.0.1
# (fixed in 49.0.0 / 50.0.0). Transitive via clerk-backend-api /
# authlib. Bump to >=50.0.0 to clear all three under pip-audit --strict.
# NOTE: this forces clerk-backend-api 6.0.1 -> 7.0.0 because clerk 6.x
# requires cryptography<49.0.0. clerk 7.0.0 is the first release that
# supports cryptography 50.x. Remove once a direct dep's own pin
# clears cryptography 50.0.0.
"cryptography>=50.0.0",
# click: PYSEC-2026-2132 (fixed in 8.3.3). Transitive via uvicorn /
# resend CLI entry points. Surfaced in the PyPA advisory DB after
# the last green deploy — pip-audit --strict started failing on it
# even though no code changed. Remove once a direct dep's own pin
# clears click 8.3.3.
"click>=8.3.3",
# joserfc: CVE-2026-48990 (fixed in 1.6.7). Transitive via
# clerk-backend-api. Remove once clerk's own pin clears 1.6.7.
"joserfc>=1.6.7",
Expand Down
Loading