fix: patch Python CVEs in backend, frontend, and evaluation#286
Merged
Conversation
Fixes the following CVEs by bumping minimum version constraints: - aiohttp: 3.13.4 -> 3.14.0 (CVE-2026-34993, CVE-2026-47265) - pyarrow: 19/20/21.x -> 23.0.1+ (PYSEC-2026-113) - pygments: 2.19.2 -> 2.20.0 (CVE-2026-4539) - PyJWT: 2.12.1 -> 2.13.0 (PYSEC-2026-175/177/178/179) - starlette: 0.46/0.50.x -> 1.2.1 (PYSEC-2026-161, CVE-2025-54121, CVE-2025-62727) - fastapi: 0.115.14 -> 0.136.3 (frontend, to pull in starlette 1.x) aiohttp and pyarrow are added as explicit constraints to force transitive dependency updates. torch 2.9.0 (PYSEC-2026-139) has no upstream fix available yet. https://claude.ai/code/session_01GeF1r9TL34WDNuRp3ny8iR
luarss
added a commit
to luarss/ORAssistant
that referenced
this pull request
Jun 6, 2026
…ROAD-Project#286) fix: patch Python CVEs in all pyproject.toml and uv.lock files Fixes the following CVEs by bumping minimum version constraints: - aiohttp: 3.13.4 -> 3.14.0 (CVE-2026-34993, CVE-2026-47265) - pyarrow: 19/20/21.x -> 23.0.1+ (PYSEC-2026-113) - pygments: 2.19.2 -> 2.20.0 (CVE-2026-4539) - PyJWT: 2.12.1 -> 2.13.0 (PYSEC-2026-175/177/178/179) - starlette: 0.46/0.50.x -> 1.2.1 (PYSEC-2026-161, CVE-2025-54121, CVE-2025-62727) - fastapi: 0.115.14 -> 0.136.3 (frontend, to pull in starlette 1.x) aiohttp and pyarrow are added as explicit constraints to force transitive dependency updates. torch 2.9.0 (PYSEC-2026-139) has no upstream fix available yet. https://claude.ai/code/session_01GeF1r9TL34WDNuRp3ny8iR Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Jack Luar <jluar@precisioninno.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes known Python CVEs by bumping minimum version constraints in
pyproject.tomlfiles and regeneratinguv.lockfiles across all three subprojects.aiohttppyarrowpygmentsPyJWTstarlettefastapi(frontend)aiohttpandpyarrowwere transitive dependencies, so they are added as explicit lower-bound constraints to force the safe versions.Not fixed:
torch 2.9.0(PYSEC-2026-139) — no upstream fix version is available yet.Test plan
uv lockresolves without errors in each subprojectcd backend && uv run pytestpip-auditagainst updated lock files to confirm no remaining CVEs (except torch)https://claude.ai/code/session_01GeF1r9TL34WDNuRp3ny8iR
Generated by Claude Code