# HG changeset patch # User Yaroslav Zhuravlev # Date 1579622071 0 # Node ID 9bf87153b1b3b0308fe51d63b5cc2242acf581b0 # Parent 8ed243471444576bff0d939053f972e528907229 Added Release Notes for njs-0.3.8. diff -r 8ed243471444 -r 9bf87153b1b3 xml/en/docs/njs/changes.xml --- a/xml/en/docs/njs/changes.xml Tue Jan 21 19:29:57 2020 +0300 +++ b/xml/en/docs/njs/changes.xml Tue Jan 21 15:54:31 2020 +0000 @@ -9,9 +9,190 @@
+
+ + +Release Date: +21 January 2020 + + + +nginx modules: + + + + +Feature: +added Promise support +for r.subrequest(). +If a callback is not provided, +r.subrequest() returns an ordinary +Promise object +that resolves to a subrequest response object. + + + + + +Change: +r.parent property handler now returns +undefined +instead of throwing an exception if a parent object is not available. + + + + + + + +Core: + + + + +Feature: +added Promise support. +Implemented according to the specification without: +Promise.all(), +Promise.allSettled(), +Promise.race(). + + + + + +Feature: +added initial Typed-arrays support. +Thanks to Tiago Natel de Moura. + + + + + +Feature: +added ArrayBuffer support. +Thanks to Tiago Natel de Moura. + + + + + +Feature: +added initial Symbol support. +Thanks to Artem S. Povalyukhin. + + + + + +Feature: +added externals support for JSON.stringify(). + + + + + +Feature: +added Object.is(). +Thanks to Artem S. Povalyukhin. + + + + + +Feature: +added Object.setPrototypeOf(). +Thanks to Artem S. Povalyukhin. + + + + + +Bugfix: +fixed +Object.getPrototypeOf() +according to the specification. + + + + + +Bugfix: +fixed +Object.prototype.valueOf() +according to the specification. + + + + + +Bugfix: +fixed +JSON.stringify() +with unprintable values and replacer function. + + + + + +Bugfix: +fixed operator in +according to the specification. + + + + + +Bugfix: +fixed +Object.defineProperties() +according to the specification. + + + + + +Bugfix: +fixed +Object.create() +according to the specification. +Thanks to Artem S. Povalyukhin. + + + + + +Bugfix: +fixed +Number.prototype.toString(radix) +when fast-math is enabled. + + + + + +Bugfix: +fixed RegExp() instance properties. + + + + + +Bugfix: +fixed import segfault. +Thanks to 洪志道 (Hong Zhi Dao). + + + + + + +
+ +