🔖 Release version 0.65.3

This commit is contained in:
Sebastián Ramírez 2021-07-03 18:33:32 +02:00
parent b725e9eb45
commit 79f52c76cf
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@
## Latest Changes
## 0.65.3
### Fixes
* ♻ Assume request bodies contain JSON when no Content-Type header is provided. This fixes a breaking change introduced by [0.65.2 with PR #2118](https://github.com/tiangolo/fastapi/pull/2118). It should allow upgrading FastAPI applications with clients that send JSON data without a `Content-Type` header. And there's still protection against CSRFs. PR [#3456](https://github.com/tiangolo/fastapi/pull/3456) by [@tiangolo](https://github.com/tiangolo).

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.65.2"
__version__ = "0.65.3"
from starlette import status as status