diff options
author | Dmitry Volyntsev <xeioex@nginx.com> | 2024-09-26 17:47:07 -0700 |
---|---|---|
committer | Dmitry Volyntsev <xeioexception@gmail.com> | 2024-10-01 16:30:57 -0700 |
commit | c5a29a7af8894ee1ec44ebda71ef0ea1f2a31af6 (patch) | |
tree | b7ec4545e9b46145694ba530c4a5ff1847849a03 | |
parent | 603563f2368820c9014bdeb7693f34e9ae2f98c7 (diff) | |
download | njs-0.8.6.tar.gz njs-0.8.6.zip |
Version 0.8.6.0.8.6
-rw-r--r-- | CHANGES | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -1,3 +1,41 @@ +Changes with njs 0.8.6 02 Oct 2024 + + nginx modules: + + *) Feature: introduced QuickJS engine. + + *) Feature: added optional nocache flag for js_set directive. + Thanks to Thomas P. + + *) Feature: exposed capture group variables in HTTP module. + Thanks to Thomas P. + + Core: + + *) Feature: added Buffer module for QuickJS engine. + + *) Bugfix: fixed handling of empty labelled statement in a function. + + *) Bugfix: fixed Function constructor handling when called without + arguments. + + *) Bugfix: fixed Buffer.prototype.writeInt8() and friends. + + *) Bugfix: fixed Buffer.prototype.writeFloat() and friends. + + *) Bugfix: fixed Buffer.prototype.lastIndexOf(). + + *) Bugfix: fixed Buffer.prototype.write(). + + *) Bugfix: fixed maybe-uninitialized warnings in error creation. + + *) Bugfix: fixed 'ctx.codepoint' initialization in UTF-8 decoding. + + *) Bugfix: fixed 'length' initialization in Array.prototype.pop(). + + *) Bugfix: fixed handling of encode arg in fs.readdir() and + fs.realpath(). + Changes with njs 0.8.5 25 Jun 2024 nginx modules: |