]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Version 0.17.0 (#1324) 0.17.0
authorMarcelo Trylesinski <marcelotryle@gmail.com>
Thu, 4 Nov 2021 09:48:30 +0000 (10:48 +0100)
committerGitHub <noreply@github.com>
Thu, 4 Nov 2021 09:48:30 +0000 (10:48 +0100)
* Release 0.17.0

* Apply suggestions from code review

* Add version on init file

docs/release-notes.md
starlette/__init__.py

index 7305046f9df5a2d738a66b37e2714ef18ed20f1f..e72cb4f763481600e24ce7b6e2250501b29cda49 100644 (file)
@@ -1,3 +1,22 @@
+## 0.17.0
+
+October 28, 2021
+
+### Added
+* `Response.delete_cookie` now accepts the same parameters as `Response.set_cookie` [#1228](https://github.com/encode/starlette/pull/1228).
+* Update the `Jinja2Templates` constructor to allow `PathLike` [#1292](https://github.com/encode/starlette/pull/1292).
+
+### Fixed
+* Fix BadSignature exception handling in SessionMiddleware [#1264](https://github.com/encode/starlette/pull/1264).
+* Change `HTTPConnection.__getitem__` return type from `str` to `typing.Any` [#1118](https://github.com/encode/starlette/pull/1118).
+* Change `ImmutableMultiDict.getlist` return type from `typing.List[str]` to `typing.List[typing.Any]` [#1235](https://github.com/encode/starlette/pull/1235).
+* Handle `OSError` exceptions on `StaticFiles` [#1220](https://github.com/encode/starlette/pull/1220).
+* Fix `StaticFiles` 404.html in HTML mode [#1314](https://github.com/encode/starlette/pull/1314).
+* Prevent anyio.ExceptionGroup in error views under a BaseHTTPMiddleware [#1262](https://github.com/encode/starlette/pull/1262).
+
+### Removed
+* Remove GraphQL support [#1198](https://github.com/encode/starlette/pull/1198).
+
 ## 0.16.0
 
 July 19, 2021
index 5a313cc7ef4af1ec1829732ee059788808655b76..fd86b3ee9151335d2cfaf2f581bb4c9fc96e0838 100644 (file)
@@ -1 +1 @@
-__version__ = "0.16.0"
+__version__ = "0.17.0"