chore(deps): Bump pillow and mako for security advisories#46
Merged
Conversation
Resolves three open Dependabot alerts: - pillow 11.3.0 → 12.2.0 (GHSA — PSD OOB write, FITS GZIP decompression bomb) - mako 1.3.10 → 1.3.11 (GHSA — path traversal via double-slash in TemplateLookup) No pyproject.toml changes required — the existing constraints already permit these versions; only the lockfile moves. pip (26.0.1) has an open alert with no patched version available and is left as-is.
pip and wheel were declared as runtime deps but nothing in src/ imports them — they were installer-plumbing that ended up in the wrong list. Removing them unpins them in the lockfile, so any future pip security fix (e.g. Dependabot alert #35) will land via upstream upgrades without a version bump here. setuptools remains in [build-system].requires since it's used to build the package itself.
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
Resolves open Dependabot alerts and removes unused install-tool declarations from runtime deps.
Lockfile bumps (existing constraints already permit):
Dep cleanup:
pipandwheelfrom runtime dependencies — nothing insrc/imports them; they were install-tool plumbing in the wrong list. Unpinning them lets future upstream fixes (e.g. the open pip alert fix: Bump semgrep to v1.137.0 to fix CI pkg_resources error #35) flow in without pyproject churn.setuptoolsremains in[build-system].requiresfor building the package.Test plan