From 28991b7ea1609e578a2cc8b269710c95da75f17e Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 14 Dec 2024 09:59:35 +0100 Subject: [PATCH] Version 0.42.0 (#2786) * Version 0.42.0 * Change date --- docs/release-notes.md | 13 +++++++++++++ starlette/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 27f47fccf..5513005da 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,19 @@ toc_depth: 2 --- +## 0.42.0 (December 14, 2024) + +#### Added + +* Raise `ClientDisconnect` on `StreamingResponse` [#2732](https://github.com/encode/starlette/pull/2732). + +#### Fixed + +* Use ETag from headers when parsing If-Range in FileResponse [#2761](https://github.com/encode/starlette/pull/2761). +* Follow directory symlinks in `StaticFiles` when `follow_symlinks=True` [#2711](https://github.com/encode/starlette/pull/2711). +* Bump minimum `python-multipart` version to `0.0.18` [0ba8395](https://github.com/encode/starlette/commit/0ba83959e609bbd460966f092287df1bbd564cc6). +* Bump minimum `httpx` version to `0.27.0` [#2773](https://github.com/encode/starlette/pull/2773). + ## 0.41.3 (November 18, 2024) #### Fixed diff --git a/starlette/__init__.py b/starlette/__init__.py index ef838c985..92717f71e 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.41.3" +__version__ = "0.42.0"