diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2024-01-26 14:58:43 +0000 |
---|---|---|
committer | andrey-zelenkov <xim.andrew@gmail.com> | 2024-02-21 14:06:43 +0000 |
commit | 697a58506235e89af1c8cc3cafc92b3d85a3467d (patch) | |
tree | 67d8cf28089e947ed59d00c24df934a8a9eea956 /docs/changes.xml | |
parent | f71ead5fa5b8bae378a0eca2bedb689cf08a8eff (diff) | |
download | unit-697a58506235e89af1c8cc3cafc92b3d85a3467d.tar.gz unit-697a58506235e89af1c8cc3cafc92b3d85a3467d.tar.bz2 |
Python: bytearray body support for ASGI module.
@filiphanes requested support for bytearray
and memoryview in the request body here:
<https://github.com/nginx/unit/issues/648>
This patch implements bytearray body support only.
Memoryview body still need to be implemented.
Diffstat (limited to '')
-rw-r--r-- | docs/changes.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/changes.xml b/docs/changes.xml index 833ec20e..ba41f00d 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -80,6 +80,12 @@ can be used as a unique request identifier. <change type="feature"> <para> +bytearray in response body for ASGI applications. +</para> +</change> + +<change type="feature"> +<para> ServerRequest.flushHeaders() implemented in Node.js module to make it compatible with Next.js. </para> |