chore(deps): bump dependencies to latest and add httpx2#60
Merged
Conversation
Update all locked dependencies to latest, including coverage 7.14.1, pytest 9.1.0, fastapi 0.137.1, starlette 1.3.1, uvicorn 0.49.0, pydantic 2.13.4, and sqlalchemy 2.0.51. Add httpx2 as a dev dependency to silence the starlette TestClient deprecation warning (starlette 1.3.x prefers httpx2 over httpx).
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
Refresh all locked dependencies to their latest releases and add
httpx2as a dev dependency.Direct dev-tool bumps:
coverage7.13.5 -> 7.14.1pytest9.0.3 -> 9.1.0Notable transitive bumps (via servicekit / fastapi):
fastapi0.136.3 -> 0.137.1starlette1.1.0 -> 1.3.1uvicorn0.44.0 -> 0.49.0pydantic2.13.1 -> 2.13.4sqlalchemy2.0.49 -> 2.0.51sentry-sdk2.58.0 -> 2.62.0httpx2is added to thedevgroup to silence the newStarletteDeprecationWarningemitted byTestClientunder starlette 1.3.x (it prefershttpx2overhttpx). This also clears the relatedPytestUnhandledThreadExceptionWarningnoise from test teardown.Only
pyproject.tomlanduv.lockchange; existing>=version pins were already satisfied.Test plan
make lint- ruff clean, mypy/pyright 0 errorsmake test- 812 passed, 2 skipped, 1 warning (down from 9)