Skip to content

Commit

Permalink
Version 0.15.0 (encode#1107)
Browse files Browse the repository at this point in the history
* 🔖 Release 0.15.0

* Update CHANGELOG.md

* remove formatting

* upgrade version

* Add more commits

* Remove tooling from changelog and add note about the new reload configuration

* Update CHANGELOG.md

Co-authored-by: Thomas Grainger <[email protected]>

* Adjust date and fix typos

Co-authored-by: Marcelo Trylesinski <[email protected]>
Co-authored-by: Thomas Grainger <[email protected]>
  • Loading branch information
3 people authored Aug 13, 2021
1 parent aead4c3 commit a6dff71
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## 0.15.0 - 2021-08-13

### Added

- Change reload to be configurable with glob patterns. Currently only `.py` files are watched, which is different from the previous default behavior. (#820) 08/08/21
- Add Python 3.10-rc.1 support. Now the server uses `asyncio.run` which will: start a fresh asyncio event loop, on shutdown cancel any background tasks rather than aborting them, `aexit` any remaining async generators, and shutdown the default `ThreadPoolExecutor`. (#1070) 30/07/21
- Exit with status 3 when worker starts failed (#1077) 22/06/21
- Add option to set websocket ping interval and timeout (#1048) 09/06/21
- Adapt bind_socket to make it usable with multiple processes (#1009) 21/06/21
- Add existence check to the reload directory(ies) (#1089) 21/06/21
- Add missing trace log for websocket protocols (#1083) 19/06/21
- Support disabling default Server and Date headers (#818) 11/06/21

### Changed

- Add PEP440 compliant version of click (#1099) 29/06/21
- Bump asgiref to 3.4.0 (#1100) 29/06/21

### Fixed

- When receiving a `SIGTERM` supervisors now terminate their processes before joining them (#1069) 30/07/21
- Fix the need of `httptools` on minimal installation (#1135) 30/07/21
- Fix ping parameters annotation in Config class (#1127) 19/07/21

## 0.14.0 - 2021-06-01

### Added
Expand Down Expand Up @@ -36,7 +60,7 @@

### Added:

- Docs: Nginx + websockets (#948) 2/10/21
- Docs: Nginx + websockets (#948) 2/10/21
- Document the default value of 1 for workers (#940) (#943) 1/25/21
- Enabled permessage-deflate extension in websockets (#764) 1/1/21

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.14.0"
__version__ = "0.15.0"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit a6dff71

Please sign in to comment.