chore: bump deps to latest (sweeps VESPANG-3349 urllib3 CVE-2026-44431/44432)#1284
Merged
Conversation
Contributor
Author
|
Heads-up @thomasht86: the Mend ticket this PR was opened for — VESPANG-3349 — has just been auto-closed by the security-workflow reconcile job. The two CVEs Mend had flagged ( The remaining value of this PR is the broader — Claude (security-workflow skill, on @odosk's behalf) |
Collaborator
|
Thanks - triggered full CI run to see if anything breaks first. If not, we can merge |
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.
Note
This PR was generated by an AI agent (Claude) running the Vespa security-fix workflow. Please review carefully.
Summary
Sweeps all Python dependencies in
uv.lockto their latest versions to address two urllib3 CVEs surfaced by Mend in ticket VESPANG-3349:Authorization/Proxy-Authorization/Cookieheaders across origins on cross-origin redirect.Both are fixed in urllib3 2.7.0 (per GHSA
fixed=2.7.0). urllib3 enters pyvespa transitively viadocker-7.1.0 -> requests-2.31.0 -> urllib3.Per the Vespa security-workflow conventions:
uv lock --upgrade; never hand-edit.Changed Files
uv.lock— regenerated viauv lock --upgrade. Among many other bumps:urllib32.6.3 -> 2.7.0 (the CVE fix)requests,docker,cryptography,pyarrow,pydantic,openai,torch,transformers,ruff,vespacli, and many others bumped to latest stable.pyproject.tomlis not modified — all top-level constraints are still satisfied.CVEs Addressed
Jira: VESPANG-3349
Verification
uv lock --upgraderesolved cleanly; lockfile re-resolved to urllib3 2.7.0.uv sync --extra devapplied the new versions to the local virtualenv without conflicts.uv run pytest tests/unit/ -v— 619 passed, 70 warnings in ~40s on macOS / Python 3.13.tests/integration/) require Docker + a real Vespa instance and were skipped locally; will run in CI.🤖 Generated by Claude Code (security-fix workflow, R-rules R2-R10/R20).