fix(security): update dependencies - #401
Open
BartoszBlizniak wants to merge 2 commits into
Open
Conversation
BartoszBlizniak
marked this pull request as ready for review
August 31, 2026 11:50
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Python/runtime dependency floors and container build inputs to address multiple security advisories, primarily by ensuring downstream installations cannot resolve vulnerable transitive versions and by hardening Docker build instructions.
Changes:
- Adds explicit runtime dependency “security floors” (cryptography, pydantic-settings, starlette) and raises PyJWT minimum, while pinning MCP to a patched version.
- Regenerates
uv.lockto reflect the new constraints and resolved versions. - Updates the dev Docker build to use
COPYinstead ofADDand pins theastral/uvbuilder image by tag+digest.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| uv.lock | Lockfile updated to include new direct dependencies and minimum versions aligned with the security remediation. |
| pyproject.toml | Adds explicit dependency floors for MCP’s dependency graph and raises PyJWT minimum version. |
| dev.Dockerfile | Pins the uv builder image and replaces ADD with COPY for safer, more predictable Docker builds. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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.
Description
Resolve security findings by:
uv.lock.ADDinstructions withCOPY.No application-code or CLI behaviour changes are included.
Security advisories addressed:
Type of Change
Additional Notes
Unit tests passed on Python 3.10 and 3.14. Package, standalone-binary, Docker, security-scan, and Conda compatibility checks also passed.