nginx modules:
- Feature: the number of nginx configuration contexts where js directives can be specified is extended.
- HTTP: the js_import, js_path, js_set, and js_var directives are allowed in
server
andlocation
contexts. The js_content, js_body_filter and js_header_filter are allowed in if context. - Stream: the js_import, js_path, js_set, and js_var are allowed in
server
context.
- HTTP: the js_import, js_path, js_set, and js_var directives are allowed in
- Feature: added
r.internal
property. - Bugfix: fixed reading response body in Fetch API.
- Bugfix: fixed js_fetch_timeout in stream.
- Bugfix: fixed socket leak with
0
fetch timeout.
Core:
- Feature: extended
fs
module. Addedfs.openSync()
,fs.promises.open()
,fs.fstatSync()
,fs.readSync()
,fs.writeSync()
.The following properties of
FileHandle
are implemented:fd
,read()
,stat()
,write()
,close()
. - Bugfix: fixed
parseInt()
,parseFloat()
,Symbol.for()
with no arguments.