From c60254d8c8d0eb944fe21e6f495d45e6b9599a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janek=20Nouvertn=C3=A9?= <25355197+provinzkraut@users.noreply.github.com> Date: Mon, 29 Jan 2024 19:28:22 +0100 Subject: [PATCH] v2.5.3 --- docs/release-notes/changelog.rst | 15 +++++++++++++++ pyproject.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/changelog.rst b/docs/release-notes/changelog.rst index 296e595437..3341034be0 100644 --- a/docs/release-notes/changelog.rst +++ b/docs/release-notes/changelog.rst @@ -3,6 +3,21 @@ 2.x Changelog ============= +.. changelog:: 2.5.3 + :date: 2024/01/29 + + .. change:: Handle diverging ASGI ``root_path`` behaviour + :type: bugfix + :pr: 3039 + :issue: 3041 + + Uvicorn `0.26.0 `_ + introduced a breaking change in its handling of the ASGI ``root_path`` behaviour, + which, while adhering to the spec, diverges from the interpretation of other + ASGI servers of this aspect of the spec (e.g. hypercorn and daphne do not follow + uvicorn's interpretation as of today). A fix was introduced that ensures + consistent behaviour of applications in any case. + .. changelog:: 2.5.2 :date: 2024/01/27 diff --git a/pyproject.toml b/pyproject.toml index 99050a6f24..a04fa78d6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ maintainers = [ name = "litestar" readme = "README.md" requires-python = ">=3.8,<4.0" -version = "2.5.2" +version = "2.5.3" [project.urls] Blog = "https://blog.litestar.dev"