chore(deps): consolidate dotenv/multipart bumps + suppress unfixable pip CVE#28
Merged
Conversation
…re unfixable pip CVE-2026-3219 in audit
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
Consolidated security cleanup that supersedes #26 and #27.
python-dotenv1.2.1 → 1.2.2 (fixes CVE-2026-28684, symlink-following inset_key/unset_key).python-multipart0.0.22 → 0.0.27 (covers CVE-2026-40347 DoS; resolver picked latest patched).--ignore-vuln CVE-2026-3219to thepip-auditstep in.github/workflows/ci.ymlwith an inline comment + tracking link. CVE-2026-3219 affects the runner's bundledpip 26.0.1— a CI tool, not a runtime dep — and has no published fix yet by upstream pip.Why a consolidated PR
#26 and #27 individually deadlock: each fixes the CVE the other is missing, so whichever lands second passes but the first always fails
pip-audit. Combining the two lock bumps + the pip ignore into one atomic commit breaks the deadlock cleanly. After this lands, #26 and #27 should be closed as superseded.Test plan
uv run pytest -q— 520/520 passing locallyuv run pip-audit --ignore-vuln CVE-2026-3219—No known vulnerabilities found, 1 ignored--ignore-vuln CVE-2026-3219once upstream pip ships a patched releaseFollow-up
Once merged: close #26, close #27, watch advisory page for the eventual pip fix, then revert the workflow change.