mirror of https://github.com/tiangolo/fastapi.git
🔖 Release version 0.45.0
This commit is contained in:
parent
4e09feda9e
commit
c7c69586ae
|
|
@ -1,5 +1,7 @@
|
||||||
## Latest changes
|
## Latest changes
|
||||||
|
|
||||||
|
## 0.45.0
|
||||||
|
|
||||||
* Add support for OpenAPI Callbacks:
|
* Add support for OpenAPI Callbacks:
|
||||||
* New docs: [OpenAPI Callbacks](https://fastapi.tiangolo.com/tutorial/openapi-callbacks/).
|
* New docs: [OpenAPI Callbacks](https://fastapi.tiangolo.com/tutorial/openapi-callbacks/).
|
||||||
* Refactor generation of `operationId`s to be valid Python names (also valid variables in most languages).
|
* Refactor generation of `operationId`s to be valid Python names (also valid variables in most languages).
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
||||||
|
|
||||||
__version__ = "0.44.1"
|
__version__ = "0.45.0"
|
||||||
|
|
||||||
from starlette.background import BackgroundTasks
|
from starlette.background import BackgroundTasks
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue