mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-12 13:36:41 +00:00
🔖 Release version 0.22.0
This commit is contained in:
parent
e92b43b5c8
commit
56ab106bbb
2 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
## Next release
|
## Next release
|
||||||
|
|
||||||
|
## 0.22.0
|
||||||
|
|
||||||
* Add support for `dependencies` parameter:
|
* Add support for `dependencies` parameter:
|
||||||
* A parameter in *path operation decorators*, for dependencies that should be executed but the return value is not important or not used in the *path operation function*.
|
* A parameter in *path operation decorators*, for dependencies that should be executed but the return value is not important or not used in the *path operation function*.
|
||||||
* A parameter in the `.include_router()` method of FastAPI applications and routers, to include dependencies that should be executed in each *path operation* in a router.
|
* A parameter in the `.include_router()` method of FastAPI applications and routers, to include dependencies that should be executed in each *path operation* in a router.
|
||||||
|
|
|
||||||
|
|
@ -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.21.0"
|
__version__ = "0.22.0"
|
||||||
|
|
||||||
from starlette.background import BackgroundTasks
|
from starlette.background import BackgroundTasks
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue