diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-12-29 19:00:54 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-12-29 19:00:54 +0300 |
commit | d3d6864bdc64f34924e686ff65da704b29aaaa93 (patch) | |
tree | cf8c42d762fd9345143c3fa5c3ecb04d250e13ee /docs/changes.xml | |
parent | 3abca42caf44f03941545e5e92f35c0f329640e7 (diff) | |
download | unit-d3d6864bdc64f34924e686ff65da704b29aaaa93.tar.gz unit-d3d6864bdc64f34924e686ff65da704b29aaaa93.tar.bz2 |
Node.js: ServerRequest and ServerResponse compliance to Stream API.
ServerRequest now inherit stream Readable object. ServerResponse
provides 'writable' property.
Thanks to Wu Jian Ping (@wujjpp).
This closes #274, closes #317 issues and closes #502 PR on GitHub.
Diffstat (limited to 'docs/changes.xml')
-rw-r--r-- | docs/changes.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/changes.xml b/docs/changes.xml index 0e334419..b97cc823 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -37,6 +37,13 @@ ability to specify multiple directories in the "path" option of Python apps. </para> </change> +<change type="feature"> +<para> +ServerRequest and ServerResponse objects of Node.js module are now compliant +to Stream API. +</para> +</change> + <change type="bugfix"> <para> invalid HTTP responses were generated for some unusual status codes. |