fix: clean up code structure and remove unused code blocks#177
Merged
Roopan-Microsoft merged 2 commits intodevfrom Apr 8, 2026
Merged
fix: clean up code structure and remove unused code blocks#177Roopan-Microsoft merged 2 commits intodevfrom
Roopan-Microsoft merged 2 commits intodevfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates backend and frontend dependency pins/lockfiles to address compatibility/security updates across the repo (Python via uv, JS via npm).
Changes:
- Processor: upgrade
fastmcpto3.2.0and tightenauthliboverride to==1.6.9(with correspondinguv.lockupdates). - Backend API: add multiple pinned
override-dependencies(e.g.,azure-core,urllib3,cryptography,pyjwt,pyopenssl) and updateuv.lockaccordingly. - Frontend: force
picomatchviapackage.jsonoverrides and updatepackage-lock.jsontopicomatch@4.0.4.
Reviewed changes
Copilot reviewed 3 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/processor/pyproject.toml | Bumps fastmcp and pins authlib via uv overrides. |
| src/processor/uv.lock | Lockfile regeneration reflecting the new fastmcp graph and related dependency changes. |
| src/backend-api/pyproject.toml | Adds pinned override-dependencies for several Python packages. |
| src/backend-api/uv.lock | Lockfile regeneration reflecting new override pins and package updates. |
| src/frontend/package.json | Adds an overrides entry for picomatch. |
| src/frontend/package-lock.json | Updates resolved picomatch version and removes a redundant nested entry. |
Files not reviewed (1)
- src/frontend/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Roopan-Microsoft
approved these changes
Apr 8, 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 dependencies in both the backend and frontend to address compatibility, security, and feature improvements. The main changes include adding and upgrading several Python and JavaScript packages, as well as aligning version constraints for consistency across the project.
Backend dependency updates:
override-dependencieslist insrc/backend-api/pyproject.toml:azure-core,urllib3,black,cryptography,pyjwt, andpyopenssl, all pinned to specific versions.fastmcpfrom version 2.14.2 to 3.2.0 insrc/processor/pyproject.tomlto ensure compatibility with the latest features and fixes.authlibinsrc/processor/pyproject.tomlfrom a minimum version (>=1.6.9) to an exact version (==1.6.9) for consistency and reproducibility.Frontend dependency updates:
picomatchfrom version 2.3.1 to 4.0.4 insrc/frontend/package-lock.jsonand removed a redundant sub-dependency, ensuring compatibility with Node.js >=12. [1] [2]picomatch(>=2.3.2) todependenciesinsrc/frontend/package.jsonto ensure the correct version is used.Does this introduce a breaking change?