diff options
-rw-r--r-- | CHANGES | 28 | ||||
-rw-r--r-- | docs/Makefile | 3 | ||||
-rw-r--r-- | docs/changes.xml | 141 |
3 files changed, 171 insertions, 1 deletions
@@ -1,4 +1,32 @@ +Changes with Unit 1.8.0 01 Mar 2019 + + *) Change: now three numbers are always used for versioning: major, + minor, and patch versions. + + *) Change: now QUERY_STRING is always defined even if the request does + not include the query component. + + *) Feature: basic internal request routing by Host, URI, and method. + + *) Feature: experimental support for Java Servlet Containers. + + *) Bugfix: segmentation fault might have occurred in the router process. + + *) Bugfix: various potential memory leaks. + + *) Bugfix: TLS connections might have stalled. + + *) Bugfix: some Perl applications might have failed to send the response + body. + + *) Bugfix: some compilers with specific flags might have produced + non-functioning builds; the bug had appeared in 1.5. + + *) Bugfix: Node.js package had wrong version number when installed from + sources. + + Changes with Unit 1.7.1 07 Feb 2019 *) Security: a heap memory buffer overflow might have been caused in the diff --git a/docs/Makefile b/docs/Makefile index 1f0ba451..ef9e596e 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -11,7 +11,8 @@ PACKAGES= unit \ unit-python3.5 unit-python3.6 unit-python3.7 \ unit-go unit-go1.7 unit-go1.8 unit-go1.9 unit-go1.10 \ unit-perl \ - unit-ruby + unit-ruby \ + unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 all: changes changelogs diff --git a/docs/changes.xml b/docs/changes.xml index ea4298ba..e4b8158d 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -5,6 +5,147 @@ <change_log title="unit"> +<changes apply="unit-jsc-common" ver="1.8.0" rev="1" + date="2019-03-01" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change> +<para> +Initial release of Java common packages for NGINX Unit. +</para> +</change> + +</changes> + + +<changes apply="unit-jsc8" ver="1.8.0" rev="1" + date="2019-03-01" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change> +<para> +Initial release of Java 8 module for NGINX Unit. +</para> +</change> + +</changes> + + +<changes apply="unit-jsc10" ver="1.8.0" rev="1" + date="2019-03-01" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change> +<para> +Initial release of Java 10 module for NGINX Unit. +</para> +</change> + +</changes> + + +<changes apply="unit-jsc11" ver="1.8.0" rev="1" + date="2019-03-01" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change> +<para> +Initial release of Java 11 module for NGINX Unit. +</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-go unit-go1.7 unit-go1.8 unit-go1.9 unit-go1.10 + unit-perl + unit-ruby" + ver="1.8.0" rev="1" + date="2019-03-01" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change> +<para> +NGINX Unit updated to 1.8.0. +</para> +</change> + +</changes> + + +<changes apply="unit" ver="1.8.0" rev="1" + date="2019-03-01" time="18:00:00 +0300" + packager="Andrei Belov <defan@nginx.com>"> + +<change type="change"> +<para> +now three numbers are always used for versioning: major, minor, +and patch versions. +</para> +</change> + +<change type="change"> +<para> +now QUERY_STRING is always defined even if the request does not include +the query component. +</para> +</change> + +<change type="feature"> +<para> +basic internal request routing by Host, URI, and method. +</para> +</change> + +<change type="feature"> +<para> +experimental support for Java Servlet Containers. +</para> +</change> + +<change type="bugfix"> +<para> +segmentation fault might have occurred in the router process. +</para> +</change> + +<change type="bugfix"> +<para> +various potential memory leaks. +</para> +</change> + +<change type="bugfix"> +<para> +TLS connections might have stalled. +</para> +</change> + +<change type="bugfix"> +<para> +some Perl applications might have failed to send the response body. +</para> +</change> + +<change type="bugfix"> +<para> +some compilers with specific flags might have produced non-functioning builds; +the bug had appeared in 1.5. +</para> +</change> + +<change type="bugfix"> +<para> +Node.js package had wrong version number when installed from sources. +</para> +</change> + +</changes> + + <changes apply="unit-php unit-python unit-python2.7 unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7 |