fix(deps): raise aiohttp override floor to >=3.14.3 - #20
Open
FJ-Riveros wants to merge 1 commit into
Open
Conversation
Keep CVE-2026-34993 / CVE-2026-47265 from regressing on the next uv lock. #19 already resolved 3.14.3; the old >=3.13.4 floor still allowed 3.13.x.
There was a problem hiding this comment.
Pull request overview
This PR hardens dependency resolution for the Python client by raising the aiohttp override floor so future uv lock runs can’t legally downgrade below the patched version already present in the lockfile.
Changes:
- Bump
aiohttpoverride floor from>=3.13.4to>=3.14.3inpyproject.toml. - Regenerate/update
uv.lockto reflect the higher override floor and associated marker metadata.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
pyproject.toml |
Raises tool.uv.override-dependencies floor for aiohttp to >=3.14.3. |
uv.lock |
Updates manifest override floor to >=3.14.3 and refreshes resolved/marker metadata accordingly (including aiohttp==3.14.3). |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
What
Raise the uv
override-dependenciesfloor foraiohttpfrom>=3.13.4to>=3.14.3.Why
#19 already resolved
aiohttp==3.14.3in the lockfile, which closes CVE-2026-34993 and CVE-2026-47265. The override floor was still>=3.13.4, so the nextuv lockcould legally re-resolve 3.13.x and reopen those Mediums.Test plan
uv lock— resolved version stays3.14.3; no3.13.xinuv.lockSecurity & data impact
Security impact: Fail-closed floor so aiohttp cannot regress below 3.14.3 (covers CVE-2026-34993 / CVE-2026-47265 and CVE-2026-69244). Transitive via web3; this client uses httpx for HTTP.
Data classification affected: none
Audit log updated: n/a
Rollback
Revert commit. No state migration.