chore: bundle Dependabot bumps + starlette CVE fix, cut v0.19.3#94
Merged
Conversation
Bundles the four open Dependabot PRs into a single release rather than landing them one-by-one with four lockfile-update follow-ups: - fastapi 0.136.1 -> 0.136.3 (#89) - uvicorn >=0.47 -> >=0.48 (#91) - idna >=3.15 -> >=3.16 (#90) - pytest-asyncio 1.3.0 -> 1.4.0 (#92, dev) While regenerating requirements.lock to clear those bumps, the resolver also pulls starlette from 0.52.1 to 1.1.0 -- this clears PYSEC-2026-161 (fix in 1.0.1), which the CI security gate had started reporting on every open Dependabot PR. fastapi 0.136.3 declares starlette>=0.46.0 with no upper bound, so the 1.x bump is in-range. Dependabot does not open PRs for undeclared transitives, hence the direct lockfile bump. Bumps __version__ to 0.19.3 and folds the [Unreleased] CHANGELOG block into a dated [0.19.3] release. No app-code or API changes. Test plan: - 222/222 pytest pass against the regenerated lockfile - ruff check app/ clean - bandit -r app/ -ll clean - pip-audit -r requirements.lock reports no known vulnerabilities Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 28, 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.
Summary
Bundles the four open Dependabot PRs into a single v0.19.3 release rather than landing them individually with four lockfile-update follow-ups. Also clears PYSEC-2026-161 in
starletteas a side effect of regenerating the lockfile.Dependency bumps (supersedes #89, #90, #91, #92)
fastapiuvicornidnapytest-asyncio(dev)Security
starlette0.52.1 → 1.1.0 inrequirements.lockclears PYSEC-2026-161 (fix in 1.0.1). The CIsecuritygate had started flagging this on every open Dependabot PR.fastapi0.136.3 declaresstarlette>=0.46.0with no upper bound, so the 1.x bump is in-range. Dependabot does not open PRs for undeclared transitives, so this is pinned directly in the lockfile.Release
__version__0.19.2 → 0.19.3[Unreleased]CHANGELOG block folded into a dated[0.19.3]entryTest plan
pytest tests/ -q— 222/222 pass against the regenerated lockfileruff check app/— cleanbandit -r app/ -ll— cleanpip-audit -r requirements.lock— no known vulnerabilitiesAfter this lands I'll close the four superseded Dependabot PRs referencing this one.
🤖 Generated with Claude Code