You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,22 @@
1
+
## 0.17.0
2
+
3
+
October 28, 2021
4
+
5
+
### Added
6
+
*`Response.delete_cookie` now accepts the same parameters as `Response.set_cookie`[#1228](https://github.com/encode/starlette/pull/1228).
7
+
* Update the `Jinja2Templates` constructor to allow `PathLike`[#1292](https://github.com/encode/starlette/pull/1292).
8
+
9
+
### Fixed
10
+
* Fix BadSignature exception handling in SessionMiddleware [#1264](https://github.com/encode/starlette/pull/1264).
11
+
* Change `HTTPConnection.__getitem__` return type from `str` to `typing.Any`[#1118](https://github.com/encode/starlette/pull/1118).
12
+
* Change `ImmutableMultiDict.getlist` return type from `typing.List[str]` to `typing.List[typing.Any]`[#1235](https://github.com/encode/starlette/pull/1235).
13
+
* Handle `OSError` exceptions on `StaticFiles`[#1220](https://github.com/encode/starlette/pull/1220).
14
+
* Fix `StaticFiles` 404.html in HTML mode [#1314](https://github.com/encode/starlette/pull/1314).
15
+
* Prevent anyio.ExceptionGroup in error views under a BaseHTTPMiddleware [#1262](https://github.com/encode/starlette/pull/1262).
16
+
17
+
### Removed
18
+
* Remove GraphQL support [#1198](https://github.com/encode/starlette/pull/1198).
0 commit comments