From b22ee71ef6d1d779ca161ae6bb7fcf1df8d85237 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 5 Mar 2019 00:37:08 +0100 Subject: [PATCH] 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 ++++++++++++++++++++++++++++++++ 4 files changed, 234 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a2b4b090d4183..0f4c7f97a1ec10 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 d19f20a4cf3bb2..d2b665e0bd86b0 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 ae71ad1ecf0447..2ef115bc7d4dec 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -388,7 +388,7 @@ stream.write('With ES6');