From 44f3886456c82e024f507c3ac0d5de733fe1e5db Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Mon, 4 Sep 2023 12:03:39 +0100 Subject: Version bump. --- docs/changes.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'docs') diff --git a/docs/changes.xml b/docs/changes.xml index a1f4d466..85edc71b 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -5,6 +5,37 @@ + + + + +NGINX Unit updated to 1.32.0. + + + + + + + + + + + Date: Wed, 11 Oct 2023 15:21:09 +0100 Subject: Rewrite and response headers mentioned in OpenAPI. --- docs/unit-openapi.yaml | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/unit-openapi.yaml b/docs/unit-openapi.yaml index 00b8f27c..784ed640 100644 --- a/docs/unit-openapi.yaml +++ b/docs/unit-openapi.yaml @@ -1,6 +1,6 @@ openapi: 3.0.0 info: - title: "NGINX Unit 1.30.0" + title: "NGINX Unit 1.31.0" description: "NGINX Unit is a lightweight and versatile application runtime that provides the essential components for your web application as a single open-source server: running application code, serving static assets, @@ -5904,6 +5904,12 @@ components: description: "Destination to which the action passes incoming requests." + rewrite: + $ref: "#/components/schemas/configRouteStepActionRewrite" + + response_headers: + $ref: "#/components/schemas/configRouteStepActionResponseHeaders" + #/config/routes/{stepIndex}/action/proxy #/config/routes/{routeName}/{stepIndex}/action/proxy configRouteStepActionProxy: @@ -5918,6 +5924,12 @@ components: description: "Socket address of an HTTP server to where the request is proxied." + rewrite: + $ref: "#/components/schemas/configRouteStepActionRewrite" + + response_headers: + $ref: "#/components/schemas/configRouteStepActionResponseHeaders" + #/config/routes/{stepIndex}/action/return #/config/routes/{routeName}/{stepIndex}/action/return configRouteStepActionReturn: @@ -5937,6 +5949,12 @@ components: type: string description: "URI; used if the return value implies redirection." + rewrite: + $ref: "#/components/schemas/configRouteStepActionRewrite" + + response_headers: + $ref: "#/components/schemas/configRouteStepActionResponseHeaders" + #/config/routes/{stepIndex}/action/share #/config/routes/{routeName}/{stepIndex}/action/share configRouteStepActionShare: @@ -5979,6 +5997,28 @@ components: description: "Turns on and off mount point resolution." default: true + rewrite: + $ref: "#/components/schemas/configRouteStepActionRewrite" + + response_headers: + $ref: "#/components/schemas/configRouteStepActionResponseHeaders" + + #/config/routes/{stepIndex}/action/rewrite + #/config/routes/{routeName}/{stepIndex}/action/rewrite + configRouteStepActionRewrite: + type: string + description: "Updates the URI of the incoming request before the action + is applied." + + #/config/routes/{stepIndex}/action/response_headers + #/config/routes/{routeName}/{stepIndex}/action/response_headers + configRouteStepActionResponseHeaders: + type: object + description: "Updates the header fields of Unit’s response before the + action is taken." + additionalProperties: + type: string + # /config/listeners/ configListeners: type: object -- cgit From b47415fb72acfd063be6dcd084cecf31178a02cd Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 19 Oct 2023 11:41:25 +0100 Subject: Prepearing for 1.31.1 release. --- docs/changes.xml | 6 +++--- docs/unit-openapi.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'docs') diff --git a/docs/changes.xml b/docs/changes.xml index 85edc71b..00282868 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -16,20 +16,20 @@ unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18 unit-jsc19 unit-jsc20 unit-wasm" - ver="1.32.0" rev="1" + ver="1.31.1" rev="1" date="" time="" packager="Nginx Packaging <nginx-packaging@f5.com>"> -NGINX Unit updated to 1.32.0. +NGINX Unit updated to 1.31.1. - diff --git a/docs/unit-openapi.yaml b/docs/unit-openapi.yaml index 784ed640..4ce26fa0 100644 --- a/docs/unit-openapi.yaml +++ b/docs/unit-openapi.yaml @@ -1,6 +1,6 @@ openapi: 3.0.0 info: - title: "NGINX Unit 1.31.0" + title: "NGINX Unit 1.31.1" description: "NGINX Unit is a lightweight and versatile application runtime that provides the essential components for your web application as a single open-source server: running application code, serving static assets, -- cgit From f5d2088a5c7d8240d4229b358ef1d8a9089e00f0 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 19 Oct 2023 11:42:05 +0100 Subject: Edited changes.xml for the 1.31.1 release. --- docs/changes.xml | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) (limited to 'docs') diff --git a/docs/changes.xml b/docs/changes.xml index 00282868..a48abecb 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -33,6 +33,64 @@ NGINX Unit updated to 1.31.1. date="" time="" packager="Nginx Packaging <nginx-packaging@f5.com>"> + + +allow to set the HTTP response status in Wasm module. + + + + + +allow uploads larger than 4GiB in Wasm module. + + + + + +application process could crash while rewriting URLs with query strings. + + + + + +requests larger than about 64MiB could cause error in Wasm module. + + + + + +when using many headers in Java module some of them could be +corrupted due to memory realocation issue. + + + + + +ServerRequest.destroy() implemented in Node.js module to make it compatible +with some frameworks that might use it. + + + + + +chunk argument of ServerResponse.write() can now be a Uint8Array to improve +compatibility with Node.js 15.0.0 and above. + + + + + +Node.JS unit-http NPM module now has appropriate default paths for +macOS/arm64 systems. + + + + + +build on musl libc with clang. + + + -- cgit From 6736841acc113cae7c2358a8f926446e8da791c1 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 19 Oct 2023 11:44:18 +0100 Subject: Added version 1.31.1 CHANGES. --- docs/changes.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/changes.xml b/docs/changes.xml index a48abecb..cd28bec3 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -17,7 +17,7 @@ unit-jsc19 unit-jsc20 unit-wasm" ver="1.31.1" rev="1" - date="" time="" + date="2023-10-19" time="18:00:00 +0300" packager="Nginx Packaging <nginx-packaging@f5.com>"> @@ -30,7 +30,7 @@ NGINX Unit updated to 1.31.1. -- cgit