Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.18.0 #1524

Merged
merged 7 commits into from Jun 23, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,22 @@
# Change Log

## 0.18.0 - 2022-06-18
Kludex marked this conversation as resolved.
Show resolved Hide resolved

### Added

- The `reload` flag prioritizes `watchfiles` instead of the deprecated `watchgod` (#1437) 18/06/22
- Annotate `uvicorn.run()` function (#1423) 10/05/22
Kludex marked this conversation as resolved.
Show resolved Hide resolved
Kludex marked this conversation as resolved.
Show resolved Hide resolved
Kludex marked this conversation as resolved.
Show resolved Hide resolved

### Removed

- Remove `asgiref` dependency (#1532) 22/06/22

### Fixed

- Turn `raw_path` into bytes on both websockets implementations (#1487) 16/05/22
- Revert log exception traceback in case of invalid HTTP request (#1518) 14/06/22
Kludex marked this conversation as resolved.
Show resolved Hide resolved
- Set `asyncio.WindowsSelectorEventLoopPolicy()` when using multiple workers to avoid "WinError 87" (#1454) 22/06/22

## 0.17.6 - 2022-03-11

### Changed
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.17.6"
__version__ = "0.18.0"
__all__ = ["main", "run", "Config", "Server"]