chore(deps): patch open Python Dependabot alerts - #13
Open
ElliotWood13 wants to merge 3 commits into
Open
Conversation
- aiohttp 3.13.3 -> 3.13.5 (multiple medium/low alerts) - python-dotenv 1.2.1 -> 1.2.2 (medium) - requests 2.32.5 -> 2.33.1 (medium) Pinned via [tool.uv] constraint-dependencies since these are transitive deps and not listed in [project.dependencies].
There was a problem hiding this comment.
Pull request overview
Updates the repo’s Python dependency resolution to remediate open Dependabot alerts by enforcing minimum transitive dependency versions via uv constraints and refreshing the lockfile accordingly.
Changes:
- Added
uvconstraint-dependenciesto enforce minimum versions for affected transitive dependencies. - Updated
uv.lockto include the constraint manifest and resolve to newer patched versions ofaiohttp,python-dotenv, andrequests.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Adds [tool.uv].constraint-dependencies to enforce minimum versions for transitive deps. |
| uv.lock | Records the constraints in [manifest] and updates resolved package versions/artifacts for the patched deps. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Bump constraint floors to match the resolved versions documented in the PR description so future uv locks cannot regress to lower patched releases: - aiohttp >=3.13.4 -> >=3.13.5 - requests >=2.33.0 -> >=2.33.1
ari-ethena
requested changes
May 8, 2026
ari-ethena
left a comment
Contributor
There was a problem hiding this comment.
just upgrade the libs please dont add constraint dependencies.
Per review feedback, the patched transitive versions (aiohttp 3.13.5, python-dotenv 1.2.2, requests 2.33.1) are already pinned by uv.lock. The [tool.uv] constraint block is redundant given uv sync --frozen in CI.
ari-ethena
approved these changes
May 10, 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.
What
Patch all open Python Dependabot alerts on this repo via uv constraint-dependencies.
Why
This repo migrated to a pure Python service — there is no Next.js to bump. However, the active Dependabot alerts target three transitive Python deps that were addressed by an upstream patch.
Open alerts addressed:
These are pinned via
[tool.uv] constraint-dependenciesbecause they are transitive (not direct deps in[project.dependencies]), so a constraint is the right tool — it forces a minimum version during resolution without adding noise to the public dep list.Test plan
uv lockshows aiohttp@3.13.5, python-dotenv@1.2.2, requests@2.33.1Security & data impact
Security impact: Patches multiple disclosed CVEs in transitive Python deps. No app-level auth or data-flow changes.
Data classification affected: None
Audit log updated: N/A
Rollback
Revert commit. No state migration.