chore(deps): bundle Dependabot bumps (uvicorn 0.52.1, ruff 0.16.1), sync lock - #151
Open
bk86a wants to merge 1 commit into
Open
chore(deps): bundle Dependabot bumps (uvicorn 0.52.1, ruff 0.16.1), sync lock#151bk86a wants to merge 1 commit into
bk86a wants to merge 1 commit into
Conversation
…ync lock Supersedes #149 and #150, which each bump only the requirement range and leave requirements.lock — the file the production image actually installs from — pinned to the old version. Lock regenerated from a clean python:3.14-slim container (the runtime base image) per the documented procedure, so it also picks up transitive drift: packaging 26.3, starlette 1.4.1, websockets 17.0.1. uvicorn 0.52.1 is a WebSocket-only bugfix release (closing handshake, write flow control on server-initiated closes); this service exposes no WebSocket endpoints, so it carries no behaviour change here. Verified against the regenerated lock: 393 tests pass, pip-audit clean, ruff 0.16.1 check + format clean on app/ and scripts/.
This was referenced Aug 6, 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.
Supersedes #149 (ruff) and #150 (uvicorn). Both Dependabot PRs bump only the requirement range in
requirements*.txtand leaverequirements.lock— the file the production image installs from — pinned to the old version, so neither is mergeable on its own without a follow-up lock sync.Changes
requirements.txt:uvicorn[standard]>=0.52.0,<1→>=0.52.1,<1requirements-dev.txt:ruff>=0.16.0,<1→>=0.16.1,<1requirements.lockregenerated from a cleanpython:3.14-slimcontainer (the runtime base image):uvicorn0.52.1, plus transitive driftpackaging26.3,starlette1.3.1 → 1.4.1,websockets17.0 → 17.0.1uvicorn 0.52.1 is a WebSocket-only bugfix release (closing handshake, write flow control, denial-response headers). This service exposes no WebSocket endpoints, so it is a no-op here beyond staying current.
Verification
Run against the regenerated lock in
python:3.14-slim:pytest— 393 passedpip-audit -r requirements.lock— no known vulnerabilitiesruff 0.16.1 check app/ scripts/+ruff format --check app/ scripts/— cleanNote: starlette 1.4.x emits a new
StarletteDeprecationWarningforTestClientwithhttpx(suggestshttpx2). Warning only — no failures, no production impact.