From 3c277d7e92adf1464e41d27677fcdc05fec41a2b Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 5 Mar 2019 00:37:08 +0100 Subject: 2019-03-06, Version 11.11.0 (Current) Notable Changes * n-api: * Implement date object (Jarrod Connolly) https://github.com/nodejs/node/pull/25917 * util: * Add compact depth mode for `util.inspect()` (Ruben Bridgewater) https://github.com/nodejs/node/pull/26269 * worker: * Improve integration with native addons (Anna Henningsen) https://github.com/nodejs/node/pull/26175 * MessagePort.prototype.onmessage takes arguments closer to the Web specification now (Anna Henningsen) https://github.com/nodejs/node/pull/26082 --- CHANGELOG.md | 3 +- doc/api/n-api.md | 6 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V11.md | 228 ++++++++++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 5 files changed, 237 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a941ec57ae..aa6eab593b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,8 @@ release. -11.10.1
+11.11.0
+11.10.1
11.10.0
11.9.0
11.8.0
diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 53d3d07f3af..1c26df5ba63 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -1530,7 +1530,7 @@ structure, in most cases using a `TypedArray` will suffice. #### napi_create_date @@ -2175,7 +2175,7 @@ This API returns various properties of a `DataView`. #### napi_get_date_value @@ -2784,7 +2784,7 @@ This API checks if the `Object` passed in is a buffer. ### napi_is_date diff --git a/doc/api/util.md b/doc/api/util.md index a713d3a402e..31028c42ea4 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -375,7 +375,7 @@ stream.write('With ES6');