From 12d965904e507248b71882fdde276bbc761e6794 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Thu, 13 Jul 2023 10:12:07 +0200 Subject: [PATCH] Version 0.29.0 (#2209) --- docs/release-notes.md | 16 ++++++++++++++++ starlette/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index aaf3b7d4..d2d69595 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 df7db864..f634f5ba 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.28.0" +__version__ = "0.29.0" -- 2.47.3