From: Marcelo Trylesinski Date: Mon, 18 Nov 2024 19:43:25 +0000 (+0100) Subject: Version 0.41.3 (#2754) X-Git-Tag: 0.41.3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a8efba9c802c0631c827ce431af9b0546e34ccd;p=thirdparty%2Fstarlette.git Version 0.41.3 (#2754) --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 66186ebd..c484234f 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 b0416f28..ef838c98 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.41.2" +__version__ = "0.41.3"