fix(security): bump sidecar pip 26.1.2 → 26.2 (PYSEC-2026-3721) - #191
Open
raymondginger2018-sudo wants to merge 1 commit into
Open
fix(security): bump sidecar pip 26.1.2 → 26.2 (PYSEC-2026-3721)#191raymondginger2018-sudo wants to merge 1 commit into
raymondginger2018-sudo wants to merge 1 commit into
Conversation
Security CI's 'Audit locked App Server environment' step fails on every branch because the sidecar lock pins pip==26.1.2, which PYSEC-2026-3721 (healchecks pip < 26.2) now flags. pip publishes no wheels-only constraint here, so bump the universal lock entry to the fixed 26.2 release.
This was referenced Aug 23, 2026
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.
Problem
Security CI's
Audit locked App Server environmentstep now fails on every branch (and will also fail onmain's next scheduled run), regardless of PR content:desktop/sidecar-requirements.lockpinspip==26.1.2, and a new PyPI advisory (PYSEC-2026-3721, published after the last green Security CI run on 2026-08-19) flags everything below pip 26.2. The audit builds the sidecar venv from this lock (npm run setup:sidecar), so the pinned vulnerable pip is exactly whatpip-auditscans.Fix
One-line bump of the universal lock entry:
pip==26.1.2→pip==26.2(the advisory's listed fix version). pip is a direct entry insidecar-requirements.inand carries no transitive pins in this lock, so the manual bump is equivalent to re-compiling.Verification
Reproduced locally against the lock with the same
pip-audit==2.10.1the workflow installs:Found 1 known vulnerability in 1 package(pip 26.1.2 / PYSEC-2026-3721), exit 1This should immediately un-red the Security CI on all open PR branches once merged (branches will need the fix via merge/rebase).