]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🔖 Release version 0.65.3 0.65.3
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 3 Jul 2021 16:33:32 +0000 (18:33 +0200)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 3 Jul 2021 16:33:32 +0000 (18:33 +0200)
docs/en/docs/release-notes.md
fastapi/__init__.py

index 442ff9f85cc85fc9a40b4445ae2a6a003739777b..a46ef4c50d70af481d9589c814c8b9b574bd0dac 100644 (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).
index d04f2ea9605ddd2bf624667b7e806ba3eb40e2c7..66a63d369ce5ff6f519c04791f84bdf6451febfe 100644 (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