fix: Refactor code structure for improved readability and maintainability#153
Merged
Roopan-Microsoft merged 3 commits intodevfrom Mar 26, 2026
Merged
fix: Refactor code structure for improved readability and maintainability#153Roopan-Microsoft merged 3 commits intodevfrom
Roopan-Microsoft merged 3 commits intodevfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR primarily updates and pins backend (Python/uv) and frontend (npm) dependencies/overrides to address security/compatibility concerns and improve dependency consistency across environments.
Changes:
- Updated Python dependencies (e.g.,
aiohttp,fastmcp,authlib,azure-core,cryptography,pyjwt,urllib3,python-multipart) and expandeduvoverride constraints. - Added/updated backend API
uvoverrides (notablyaiohttp>=3.13.3) and tightened some pinned versions (e.g.,protobuf==7.34.0,python-multipart==0.0.22). - Updated frontend npm overrides (e.g.,
minimatch,flatted,glob) and corresponding lockfile entries.
Reviewed changes
Copilot reviewed 3 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/processor/uv.lock | Expanded/updated uv lockfile and override constraints; bumped multiple Python packages. |
| src/processor/pyproject.toml | Bumped core dependencies and added several override-dependencies pins. |
| src/backend-api/uv.lock | Added aiohttp override and updated resolved versions/pins. |
| src/backend-api/pyproject.toml | Added aiohttp>=3.13.3 to override-dependencies. |
| src/frontend/package.json | Updated npm overrides (minimatch/glob/flatted). |
| src/frontend/package-lock.json | Updated resolved versions for overridden transitive dependencies. |
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.
Roopan-Microsoft
approved these changes
Mar 25, 2026
Roopan-Microsoft
approved these changes
Mar 26, 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 backend and frontend dependencies to address security, compatibility, and maintainability concerns. The most significant changes include upgrading core Python and JavaScript package versions, as well as adding or updating override dependencies to ensure consistency across environments.
Does this introduce a breaking change?