mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-12 05:26:45 +00:00
🔖 Release 0.28.0
This commit is contained in:
parent
46178a5347
commit
5700d65188
2 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
## Latest changes
|
## Latest changes
|
||||||
|
|
||||||
|
## 0.28.0
|
||||||
|
|
||||||
* Implement dependency cache per request.
|
* Implement dependency cache per request.
|
||||||
* This avoids calling each dependency multiple times for the same request.
|
* This avoids calling each dependency multiple times for the same request.
|
||||||
* This is useful while calling external services, performing costly computation, etc.
|
* This is useful while calling external services, performing costly computation, etc.
|
||||||
|
|
|
||||||
|
|
@ -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.27.2"
|
__version__ = "0.28.0"
|
||||||
|
|
||||||
from starlette.background import BackgroundTasks
|
from starlette.background import BackgroundTasks
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue