diff options
author | Dmitry Volyntsev <xeioex@nginx.com> | 2024-10-21 18:04:48 -0700 |
---|---|---|
committer | Dmitry Volyntsev <xeioexception@gmail.com> | 2024-10-21 19:04:22 -0700 |
commit | ba6b9e157ef472dbcac17e32c55f3227daa3103c (patch) | |
tree | fb5b0fa62975b51e10374d2fd2ad97bc6073775d | |
parent | ed36e94242de38e88a6cc536404609fc72bf6456 (diff) | |
download | njs-0.8.7.tar.gz njs-0.8.7.zip |
Version 0.8.7.0.8.7
-rw-r--r-- | CHANGES | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,3 +1,28 @@ +Changes with njs 0.8.7 22 Oct 2024 + + nginx modules: + + *) Bugfix: eliminated unnecessary VM creation. + Previously, njs consumed memory proportionally to the number of + nginx locations. The issue was introduced in 9b674412 (0.8.6). + + *) Improvement: added strict syntax validation for js_body_filter. + + *) Improvement: improved error messages for module loading + failures. + + Core: + + *) Feature: implemented fs.readlink() and friends. + + *) Improvement: implemented lazy stack symbolization. + + *) Bugfix: fixed heap-buffer-overflow in Buffer.prototype.indexOf(). + The issue was introduced in 5d15a8d6 (0.8.6). + + *) Bugfix: fixed Buffer.prototype.lastIndexOf() when `from` is + provided. + Changes with njs 0.8.6 02 Oct 2024 nginx modules: |