From 1a8efba9c802c0631c827ce431af9b0546e34ccd Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Mon, 18 Nov 2024 20:43:25 +0100 Subject: [PATCH] Version 0.41.3 (#2754) --- docs/release-notes.md | 8 ++++++++ starlette/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 66186ebd2..c484234f3 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,14 @@ toc_depth: 2 --- +## 0.41.3 (November 18, 2024) + +#### Fixed + +* Exclude the query parameters from the `scope[raw_path]` on the `TestClient` [#2716](https://github.com/encode/starlette/pull/2716). +* Replace `dict` by `Mapping` on `HTTPException.headers` [#2749](https://github.com/encode/starlette/pull/2749). +* Correct middleware argument passing and improve factory pattern [#2752](https://github.com/encode/starlette/2752). + ## 0.41.2 (October 27, 2024) #### Fixed diff --git a/starlette/__init__.py b/starlette/__init__.py index b0416f28d..ef838c985 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.41.2" +__version__ = "0.41.3"