diff options
author | Valentin Bartenev <vbart@nginx.com> | 2020-08-13 19:22:41 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2020-08-13 19:22:41 +0300 |
commit | b8c7bc5a47c422cf6e3147e567bd386bcfdd46a3 (patch) | |
tree | e66016341bd0becc19f25682052298e3a23b9741 | |
parent | 479fdff39d3d213c6067ca34ef3b7476bd2b7826 (diff) | |
download | unit-b8c7bc5a47c422cf6e3147e567bd386bcfdd46a3.tar.gz unit-b8c7bc5a47c422cf6e3147e567bd386bcfdd46a3.tar.bz2 |
Added version 1.19.0 CHANGES.
-rw-r--r-- | CHANGES | 38 | ||||
-rw-r--r-- | docs/changes.xml | 118 |
2 files changed, 156 insertions, 0 deletions
@@ -1,4 +1,42 @@ +Changes with Unit 1.19.0 13 Aug 2020 + + *) Feature: reworked IPC between the router process and the applications + to lower latencies, increase performance, and improve scalability. + + *) Feature: support for an arbitrary number of wildcards in route + matching patterns. + + *) Feature: chunked transfer encoding in proxy responses. + + *) Feature: basic variables support in the "pass" option. + + *) Feature: compatibility with PHP 8 Beta 1. Thanks to Remi Collet. + + *) Bugfix: the router process could crash while passing requests to an + application under high load. + + *) Bugfix: a number of language modules failed to build on some systems; + the bug had appeared in 1.18.0. + + *) Bugfix: time in error log messages from PHP applications could lag. + + *) Bugfix: reconfiguration requests could hang if an application had + failed to start; the bug had appeared in 1.18.0. + + *) Bugfix: memory leak during reconfiguration. + + *) Bugfix: the daemon didn't start without language modules; the bug had + appeared in 1.18.0. + + *) Bugfix: the router process could crash at exit. + + *) Bugfix: Node.js applications could crash at exit. + + *) Bugfix: the Ruby module could be linked against a wrong library + version. + + Changes with Unit 1.18.0 28 May 2020 *) Feature: the "rootfs" isolation option for changing root filesystem diff --git a/docs/changes.xml b/docs/changes.xml index f3ec7518..b3b8a201 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -13,6 +13,124 @@ unit-perl unit-ruby unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11" + ver="1.19.0" rev="1" + date="2020-08-13" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change> +<para> +NGINX Unit updated to 1.19.0. +</para> +</change> + +</changes> + + +<changes apply="unit" ver="1.19.0" rev="1" + date="2020-08-13" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change type="feature"> +<para> +reworked IPC between the router process and the applications to lower latencies, +increase performance, and improve scalability. +</para> +</change> + +<change type="feature"> +<para> +support for an arbitrary number of wildcards in route matching patterns. +</para> +</change> + +<change type="feature"> +<para> +chunked transfer encoding in proxy responses. +</para> +</change> + +<change type="feature"> +<para> +basic variables support in the "pass" option. +</para> +</change> + +<change type="feature"> +<para> +compatibility with PHP 8 Beta 1. +Thanks to Remi Collet. +</para> +</change> + +<change type="bugfix"> +<para> +the router process could crash while passing requests to an application under +high load. +</para> +</change> + +<change type="bugfix"> +<para> +a number of language modules failed to build on some systems; +the bug had appeared in 1.18.0. +</para> +</change> + +<change type="bugfix"> +<para> +time in error log messages from PHP applications could lag. +</para> +</change> + +<change type="bugfix"> +<para> +reconfiguration requests could hang if an application had failed to start; +the bug had appeared in 1.18.0. +</para> +</change> + +<change type="bugfix"> +<para> +memory leak during reconfiguration. +</para> +</change> + +<change type="bugfix"> +<para> +the daemon didn't start without language modules; +the bug had appeared in 1.18.0. +</para> +</change> + +<change type="bugfix"> +<para> +the router process could crash at exit. +</para> +</change> + +<change type="bugfix"> +<para> +Node.js applications could crash at exit. +</para> +</change> + +<change type="bugfix"> +<para> +the Ruby module could be linked against a wrong library version. +</para> +</change> + +</changes> + + +<changes apply="unit-php + unit-python unit-python2.7 + unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7 + unit-python3.8 + unit-go + unit-perl + unit-ruby + unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11" ver="1.18.0" rev="1" date="2020-05-28" time="18:00:00 +0300" packager="Andrei Belov <defan@nginx.com>"> |