Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ See [docs/RELEASING.md](docs/RELEASING.md) for the release procedure.
concurrency group is now scoped per calling workflow so the publish-embedded
gate no longer cancels the standalone push-triggered one. ([#74])

### Security
- **Pinned `aiohttp>=3.14.3`, `cryptography>=50.0.0` and `h2>=4.4.1`** (all
transitive) to address PYSEC-2026-3545 / 3546 / 3547 (aiohttp),
PYSEC-2026-3552 (cryptography) and PYSEC-2026-3628 (h2). ([#81])

## [0.5.0] — 2026-06-24

### Added
Expand Down Expand Up @@ -639,4 +644,5 @@ Initial release under the **nasde-toolkit** name (rebrand from
[#73]: https://github.com/NoesisVision/nasde-toolkit/pull/73
[#74]: https://github.com/NoesisVision/nasde-toolkit/pull/74
[#77]: https://github.com/NoesisVision/nasde-toolkit/pull/77
[#81]: https://github.com/NoesisVision/nasde-toolkit/pull/81
[gh-litellm-2026-04]: https://github.com/BerriAI/litellm/security/advisories/GHSA-xqmj-j6mv-4862
19 changes: 15 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,17 @@ dependencies = [
"idna>=3.15",
"urllib3>=2.7.0",
# Transitive via harbor/litellm. Pinned to fix the June-2026 CVE batch
# CVE-2026-54273..54280 (aiohttp <3.14.1).
"aiohttp>=3.14.1",
# CVE-2026-54273..54280 (aiohttp <3.14.1) and the August-2026 batch
# PYSEC-2026-3545/3546/3547 (aiohttp <3.14.3): WebSocket-upgrade request
# smuggling, an out-of-bounds heap read in the C response parser, and
# RSV1 frames decompressed without a negotiated permessage-deflate.
"aiohttp>=3.14.3",
# Transitive via harbor → supabase / opik. Pinned to fix
# GHSA-537c-gmf6-5ccf (cryptography <48.0.1).
"cryptography>=48.0.1",
# GHSA-537c-gmf6-5ccf (cryptography <48.0.1) and PYSEC-2026-3552
# (cryptography 44.0.0..49.x): pkcs7_decrypt_* distinguished RSA
# decryption outcomes by result and by timing — a Bleichenbacher
# oracle against the content-encryption key.
"cryptography>=50.0.0",
# Transitive via harbor/opik (starlette/fastapi). Pinned to fix
# CVE-2026-53540 (python-multipart <0.0.31).
"python-multipart>=0.0.31",
Expand All @@ -62,6 +68,11 @@ dependencies = [
# Transitive via harbor/opik. Pinned to fix CVE-2026-54282 / CVE-2026-54283
# (starlette <1.3.1).
"starlette>=1.3.1",
# Transitive via harbor → e2b / grpclib / httpx. Pinned to fix
# PYSEC-2026-3628 (h2 <=4.4.0): a request header block carrying more than
# one Host header is forwarded whole, a request-smuggling primitive
# (CWE-444) once HTTP/2 is downgraded to HTTP/1.1.
"h2>=4.4.1",
]

[project.urls]
Expand Down
Loading