Skip to content

Commit

Permalink
Update starlette dep via bumping FastAPI (#158)
Browse files Browse the repository at this point in the history
Patches vulnerability that is due to starlette version < 0.40.0 by
bumping the fastAPI version to 0.115.3

FastAPI 0.115.3 release notes:
https://github.com/fastapi/fastapi/releases/tag/0.115.3
  • Loading branch information
EricGustin authored Nov 19, 2024
1 parent 8b46e4f commit 82afd7e
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 43 deletions.
2 changes: 1 addition & 1 deletion arcade/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ types-pytz = "2024.2.0.20241003"
opentelemetry-instrumentation-fastapi = {version = "0.48b0", optional = true}
opentelemetry-exporter-otlp-proto-http = {version = "1.27.0", optional = true}
opentelemetry-exporter-otlp-proto-common = {version = "1.27.0", optional = true}
fastapi = {version = "^0.110.0", optional = true}
fastapi = {version = "^0.115.3", optional = true}
uvicorn = {version = "^0.30.0", optional = true}
scipy = {version = "^1.14.0", optional = true}
numpy = {version = "^2.0.0", optional = true}
Expand Down
205 changes: 164 additions & 41 deletions examples/fastapi/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/fastapi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Arcade AI <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.112.0"
fastapi = "^0.115.3"
arcade-ai = {path = "../../arcade", develop = true}
arcade_math = {path = "../../toolkits/math", develop = true}
arcade_google = {path = "../../toolkits/google", develop = true}
Expand Down

0 comments on commit 82afd7e

Please sign in to comment.