fix(deps): bump pillow to 12.3.0 and setuptools to 83.0.0#186
Merged
Conversation
The pip-audit "Dependency check" step gates the Unit tests job and had started failing on fresh OSV-DB entries: - pillow 12.2.0 -> PYSEC-2026-2255/2256/2257 (fixed 12.3.0) - setuptools 82.0.1 -> PYSEC-2026-3447 (fixed 83.0.0) Both fixes are installable conda-forge builds, so relock to the patched versions instead of ignoring the findings. pillow is a direct, security-pinned dependency; bump its floor to >=12.3.0 to match the repo's CVE-annotated convention. setuptools is transitive, cleared by the lock refresh. pixi run audit-deps now reports "No known vulnerabilities found". Assisted-With: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #186 +/- ##
=====================================
Coverage 2.29% 2.29%
=====================================
Files 4 4
Lines 131 131
=====================================
Hits 3 3
Misses 128 128 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
The
Dependency checkstep (pixi run audit-deps→pip-audit --local -s osv) gates the Unit tests job and was failing on fresh OSV database entries, turning green PRs red with no code change. Most recently it blocked the pre-commit autoupdate PR #185:pillow 12.2.0→ PYSEC-2026-2255 / 2256 / 2257 (fixed in 12.3.0)setuptools 82.0.1→ PYSEC-2026-3447 (fixed in 83.0.0) — appeared in OSV after [pre-commit.ci] pre-commit autoupdate #185's runFix
Both are installable conda-forge builds, so this relocks to the patched versions (the real remedy) rather than ignoring the findings:
>=12.2.0→>=12.3.0, matching the repo's CVE-annotated floor convention.Diff is surgical: only
pillowandsetuptoolschange inpixi.lock; no workflow changes.Verification
🤖 Generated with Claude Code