Skip to content

Commit 2b3f5e6

Browse files
authored
Version 0.17.0 (#1324)
* Release 0.17.0 * Apply suggestions from code review * Add version on init file
1 parent 6c9bc55 commit 2b3f5e6

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

docs/release-notes.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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).
19+
120
## 0.16.0
221

322
July 19, 2021

starlette/__init__.py

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

0 commit comments

Comments
 (0)