Version 0.42.0 (#2852)

* Version 0.42.0

* Remove benchmark entries from release notes

* Remove docs entry from release notes
This commit is contained in:
Marcelo Trylesinski 2026-03-16 07:11:15 +01:00 committed by GitHub
parent d8f2501316
commit 02bed6f8c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 1 deletions

View File

@ -2,6 +2,17 @@
toc_depth: 2
---
## 0.42.0 (March 16, 2026)
### Changed
* Use `bytearray` for request body accumulation to avoid O(n^2) allocation on fragmented bodies (#2845)
### Fixed
* Escape brackets and backslash in httptools `HEADER_RE` regex (#2824)
* Fix multiple issues in websockets sans-io implementation (#2825)
## 0.41.0 (February 16, 2026)
### Added

View File

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