Skip to content

Commit

Permalink
Version 0.20.0 (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Nov 20, 2022
1 parent 41156aa commit 448be75
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,26 @@
# Change Log

## 0.20.0 - 2022-11-20

### Added

- Check if handshake is completed before sending frame on `wsproto` shutdown (#1737)
- Add default headers to WebSockets implementations (#1606 & #1747) 28/10/22
- Warn user when `reload` and `workers` flag are used together (#1731) 31/10/22

### Fixed

- Use correct `WebSocket` error codes on `close` (#1753) 20/11/22
- Send disconnect event on connection lost for `wsproto` (#996) 29/10/22
- Add `SIGQUIT` handler to `UvicornWorker` (#1710) 01/11/22
- Fix crash on exist with "--uds" if socket doesn't exist (#1725) 27/10/22
- Annotate `CONFIG_KWARGS` in `UvicornWorker` class (#1746) 31/10/22

### Removed

- Remove conditional on `RemoteProtocolError.event_hint` on `wsproto` (#1486) 31/10/22
- Remove unused `handle_no_connect` on `wsproto` implementation (#1759) 17/11/22

## 0.19.0 - 2022-10-19

### Added
Expand All @@ -14,7 +35,7 @@
- Set `propagate` to `False` on "uvicorn" logger (#1288) 08/10/22
- USR1 signal is now handled correctly on `UvicornWorker`. (#1565) 26/08/22
- Use path with query string on `WebSockets` logs (#1385) 11/09/22
- Fix behavior on which "Date" headers were not updated on the same connection (#1706) 19/10/22
- Fix behavior on which "Date" headers were not updated on the same connection (#1706) 19/10/22

### Removed

Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.19.0"
__version__ = "0.20.0"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit 448be75

Please sign in to comment.