From: Sebastián Ramírez Date: Sat, 3 Jul 2021 16:33:32 +0000 (+0200) Subject: 🔖 Release version 0.65.3 X-Git-Tag: 0.65.3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79f52c76cf19d1c3f37707049c1cd0c3ca33e7b8;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.65.3 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 442ff9f85c..a46ef4c50d 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -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). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index d04f2ea960..66a63d369c 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -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