From: Sebastián Ramírez Date: Fri, 6 Sep 2024 17:41:13 +0000 (+0200) Subject: 🔖 Release version 0.114.0 X-Git-Tag: 0.114.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bde12faea20313e4570f7cb896c201058c26e546;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.114.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 94f494375e..557498278d 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.114.0 + You can restrict form fields to only include those declared in a Pydantic model and forbid any extra field sent in the request using Pydantic's `model_config = {"extra": "forbid"}`: ```python diff --git a/fastapi/__init__.py b/fastapi/__init__.py index f785f81cd6..dce17360f9 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.113.0" +__version__ = "0.114.0" from starlette import status as status