From e958ead5afdf2795109ffbaeea2de2ecf3636edd Mon Sep 17 00:00:00 2001 From: Dmitry Volyntsev Date: Tue, 16 Feb 2021 13:24:47 +0000 Subject: [PATCH] Version 0.5.1. --- CHANGES | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGES b/CHANGES index 68be54cb..aff4d320 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,37 @@ +Changes with njs 0.5.1 16 Feb 2021 + + nginx modules: + + *) Feature: introduced ngx.fetch() method implementing Fetch API. + The following init options are supported: + body, headers, buffer_size (nginx specific), + max_response_body_size (nginx specific), method. + + The following properties and methods of Response object are + implemented: arrayBuffer(), bodyUsed, json(), headers, ok, + redirect, status, statusText, text(), type, url. + + The following properties and methods of Header object are + implemented: get(), getAll(), has(). + + Notable limitations: only the http:// scheme is supported, + redirects are not handled. + + In collaboration with 洪志道 (Hong Zhi Dao). + + *) Feature: added the "js_header_filter" directive. + + *) Bugfix: fixed processing buffered data in body filter + in stream module. + + Core: + + *) Bugfix: fixed safe mode bypass in Function constructor. + + *) Bugfix: fixed Date.prototype.toISOString() with invalid date + values. + Changes with njs 0.5.0 01 Dec 2020 nginx modules: -- 2.47.3