Browse Source

🔖 Release version 0.113.0

pull/12143/head 0.113.0
Sebastián Ramírez 7 months ago
parent
commit
d86f660302
  1. 25
      docs/en/docs/release-notes.md
  2. 2
      fastapi/__init__.py

25
docs/en/docs/release-notes.md

@ -7,6 +7,31 @@ hide:
## Latest Changes
## 0.113.0
Now you can declare form fields with Pydantic models:
```python
from typing import Annotated
from fastapi import FastAPI, Form
from pydantic import BaseModel
app = FastAPI()
class FormData(BaseModel):
username: str
password: str
@app.post("/login/")
async def login(data: Annotated[FormData, Form()]):
return data
```
Read the new docs: [Form Models](https://fastapi.tiangolo.com/tutorial/request-form-models/).
### Features
* ✨ Add support for Pydantic models in `Form` parameters. PR [#12129](https://github.com/fastapi/fastapi/pull/12129) by [@tiangolo](https://github.com/tiangolo).

2
fastapi/__init__.py

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

Loading…
Cancel
Save