Skip to content

Commit 5cc1ff1

Browse files
authored
fix: bump pillow to >=12.2.0 (CVE-2026-40192) (#6073)
# What does this PR do? Bump `pillow` to `>=12.2.0` in dependencies and provider registry to address CVE-2026-40192, [GHSA-whj4-6x5x-4v2j](GHSA-whj4-6x5x-4v2j) Only applies to `release-0.4.x`; `pillow` already pinned `>=12.2.0` on `main`. ## Test Plan No functional changes. Version floor pin only. --------- Signed-off-by: Matthew F Leader <mleader@redhat.com>
1 parent 361ca2d commit 5cc1ff1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies = [
4747
"rich",
4848
"termcolor",
4949
"tiktoken",
50-
"pillow",
50+
"pillow>=12.2.0",
5151
"h11>=0.16.0",
5252
"python-multipart>=0.0.20", # For fastapi Form
5353
"uvicorn>=0.34.0", # server

src/llama_stack/providers/registry/agents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def available_providers() -> list[ProviderSpec]:
2121
pip_packages=[
2222
"matplotlib",
2323
"fonttools>=4.60.2",
24-
"pillow",
24+
"pillow>=12.2.0",
2525
"pandas",
2626
"scikit-learn",
2727
"mcp>=1.23.0",

0 commit comments

Comments
 (0)