fix: dev to main Dependent bot vulnerabilities fix - #1137
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request updates pinned dependency versions across the backend, MCP server, CI Python requirements, and the frontend app to address security/compatibility issues and keep versions consistent across components.
Changes:
- Bump
python-multipartto0.0.30across.github/requirements.txt,src/App/pyproject.toml,src/backend/pyproject.toml, andsrc/mcp_server/pyproject.toml. - Bump
cryptographyto50.0.0in backend and MCP server (and add an explicit pin insrc/App/pyproject.toml). - Update frontend
package.jsonoverrides forjs-yamland add an override forpostcss.
Reviewed changes
Copilot reviewed 5 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/mcp_server/pyproject.toml |
Updates python-multipart and cryptography pins for the MCP server runtime. |
src/backend/pyproject.toml |
Updates python-multipart, cryptography, and aiohttp pins for backend runtime. |
src/App/pyproject.toml |
Updates python-multipart and adds explicit cryptography pin for the frontend’s Python service. |
src/App/package.json |
Updates/adds overrides entries to force patched transitive JS package versions. |
.github/requirements.txt |
Updates CI/test dependency pin for python-multipart. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Avijit-Microsoft
approved these changes
Aug 10, 2026
Roopan-Microsoft
approved these changes
Aug 10, 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 across multiple components of the project to address security, compatibility, and feature improvements. The most notable changes are version bumps for
python-multipartandcryptographyin both backend and server components, as well as updates to frontend dependencies and the addition of new packages.Dependency updates for Python components:
python-multipartfrom version0.0.20to0.0.30in.github/requirements.txt,src/App/pyproject.toml,src/backend/pyproject.toml, andsrc/mcp_server/pyproject.tomlto address security and compatibility issues.cryptographyfrom48.0.1to50.0.0insrc/backend/pyproject.tomlandsrc/mcp_server/pyproject.tomlfor improved security and bug fixes. * Upgradedaiohttpfrom3.13.5to3.14.3insrc/backend/pyproject.tomlfor enhanced stability and features.Frontend dependency updates:
js-yamlfrom4.3.0to5.2.2insrc/App/package.jsonto address security vulnerabilities and improve YAML parsing.postcssversion8.5.18as a new dependency insrc/App/package.jsonto support CSS processing.Other dependency additions:
cryptography==50.0.0to the dependencies insrc/App/pyproject.tomlfor cryptographic functions.## Does this introduce a breaking change?Other Information