Version 0.44.0 (#2890)

This commit is contained in:
Marcelo Trylesinski 2026-04-06 11:21:24 +02:00 committed by GitHub
parent 029be08867
commit edb54c43c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,12 @@
toc_depth: 2
---
## 0.44.0 (April 6, 2026)
### Added
* Implement websocket keepalive pings for websockets-sansio (#2888)
## 0.43.0 (April 3, 2026)
You can quit Uvicorn now. We heard you, @pamelafox - all 47 of your Ctrl+C's (thanks for flagging it, and thanks to @tiangolo for the fix 🙏). [See the tweet](https://x.com/pamelafox/status/2039097686155227623).

View File

@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run
__version__ = "0.43.0"
__version__ = "0.44.0"
__all__ = ["main", "run", "Config", "Server"]