MPT-22633 bump prod deps and add Dependabot config#67
Merged
Conversation
Bump production dependencies to their latest compatible releases and add Dependabot coverage so future updates surface automatically. - cryptography 46 -> 49, gunicorn 24 -> 26 (HTTP request-smuggling and HTTP/2 body-duplication security fixes), rich 14 -> 15, typer 0.24 -> 0.26. - fastapi bumped 0.131 -> 0.136.3 but capped <0.137: fastapi 0.137 reworked router.routes into a tree, which breaks fastapi-pagination.add_pagination(); lift the cap once fastapi-pagination supports 0.137+. - Regenerate uv.lock and add .github/dependabot.yml covering the uv, docker, and github-actions ecosystems. MPT-22633
|
ffaraone
approved these changes
Jun 25, 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.



🤖 AI-generated PR — Please review carefully.
What
Bump outdated production dependencies and add Dependabot coverage. Resolves MPT-22633.
>=46.0.5,<47.0.0>=49.0.0,<50.0.0>=24.1.1,<25.0.0>=26.0.0,<27.0.0>=14.3.3,<15.0.0>=15.0.0,<16.0.0>=0.24.1,<0.25.0>=0.26.0,<0.27.0>=0.131.0,<0.132.0>=0.136.3,<0.137.0uv.lockregenerated; new.github/dependabot.ymlcovering theuv,docker, andgithub-actionsecosystems (weekly for uv, monthly for docker/actions; prod/dev groups;depscommit prefix).Why fastapi is capped at
<0.137fastapi
0.137reworkedrouter.routesinto a tree of intermediate objects.fastapi-pagination(0.15.15, latest on PyPI) still iterates the flat route list inadd_pagination(), so on0.137+the paginated/extensionsand/instancesendpoints raiseUninitializedConfigurationError. fastapi is therefore held at the latest compatible release (0.136.3); lift the cap once afastapi-paginationrelease supports0.137+.Compatibility review (verified against the code)
eventletworker — mrok uses uvicorn workers only. Also brings HTTP request-smuggling (RFC 9112/9110) and HTTP/2 body-duplication security fixes.clickimports in the codebase.SECT*curves, ChaCha20 counter, type aliases) — mrok only uses RSA + standardx509inmrok/ziti/pki.py.Testing
ruff check/ruff format --check— passmypy mrok— passbandit— passpytest— 431 passed, coverage 99%pre-commit runon changed files — pass