summaryrefslogtreecommitdiffhomepage
path: root/CHANGES
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2020-10-08 19:19:31 +0300
committerAndrei Belov <defan@nginx.com>2020-10-08 19:19:31 +0300
commitd586ac9fdc4a86c142b06a75dde4cdacad5b52f6 (patch)
tree9817282396f9d2cf5333050e4b5bf807d3617e40 /CHANGES
parent9be35d9b7418c041e5177f273c20f0fd2d3f00ad (diff)
parentad516735a65fe109773b60e26214a071411f1734 (diff)
downloadunit-1.20.0-1.tar.gz
unit-1.20.0-1.tar.bz2
Merged with the default branch.1.20.0-1
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES47
1 files changed, 47 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 236371e1..0373bb6f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,51 @@
+Changes with Unit 1.20.0 08 Oct 2020
+
+ *) Change: the PHP module is now initialized before chrooting; this
+ enables loading all extensions from the host system.
+
+ *) Change: AVIF and APNG image formats added to the default MIME type
+ list.
+
+ *) Change: functional tests migrated to the pytest framework.
+
+ *) Feature: the Python module now fully supports applications that use
+ the ASGI 3.0 server interface.
+
+ *) Feature: the Python module now has a built-in WebSocket server
+ implementation for applications, compatible with the HTTP & WebSocket
+ ASGI Message Format 2.1 specification.
+
+ *) Feature: automatic mounting of an isolated "/tmp" file system into
+ chrooted application environments.
+
+ *) Feature: the $host variable contains a normalized "Host" request
+ value.
+
+ *) Feature: the "callable" option sets Python application callable
+ names.
+
+ *) Feature: compatibility with PHP 8 RC 1. Thanks to Remi Collet.
+
+ *) Feature: the "automount" option in the "isolation" object allows to
+ turn off the automatic mounting of language module dependencies.
+
+ *) Bugfix: "pass"-ing requests to upstreams from a route was broken; the
+ bug had appeared in 1.19.0. Thanks to 洪志道 (Hong Zhi Dao) for
+ discovering and fixing it.
+
+ *) Bugfix: the router process could crash during reconfiguration.
+
+ *) Bugfix: a memory leak occurring in the router process; the bug had
+ appeared in 1.18.0.
+
+ *) Bugfix: the "!" (non-empty) pattern was matched incorrectly; the bug
+ had appeared in 1.19.0.
+
+ *) Bugfix: fixed building on platforms without sendfile() support,
+ notably NetBSD; the bug had appeared in 1.16.0.
+
+
Changes with Unit 1.19.0 13 Aug 2020
*) Feature: reworked IPC between the router process and the applications