Skip to content

Commit cd18c3b

Browse files
authored
Version 0.23.0 (#2042)
1 parent 8ae2172 commit cd18c3b

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Change Log
22

3+
## 0.23.0 - 2023-07-10
4+
5+
### Added
6+
7+
- Add `--ws-max-queue` parameter WebSockets (#2033) 10/07/23
8+
9+
### Removed
10+
11+
- Drop support for Python 3.7 (#1996) 19/06/23
12+
- Remove `asgiref` as typing dependency (#1999) 08/06/23
13+
14+
### Fixed
15+
16+
- Set `scope["scheme"]` to `ws` or `wss` instead of `http` or `https` on `ProxyHeadersMiddleware` for WebSockets (#2043) 12/07/23
17+
18+
### Changed
19+
20+
- Raise `ImportError` on circular import (#2040) 09/07/23
21+
- Use `logger.getEffectiveLevel()` instead of `logger.level` to check if log level is `TRACE` (#1966) 01/06/23
22+
323
## 0.22.0 - 2023-04-28
424

525
### Added

uvicorn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from uvicorn.config import Config
22
from uvicorn.main import Server, main, run
33

4-
__version__ = "0.22.0"
4+
__version__ = "0.23.0"
55
__all__ = ["main", "run", "Config", "Server"]

0 commit comments

Comments
 (0)