fix(deps): pin pip>=26.1 for CVE-2026-3219#234
Merged
ian-flores merged 1 commit intomainfrom Apr 30, 2026
Merged
Conversation
statik
approved these changes
Apr 30, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Pins a minimum pip version to address CVE-2026-3219 and unblock the repo’s pip-audit CI job by ensuring the resolved/locked pip is non-vulnerable.
Changes:
- Add
pip>=26.1topyproject.tomldependencies (with CVE note). - Update
uv.lockto resolvepipto26.1and reflect the new dependency in the editableposit-vipmetadata.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Adds a pip>=26.1 floor to address CVE-2026-3219. |
| uv.lock | Updates the locked pip artifact to 26.1 and updates editable package metadata accordingly. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "requests>=2.33.0", # transitive via pytest-playwright; pinned to track updates | ||
| "pygments>=2.20.0", # CVE-2026-4539 fix | ||
| "python-multipart>=0.0.26", # CVE-2026-40347 fix; transitive via shiny | ||
| "pip>=26.1", # CVE-2026-3219 fix; transitive via pip-api |
|
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
pip>=26.1in[project].dependenciesto resolve CVE-2026-3219 (medium-severity tar/zip archive confusion in pip).pyproject.toml(e.g.pygments>=2.20.0 # CVE-2026-4539 fix,python-multipart>=0.0.26 # CVE-2026-40347 fix).uv.lockto bump pip 26.0.1 → 26.1 (only entry touched).Why
The
Dependency AuditCI job runspip-audit --skip-editableand was failing on every PR because the lockedpip 26.0.1is vulnerable to CVE-2026-3219. The fix landed upstream in pypa/pip#13870 and shipped in pip 26.1. Pinning the floor unblocks the audit on this branch and on every other open PR (#229, #230, #231, #232, #233).Test plan
uv lockresolves topip 26.1uv run pip-audit --skip-editablereportsNo known vulnerabilities found