From af4c7230c2165aba31a3d4dd6988dbecfbb1fa5a Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 5 Mar 2019 00:37:08 +0100 Subject: [PATCH] 2019-03-05, Version 11.11.0 (Current) Notable Changes * n-api: * Implement date object (Jarrod Connolly) (https://github.com/nodejs/node/pull/25917) * util: * Group array elements together (Ruben Bridgewater) (https://github.com/nodejs/node/pull/26269) * Add compact depth mode (Ruben Bridgewater) (https://github.com/nodejs/node/pull/26269) * worker: * Improve integration with native addons (Anna Henningsen) (https://github.com/nodejs/node/pull/26175) --- CHANGELOG.md | 3 +- doc/api/n-api.md | 6 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V11.md | 230 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 5 files changed, 239 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a941ec57aed64..aa6eab593b2f6b 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 53d3d07f3af5da..1c26df5ba63667 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 a713d3a402e372..31028c42ea43a7 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -375,7 +375,7 @@ stream.write('With ES6');