diff --git a/docs/release-notes.md b/docs/release-notes.md index aaf3b7d4c..d2d695952 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,19 @@ +## 0.29.0 + +July 13, 2023 + +### Added + +* Add `follow_redirects` parameter to `TestClient` [#2207](https://github.com/encode/starlette/pull/2207). +* Add `__str__` to `HTTPException` and `WebSocketException` [#2181](https://github.com/encode/starlette/pull/2181). +* Warn users when using `lifespan` together with `on_startup`/`on_shutdown` [#2193](https://github.com/encode/starlette/pull/2193). +* Collect routes from `Host` to generate the OpenAPI schema [#2183](https://github.com/encode/starlette/pull/2183). +* Add `request` argument to `TemplateResponse` [#2191](https://github.com/encode/starlette/pull/2191). + +### Fixed + +* Stop `body_stream` in case `more_body=False` on `BaseHTTPMiddleware` [#2194](https://github.com/encode/starlette/pull/2194). + ## 0.28.0 June 7, 2023 diff --git a/starlette/__init__.py b/starlette/__init__.py index df7db8648..f634f5ba5 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.28.0" +__version__ = "0.29.0"