Skip to content

Commit dc8ae34

Browse files
committed
Update to FastAPI 0.116 and Starlette 0.47
This commit will update/upgrade to [FastAPI 0.116](https://fastapi.tiangolo.com/release-notes/) and [Starlette 0.47](https://www.starlette.io/release-notes/). This is a minor release to align with FastAPI and Starlette versioning. FastAPI 0.116 introduces support for deploying to FastAPI Cloud with the `fastapi deploy` CLI command. Starlette 0.47 reintroduces support for an ASGI extension called [path send](https://asgi.readthedocs.io/en/latest/extensions.html#path-send) (aka "path-send" or `pathsend`). It was introduced in Starlette 0.36, then removed in 0.38 because of issues with `BaseHTTPMiddleware`. Now they're giving it another try.
1 parent 60c0700 commit dc8ae34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ docs = [
4141
"mkdocs-material>=9,<10",
4242
]
4343
fastapi = [
44-
"fastapi==0.115.13",
44+
"fastapi==0.116.1",
4545
]
4646
starlette = [
47-
"starlette>=0.40.0,<0.47.0",
47+
"starlette>=0.40.0,<0.48.0",
4848
]
4949
tests = [
5050
"coverage[toml]>=7,<8",

0 commit comments

Comments
 (0)