Skip to content

Commit 8bfc2a3

Browse files
authored
Version 0.14.0 (#1087)
* Version 0.14.0 release preparation: write release-notes and version bump.
1 parent fe961dd commit 8bfc2a3

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

docs/release-notes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.14.0
2+
3+
November 8th, 2020
4+
5+
### Added
6+
7+
* Starlette now officially supports Python3.9.
8+
* In `StreamingResponse`, allow custom async iterator such as objects from classes implementing `__aiter__`.
9+
* Allow usage of `functools.partial` async handlers in Python versions 3.6 and 3.7.
10+
* Add 418 I'm A Teapot status code.
11+
12+
### Changed
13+
14+
* Create tasks from handler coroutines before sending them to `asyncio.wait`.
15+
* Use `format_exception` instead of `format_tb` in `ServerErrorMiddleware`'s `debug` responses.
16+
* Be more lenient with handler arguments when using the `requires` decorator.
17+
118
## 0.13.8
219

320
* Revert `Queue(maxsize=1)` fix for `BaseHTTPMiddleware` middleware classes and streaming responses.

starlette/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.13.8"
1+
__version__ = "0.14.0"

0 commit comments

Comments
 (0)