fix(mcp_server): bump transitive requests to 2.33.1 (advisory 90553)#11084
Merged
fix(mcp_server): bump transitive requests to 2.33.1 (advisory 90553)#11084
Conversation
Contributor
|
✅ Conflict Markers Resolved All conflict markers have been successfully resolved in this pull request. |
Contributor
|
Please add an entry to the corresponding |
Contributor
🔒 Container Security ScanImage: 📊 Vulnerability Summary
3 package(s) affected
|
HugoPBrito
approved these changes
May 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.
Context
Safety advisory 90553 reports an Insecure Temporary File reuse vulnerability in
requests <2.33.0(predictable temporary filename). The MCP server'suv.lockwas resolvingrequeststo2.32.5, exposing it to the issue.requestsis not a direct dependency ofmcp_server; it is pulled in transitively byfastmcp 2.14.0→jsonschema-path 0.3.4→requests. The SDK and API lockfiles already resolve to a safe version (2.33.1).Description
Regenerated
mcp_server/uv.lockwithuv lock --upgrade-package requests, bumpingrequestsfrom2.32.5to2.33.1. No other package versions changed (83 packages resolved, onlyrequestsmoved).Steps to review
git diff master -- mcp_server/uv.lock— verify the only change isrequests 2.32.5 → 2.33.1(sdist + wheel hashes updated accordingly).cd mcp_server && uv sync— confirm a clean install resolves with the new lock.safety checkshould no longer flag advisory 90553.Checklist
Community Checklist
SDK/CLI
UI
API
License
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.