-
Notifications
You must be signed in to change notification settings - Fork 0
Update fastapi to 0.136.0 #565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| fastapi==0.6.4 | ||
| fastapi==0.136.0 | ||
| gitpython | ||
| uvicorn==0.4.6 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Check FastAPI 0.136.0 uvicorn dependency requirements and security advisories
# Check for security advisories on uvicorn 0.4.6
gh api graphql -f query='
{
securityVulnerabilities(first: 10, ecosystem: PIP, package: "uvicorn") {
nodes {
advisory {
summary
severity
publishedAt
}
vulnerableVersionRange
firstPatchedVersion {
identifier
}
}
}
}'Repository: salimfadhley/dockerized_python_playground Length of output: 521 🌐 Web query:
💡 Result: FastAPI 0.136.0 does not appear to exist as of 2026-04-16. The latest version is 0.135.3 (released 2026-04-01). FastAPI does not have a direct runtime dependency on Uvicorn; Uvicorn is an optional dependency included in the [standard] extras. Uvicorn requirement: uvicorn[standard] >=0.12.0 (from pyproject.toml master branch and PyPI metadata for recent versions). To run a FastAPI app, install with: pip install "fastapi[standard]" This includes Uvicorn >=0.12.0 with high-performance extras like uvloop. No specific changes or tighter bounds for recent versions like 0.135.x; the minimum remains >=0.12.0 across all extras (standard, standard-no-fastapi-cloud-cli, all). Citations:
Update uvicorn to a compatible version and address security vulnerabilities. uvicorn 0.4.6 is deprecated and contains HIGH severity security vulnerabilities (log injection and HTTP response splitting affecting versions < 0.11.7). It is incompatible with any modern FastAPI version, which requires uvicorn >=0.12.0. Update to a recent version (0.23.x or later recommended). 🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: salimfadhley/dockerized_python_playground
Length of output: 1360
Pin gitpython to a patched version to address critical security vulnerabilities.
The unpinned dependency allows installation of vulnerable versions with critical remote code execution flaws (patched in 3.1.32, 3.1.30), blind local file inclusion (patched in 3.1.37), and Windows search path execution vulnerabilities (patched in 3.1.33, 3.1.41).
📝 Committable suggestion
🤖 Prompt for AI Agents