chore: bump cryptography and pillow for security fixes#364
Merged
johnnygreco merged 1 commit intomainfrom Mar 3, 2026
Merged
Conversation
Address security vulnerabilities flagged in dependency scan: - cryptography: transitive dep updated via lock file - pillow: lower bound bumped in pyproject.toml to 12.1.1
Contributor
Greptile SummaryThis PR is a routine security dependency bump that addresses vulnerabilities identified in the Feb 26, 2026 dependency scan — Pillow is bumped from 12.1.0 → 12.1.1 (patch in lock file, lower bound tightened in
|
| Filename | Overview |
|---|---|
| packages/data-designer-config/pyproject.toml | Pillow lower bound bumped from >=12.0.0 to >=12.1.1 to enforce the patched version; no other changes. |
| uv.lock | Lock file updated: cryptography 46.0.3 → 46.0.5 and Pillow 12.1.0 → 12.1.1, with revision bumped from 2 to 3; hashes look well-formed. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Feb 26 2026 Dependency Scan] --> B{Vulnerabilities found}
B --> C[Pillow 12.1.0\nCVE patched in 12.1.1]
B --> D[cryptography 46.0.3\nCVE patched in 46.0.5]
B --> E[pytest 9.0.2\nCVE-2025-71176 - no fix yet]
C --> F[pyproject.toml\npillow >=12.1.1]
C --> G[uv.lock\npillow 12.1.1]
D --> G
E --> H[Deferred - dev only\nlimited risk]
F --> I[PR #364 merged]
G --> I
Last reviewed commit: 016b257
andreatgretel
approved these changes
Mar 3, 2026
Contributor
andreatgretel
left a comment
There was a problem hiding this comment.
LGTM -- clean security bump for cryptography (46.0.3 → 46.0.5) and pillow (12.1.0 → 12.1.1). Only pyproject.toml lower bound change + lock file hash churn. No logic changes.
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
pyproject.toml)Addresses vulnerabilities flagged in the Feb 26, 2026 dependency scan.
Note: pytest 9.0.2 was also flagged (CVE-2025-71176, medium severity), but 9.0.2 is the latest release and no patched version is available yet. Since pytest is a dev-only dependency, the risk is limited to developer machines and CI.