chore: bump pillow and python-multipart for CVEs, add SECURITY.md#564
Merged
johnnygreco merged 1 commit intomainfrom Apr 20, 2026
Merged
chore: bump pillow and python-multipart for CVEs, add SECURITY.md#564johnnygreco merged 1 commit intomainfrom
johnnygreco merged 1 commit intomainfrom
Conversation
- pillow 12.1.1 -> 12.2.0 fixes CVE-2026-40192 (FITS GZIP decompression bomb) - python-multipart 0.0.22 -> 0.0.26 via workspace constraint (transitive via mcp) - add NVIDIA SECURITY.md disclosure policy
Contributor
Greptile SummaryThis PR bumps Pillow from
|
| Filename | Overview |
|---|---|
| packages/data-designer-config/pyproject.toml | Pillow floor bumped from >=12.1.1 to >=12.2.0 with inline CVE comment; change is correct and consistent with the lockfile update. |
| pyproject.toml | python-multipart>=0.0.26 added to workspace constraint-dependencies alongside the existing aiohttp and cryptography entries; comment is slightly less specific (no CVE number) compared to sibling entries but not a bug. |
| uv.lock | Lockfile updated to reflect Pillow 12.2.0 wheels/hashes and the new python-multipart constraint; no inconsistencies observed. |
| SECURITY.md | New NVIDIA PSIRT disclosure policy file; content and contact details match standard NVIDIA security policy; top-level heading uses ## (H2) rather than # (H1), which is atypical but likely matches the intended NVIDIA template. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[uv workspace root\npyproject.toml] -->|constraint-dependencies| B[python-multipart >= 0.0.26]
A -->|constraint-dependencies| C[aiohttp >= 3.13.5]
A -->|constraint-dependencies| D[cryptography >= 46.0.7]
E[packages/data-designer-config\npyproject.toml] -->|direct dependency| F[pillow >= 12.2.0, < 13\nfixes CVE-2026-40192]
B -->|resolves transitive dep via| G[mcp]
F -->|updated in| H[uv.lock\nPillow 12.2.0 wheels + hashes\npython-multipart constraint]
Reviews (1): Last reviewed commit: "chore: bump pillow and python-multipart ..." | Re-trigger Greptile
nabinchha
approved these changes
Apr 20, 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.
Summary
12.1.1→12.2.0to fix CVE-2026-40192 (unbounded GZIP decompression inFitsGzipDecoder.decode()— DoS via decompression bomb). Direct dep ofdata-designer-config; floor bumped in itspyproject.toml.python-multipart0.0.22→0.0.26via a new entry in the workspace[tool.uv].constraint-dependenciesblock (transitive dep viamcp).SECURITY.mdoutlining the vulnerability disclosure process (PSIRT email, submission form).