Added version 1.9 CHANGES.
This commit is contained in:
31
CHANGES
31
CHANGES
@@ -1,4 +1,35 @@
|
|||||||
|
|
||||||
|
Changes with Unit 1.9.0 30 May 2019
|
||||||
|
|
||||||
|
*) Feature: request routing by arguments, headers, and cookies.
|
||||||
|
|
||||||
|
*) Feature: route matching patterns allow a wildcard in the middle.
|
||||||
|
|
||||||
|
*) Feature: POST operation for appending elements to arrays in
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
*) Feature: support for changing credentials using CAP_SETUID and
|
||||||
|
CAP_SETGID capabilities on Linux without running main process as
|
||||||
|
privileged user.
|
||||||
|
|
||||||
|
*) Bugfix: memory leak in the router process might have happened when a
|
||||||
|
client prematurely closed the connection.
|
||||||
|
|
||||||
|
*) Bugfix: applying a large configuration might have failed.
|
||||||
|
|
||||||
|
*) Bugfix: PUT and DELETE operations on array elements in configuration
|
||||||
|
did not work.
|
||||||
|
|
||||||
|
*) Bugfix: request schema in applications did not reflect TLS
|
||||||
|
connections.
|
||||||
|
|
||||||
|
*) Bugfix: restored compatibility with Node.js applications that use
|
||||||
|
ServerResponse._implicitHeader() function; the bug had appeared in
|
||||||
|
1.7.
|
||||||
|
|
||||||
|
*) Bugfix: various compatibility issues with Node.js applications.
|
||||||
|
|
||||||
|
|
||||||
Changes with Unit 1.8.0 01 Mar 2019
|
Changes with Unit 1.8.0 01 Mar 2019
|
||||||
|
|
||||||
*) Change: now three numbers are always used for versioning: major,
|
*) Change: now three numbers are always used for versioning: major,
|
||||||
|
|||||||
103
docs/changes.xml
103
docs/changes.xml
@@ -5,6 +5,109 @@
|
|||||||
<change_log title="unit">
|
<change_log title="unit">
|
||||||
|
|
||||||
|
|
||||||
|
<changes apply="unit-go1.11" ver="1.9.0" rev="1"
|
||||||
|
date="2019-05-30" time="18:00:00 +0300"
|
||||||
|
packager="Andrei Belov <defan@nginx.com>">
|
||||||
|
|
||||||
|
<change>
|
||||||
|
<para>
|
||||||
|
Initial release of Go 1.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
|
||||||
|
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11"
|
||||||
|
ver="1.9.0" rev="1"
|
||||||
|
date="2019-05-30" time="18:00:00 +0300"
|
||||||
|
packager="Andrei Belov <defan@nginx.com>">
|
||||||
|
|
||||||
|
<change>
|
||||||
|
<para>
|
||||||
|
NGINX Unit updated to 1.9.0.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
</changes>
|
||||||
|
|
||||||
|
|
||||||
|
<changes apply="unit" ver="1.9.0" rev="1"
|
||||||
|
date="2019-05-30" time="18:00:00 +0300"
|
||||||
|
packager="Andrei Belov <defan@nginx.com>">
|
||||||
|
|
||||||
|
<change type="feature">
|
||||||
|
<para>
|
||||||
|
request routing by arguments, headers, and cookies.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="feature">
|
||||||
|
<para>
|
||||||
|
route matching patterns allow a wildcard in the middle.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="feature">
|
||||||
|
<para>
|
||||||
|
POST operation for appending elements to arrays in configuration.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="feature">
|
||||||
|
<para>
|
||||||
|
support for changing credentials using CAP_SETUID and CAP_SETGID capabilities
|
||||||
|
on Linux without running main process as privileged user.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="bugfix">
|
||||||
|
<para>
|
||||||
|
memory leak in the router process might have happened when a client
|
||||||
|
prematurely closed the connection.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="bugfix">
|
||||||
|
<para>
|
||||||
|
applying a large configuration might have failed.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="bugfix">
|
||||||
|
<para>
|
||||||
|
PUT and DELETE operations on array elements in configuration did not work.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="bugfix">
|
||||||
|
<para>
|
||||||
|
request schema in applications did not reflect TLS connections.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="bugfix">
|
||||||
|
<para>
|
||||||
|
restored compatibility with Node.js applications that use
|
||||||
|
ServerResponse._implicitHeader() function; the bug had appeared in 1.7.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
<change type="bugfix">
|
||||||
|
<para>
|
||||||
|
various compatibility issues with Node.js applications.
|
||||||
|
</para>
|
||||||
|
</change>
|
||||||
|
|
||||||
|
</changes>
|
||||||
|
|
||||||
|
|
||||||
<changes apply="unit-jsc-common" ver="1.8.0" rev="1"
|
<changes apply="unit-jsc-common" ver="1.8.0" rev="1"
|
||||||
date="2019-03-01" time="18:00:00 +0300"
|
date="2019-03-01" time="18:00:00 +0300"
|
||||||
packager="Andrei Belov <defan@nginx.com>">
|
packager="Andrei Belov <defan@nginx.com>">
|
||||||
|
|||||||
Reference in New Issue
Block a user