From: Marcelo Trylesinski Date: Sat, 28 May 2022 07:58:34 +0000 (+0200) Subject: Version 0.20.1 (#1644) X-Git-Tag: 0.20.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d81545c71a7988cfd57c613be02f4661449c0793;p=thirdparty%2Fstarlette.git Version 0.20.1 (#1644) * Version 0.20.1 * Update docs/release-notes.md * Update release-notes.md * Update release-notes.md * Update release-notes.md --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 1e5d1d0e..f6d59e6d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,14 @@ +## 0.20.1 + +May 28, 2022 + +### Fixed +* Improve detection of async callables [#1444](https://github.com/encode/starlette/pull/1444). +* Send 400 (Bad Request) when `boundary` is missing [#1617](https://github.com/encode/starlette/pull/1617). +* Send 400 (Bad Request) when missing "name" field on `Content-Disposition` header [#1643](https://github.com/encode/starlette/pull/1643). +* Do not send empty data to `StreamingResponse` on `BaseHTTPMiddleware` [#1609](https://github.com/encode/starlette/pull/1609). +* Add `__bool__` dunder for `Secret` [#1625](https://github.com/encode/starlette/pull/1625). + ## 0.20.0 May 3, 2022 diff --git a/starlette/__init__.py b/starlette/__init__.py index 5f4bb0b3..ac824046 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.20.0" +__version__ = "0.20.1"