Skip to content

Commit

Permalink
Version 0.23.0 (#2042)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex authored Jul 15, 2023
1 parent 8ae2172 commit cd18c3b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log

## 0.23.0 - 2023-07-10

### Added

- Add `--ws-max-queue` parameter WebSockets (#2033) 10/07/23

### Removed

- Drop support for Python 3.7 (#1996) 19/06/23
- Remove `asgiref` as typing dependency (#1999) 08/06/23

### Fixed

- Set `scope["scheme"]` to `ws` or `wss` instead of `http` or `https` on `ProxyHeadersMiddleware` for WebSockets (#2043) 12/07/23

### Changed

- Raise `ImportError` on circular import (#2040) 09/07/23
- Use `logger.getEffectiveLevel()` instead of `logger.level` to check if log level is `TRACE` (#1966) 01/06/23

## 0.22.0 - 2023-04-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.22.0"
__version__ = "0.23.0"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit cd18c3b

Please sign in to comment.