From e67d7433282c367df6b1599858650d8261b6e080 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 15 Feb 2024 20:10:31 +0000 Subject: Version bump --- docs/changes.xml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'docs/changes.xml') diff --git a/docs/changes.xml b/docs/changes.xml index 4d64a16d..6428d65e 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -5,6 +5,38 @@ + + + + +NGINX Unit updated to 1.33.0. + + + + + + + + + + + -- cgit From 9993814d14fa693dc8641c31bca70223895d2055 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Fri, 16 Feb 2024 18:22:35 +0000 Subject: NJS: loader should be registered using njs_vm_set_module_loader() This change makes NJS module incompatible with NJS older than 0.8.3. Therefore, the configuration version check has been adjusted accordingly. This change was introduced in NJS 0.8.3 here: --- docs/changes.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docs/changes.xml') diff --git a/docs/changes.xml b/docs/changes.xml index 6428d65e..84682308 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -34,6 +34,12 @@ NGINX Unit updated to 1.33.0. date="" time="" packager="Nginx Packaging <nginx-packaging@f5.com>"> + + +if building with NJS, version 0.8.3 or later is now required. + + + -- cgit From 6e79da4730099b6ecb79f2896e8334cb0f24e508 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Mon, 8 Apr 2024 16:38:23 +0100 Subject: Docs: njs (lowercase) is more preferred way to mention --- docs/changes.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/changes.xml') diff --git a/docs/changes.xml b/docs/changes.xml index 84682308..014155d4 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -36,7 +36,7 @@ NGINX Unit updated to 1.33.0. -if building with NJS, version 0.8.3 or later is now required. +if building with njs, version 0.8.3 or later is now required. @@ -113,7 +113,7 @@ conditional access logging. -NJS variables access. +njs variables access. @@ -450,7 +450,7 @@ basic URI rewrite support. -NJS loadable modules support. +njs loadable modules support. @@ -468,7 +468,7 @@ conditional logging of route selection. -support the keys API on the request objects in NJS. +support the keys API on the request objects in njs. @@ -542,7 +542,7 @@ stop creating world-writeable directories. -memory leak related to NJS. +memory leak related to njs. -- cgit From c3d6e5403a7927c78cf15002c161d4bfc2cd43f0 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Thu, 22 Aug 2024 22:30:12 +0100 Subject: docs/changes.xml: Add 1.33.0 changelog entries Signed-off-by: Andrew Clayton --- docs/changes.xml | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) (limited to 'docs/changes.xml') diff --git a/docs/changes.xml b/docs/changes.xml index 014155d4..c18b425d 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -34,12 +34,143 @@ NGINX Unit updated to 1.33.0. date="" time="" packager="Nginx Packaging <nginx-packaging@f5.com>"> + + +make the number of router threads configurable. + + + + + +make the listen(2) backlog configurable. + + + + + +add Python application factory support. + + + + + +add experimental chunked request body support. (Disabled by default). + + + + + +add fuzzing via oss-fuzz. + + + + + +add "if" option to the "match" object. + + + + + +show list of loaded language modules in the /status endpoint. + + + + + +Unit ships with a new Rust based CLI application "unitctl". + + + + + +the wasm-wasi-component language module now inherits the processes +environment. + + + + + +under systemd unit runs in forking mode (once again). + + + if building with njs, version 0.8.3 or later is now required. + + +Unit now builds with -std=gnu11 (C11 with GNU extensions). + + + + + +Unit now creates the full directory path for the PID file and control socket. + + + + + +build system improvements, including pretty printing the make output and +enabling various make variables to influence the build process (see: +make help). + + + + + +better detection of available runnable CPUs on Linux. + + + + + +default listen(2) backlog on Linux now defaults to Kernel default. + + + + + +don't modify REQUEST_URI. + + + + + +fix a crash when interrupting a download via a proxy. + + + + + +wasm-wasi-component application process hangs after receiving restart signal +from the control endpoint. + + + + + +njs variables accessed with a JS template literal should not be cacheable. + + + + + +properly handle deleting arrays of certificates. + + + + + +don't create the $runstatedir directory which triggered an Alpine packaging +error. + + + -- cgit