From 4561f154dbb075c1222ecf505664991ade4ecba5 Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Wed, 9 Nov 2022 08:03:23 +0100 Subject: [PATCH] chore(3.1.1): render `towncrier` newsfragments --- docs/_newsfragments/2043.bugfix.rst | 3 --- docs/_newsfragments/2100.bugfix.rst | 2 -- docs/changes/3.1.1.rst | 10 +++++++++- 3 files changed, 9 insertions(+), 6 deletions(-) delete mode 100644 docs/_newsfragments/2043.bugfix.rst delete mode 100644 docs/_newsfragments/2100.bugfix.rst diff --git a/docs/_newsfragments/2043.bugfix.rst b/docs/_newsfragments/2043.bugfix.rst deleted file mode 100644 index 5f77808bb..000000000 --- a/docs/_newsfragments/2043.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Request attributes :attr:`~falcon.Request.forwarded_scheme` and -:attr:`~falcon.Request.forwarded_host` now no longer raise an ``IndexError`` -while processing an invalid or empty ``Forwarded`` header. diff --git a/docs/_newsfragments/2100.bugfix.rst b/docs/_newsfragments/2100.bugfix.rst deleted file mode 100644 index dd9091e3b..000000000 --- a/docs/_newsfragments/2100.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -The ``orjson`` library now works correctly when used as JSON serializer in -the media handlers in the ASGI version of Falcon. diff --git a/docs/changes/3.1.1.rst b/docs/changes/3.1.1.rst index e5983e2ea..262999b87 100644 --- a/docs/changes/3.1.1.rst +++ b/docs/changes/3.1.1.rst @@ -18,7 +18,15 @@ Changes to Supported Platforms will no longer be supported in Falcon 4.0. -.. towncrier release notes start +Fixed +----- + +- Request attributes :attr:`~falcon.Request.forwarded_scheme` and + :attr:`~falcon.Request.forwarded_host` now no longer raise an ``IndexError`` + while processing an invalid or empty ``Forwarded`` header. (`#2043 `__) +- The ``orjson`` library now works correctly when used as JSON serializer in + the media handlers in the ASGI version of Falcon. (`#2100 `__) + Contributors to this Release ----------------------------