chore: Bump dev deps to clear h11, pytest, and idna advisories#29
Merged
Conversation
Relax the uvicorn and pytest upper-bound pins so the lockfile can pull patched transitive versions: - h11 0.14.0 -> 0.16.0 (critical, via uvicorn 0.30 -> 0.50) - pytest 8.3.3 -> 9.1.1 (medium), pytest-asyncio 0.24 -> 1.4.0 - idna 3.10 -> 3.18 (medium, transitive) Full native + compiled Python test suite passes (50 tests). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
e7c827f to
7e8f9c1
Compare
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.
Summary
Clears the 3 remaining open Dependabot alerts, all transitive/dev deps in
uv.lock. Rebased onto latestmain(after Dependabot PRs #25–#28 merged).The earlier Dependabot group PRs relaxed
uvicornandpytest-asyncioinpyproject.toml, but two things were still outstanding:pytestwas still capped at<9, so the pytest advisory couldn't be patched.uv.lockstill pinned the oldh11andidnatransitives.This PR lifts the
pytestcap and regenerates the lockfile, pulling all three patched versions.pyproject.toml change
pytest>=8.3.3,<9→pytest>=9.0.3,<10(
uvicorn>=0.50,pytest-asyncio>=1.4were already set on main.)Testing
Full native F# + compiled Python suite passes — 50 tests green on pytest 9.1.1 / pytest-asyncio 1.4.0.
🤖 Generated with Claude Code