fix: updated the dependabot packages#936
Merged
Roopan-Microsoft merged 1 commit intodependabotchangesfrom Apr 20, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates dependency versions across the repo’s JavaScript frontend and Python backends, and introduces a new Python authentication dependency for mcp_server, primarily aligning lockfiles/manifests with Dependabot-driven upgrades.
Changes:
- Bump
python-multipartfrom0.0.22→0.0.26across Python projects (manifests +uv.lockwhere applicable). - Bump backend
mcpfrom1.26.0→1.27.0(manifest +uv.lock). - Add
authlib==1.6.11tosrc/mcp_serverdependencies and update its lockfile entry; bump frontendminimatchoverride to3.1.5(and lockfile resolution).
Reviewed changes
Copilot reviewed 4 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/mcp_server/uv.lock | Updates locked authlib and python-multipart versions; adds authlib to macae-mcp-server dependency metadata. |
| src/mcp_server/pyproject.toml | Pins python-multipart==0.0.26 and adds authlib==1.6.11 as a runtime dependency. |
| src/backend/uv.lock | Updates locked versions for mcp and python-multipart. |
| src/backend/requirements.txt | Pins python-multipart==0.0.26 and mcp==1.27.0. |
| src/backend/pyproject.toml | Pins python-multipart==0.0.26 and mcp==1.27.0. |
| src/App/uv.lock | Updates locked python-multipart version to 0.0.26. |
| src/App/package.json | Updates minimatch override to 3.1.5. |
| src/App/package-lock.json | Updates resolved minimatch package metadata to 3.1.5. |
Files not reviewed (1)
- src/App/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Roopan-Microsoft
approved these changes
Apr 20, 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.
Purpose
This pull request updates several dependencies to their latest patch versions across both the frontend and backend, and adds a new authentication library to the
mcp_serverbackend. These changes help ensure compatibility, security, and access to the latest features and bug fixes.Dependency updates (frontend):
minimatchto version3.1.5in bothpackage.jsonandpackage-lock.jsonfor improved security and compatibility. [1] [2]Dependency updates (backend):
python-multipartfrom0.0.22to0.0.26in bothpyproject.tomlfiles andrequirements.txtto address potential bug fixes and improvements. [1] [2] [3]mcpfrom1.26.0to1.27.0in bothpyproject.tomlandrequirements.txtfor the backend. [1] [2]New dependency (backend):
authlib==1.6.11to themcp_serverbackend dependencies, likely to support authentication features.Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information