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
31 changes: 21 additions & 10 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,21 +146,32 @@ ignore = ["B008", "UP045"]
# accepted by fastapi's starlette range (uv resolves cleanly). Remove once
# fastapi's own pin moves past 1.3.1.
#
# pip: PYSEC-2026-196 (fixed in 26.1.2). Present only because pip-audit
# (our dev-time scanner) pulls pip in to resolve deps, then --strict audits
# pip itself. Advisory landed ~2026-06 and turned the scan red even though
# no code changed. Dev/CI surface only — pip isn't shipped in the app
# image. Remove once pip-audit's own pin clears 26.1.2.
# pip: PYSEC-2026-196 (fixed in 26.1.2) then PYSEC-2026-3721 (fixed in
# 26.2). Present only because pip-audit (our dev-time scanner) pulls pip
# in to resolve deps, then --strict audits pip itself. Advisories landed
# ~2026-06 and turned the scan red even though no code changed. Dev/CI
# surface only — pip isn't shipped in the app image. Remove once
# pip-audit's own pin clears 26.2.
constraint-dependencies = [
"authlib>=1.7.1",
"urllib3>=2.7.0",
"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",
"pip>=26.2",
# click: PYSEC-2026-2132 (fixed in 8.3.3). Transitive via uvicorn.
# Advisory landed ~2026-08 and turned the strict scan red though no
# code changed. Remove once uvicorn's own click pin clears 8.3.3.
"click>=8.3.3",
# cryptography: GHSA-537c-gmf6-5ccf (fixed in 48.0.1) then three more
# in 2026-W34 — PYSEC-2026-3552 (fix 50.0.0) + PYSEC-2026-3553/3554
# (fix 49.0.0). The minimum that clears all four is 50.0.0.
# Transitive via clerk-backend-api / authlib / joserfc.
# NOTE: clerk-backend-api 6.0.1 caps cryptography at <49.0.0, so
# bumping past 49 forces clerk-backend-api 6 -> 7 (a MAJOR bump of
# our auth SDK). Verified safe: the full backend suite (699 tests)
# passes under clerk-backend-api 7.0.0 + cryptography 50.0.0.
# Remove this constraint once a direct dep's own pin clears 50.0.0.
"cryptography>=50.0.0",
# 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