Browse Source
Merge branch 'master' into master
pull/12504/head^2
Nikita Zavadin
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
8 additions and
2 deletions
-
docs/en/docs/release-notes.md
-
fastapi/__init__.py
-
pyproject.toml
|
|
@ -7,6 +7,12 @@ hide: |
|
|
|
|
|
|
|
## Latest Changes |
|
|
|
|
|
|
|
## 0.115.3 |
|
|
|
|
|
|
|
### Upgrades |
|
|
|
|
|
|
|
* ⬆️ Upgrade Starlette to `>=0.40.0,<0.42.0`. PR [#12469](https://github.com/fastapi/fastapi/pull/12469) by [@defnull](https://github.com/defnull). |
|
|
|
|
|
|
|
### Docs |
|
|
|
|
|
|
|
* 📝 Fix broken link in docs. PR [#12495](https://github.com/fastapi/fastapi/pull/12495) by [@eltonjncorreia](https://github.com/eltonjncorreia). |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" |
|
|
|
|
|
|
|
__version__ = "0.115.2" |
|
|
|
__version__ = "0.115.3" |
|
|
|
|
|
|
|
from starlette import status as status |
|
|
|
|
|
|
|
|
|
@ -41,7 +41,7 @@ classifiers = [ |
|
|
|
"Topic :: Internet :: WWW/HTTP", |
|
|
|
] |
|
|
|
dependencies = [ |
|
|
|
"starlette>=0.37.2,<0.41.0", |
|
|
|
"starlette>=0.40.0,<0.42.0", |
|
|
|
"pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0", |
|
|
|
"typing-extensions>=4.8.0", |
|
|
|
] |
|
|
|