-
Notifications
You must be signed in to change notification settings - Fork 1
chore: pin aiohttp>=3.14.3 security floor for transitive CVE fix - #14
Open
Anai-Guo wants to merge 3 commits into
Open
chore: pin aiohttp>=3.14.3 security floor for transitive CVE fix #14Anai-Guo wants to merge 3 commits into
Anai-Guo wants to merge 3 commits into
Conversation
litellm pulls aiohttp in transitively; 3.13.x is affected by CVE-2026-34993 and CVE-2026-47265, both fixed in 3.14.0. Add an explicit security floor so dependency resolution cannot select an affected version. Verified: pip-audit reports no known vulnerabilities after the bump, and the full test suite (270 passed, 1 skipped) is green under aiohttp 3.14.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The previous floor (>=3.14.0) is no longer sufficient: aiohttp 3.14.0 is affected by CVE-2026-54273 through CVE-2026-54280, fixed in 3.14.1. Raising the floor clears these from pip-audit while staying within litellm's transitive dependency range. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Anai-Guo
commented
Jun 16, 2026
Owner
Author
自动维护追更
aiohttp 3.14.0(本 PR 原先设定的下限)现已被 CVE-2026-54273 ~ CVE-2026-54280 影响,修复版本为 3.14.1。原下限 >=3.14.0 已不足以清除漏洞。
本次追更:将下限从 >=3.14.0 提升至 >=3.14.1。
- ✅ 270 passed / 1 skipped(py 本地 venv)
- ✅
pip-audit不再报告 aiohttp 漏洞 - 仍属
pyproject.toml依赖变更(高风险区),请人工 review 后合并。
🤖 Generated with Claude Code
The >=3.14.1 floor on this branch has been overtaken: aiohttp 3.14.0 through 3.14.2 are affected by CVE-2026-59881 (client decompresses WebSocket frames with RSV1 set even when permessage-deflate was not negotiated), CVE-2026-69243 (request smuggling via an edge case in the WebSocket upgrade procedure) and CVE-2026-69244 (out-of-bounds heap read in the C response parser while formatting an error for a malformed response). All three are fixed in 3.14.3, so the floor is raised to match and the comment updated to record them. Verified locally: pip install -e ".[dev]" resolves aiohttp 3.14.3, 270 tests pass / 1 skipped, ruff check and ruff format --check are clean, and pip-audit drops from 16 findings to 13 (all three aiohttp entries clear). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@Anai-Guo
Anai-Guo
changed the title
(削除) chore: pin aiohttp>=3.14.0 security floor for transitive CVE fix (削除ここまで)
(追記) chore: pin aiohttp>=3.14.3 security floor for transitive CVE fix (追記ここまで)
Aug 5, 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.
Uh oh!
There was an error while loading. Please reload this page.
自动维护改动
类型:更新(依赖安全下限)
改动:为 litellm 的传递依赖 aiohttp 增加安全下限并随新披露 CVE 逐步抬高,当前为
aiohttp>=3.14.3。3.13.x 受 CVE-2026-34993 / CVE-2026-47265 影响(3.14.0 修复);3.14.0 受 CVE-2026-54273..54280 影响(3.14.1 修复);3.14.0–3.14.2 受 CVE-2026-59881(未协商 permessage-deflate 仍解压 WebSocket 帧)、CVE-2026-69243(WebSocket 升级边界情况导致请求走私)、CVE-2026-69244(C 响应解析器越界堆读)影响(均在 3.14.3 修复)。测试:通过 ——
pip install -e ".[dev]"解析到 aiohttp 3.14.3;270 passed / 1 skipped;ruff check与ruff format --check清白(123 文件);pip-audit 由 16 条降至 13 条,3 条 aiohttp 条目清零。参考:无(漏洞信息来自 pip-audit 的 PyPI advisory 数据)
仅改动
pyproject.toml一个文件,只加下限、不加上限,不引入新直接依赖行为。本 PR 由每日维护任务生成,请人工 review 后再合并。
🤖 Generated with Claude Code