From 8fc5a9164fdcf4abcafaa0ab3eb2efbccb2e8f17 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Thu, 19 Mar 2020 18:06:32 -0400 Subject: [PATCH] 2020-03-24 Version 13.12.0 (Current) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes: * [a44da56254] - (SEMVER-MINOR) doc: update stability of report features (Colin Ihrig) https://github.com/nodejs/node/pull/32242 * [306ed96c30] - (SEMVER-MINOR) doc,lib,src,test: make --experimental-report a nop (Colin Ihrig) https://github.com/nodejs/node/pull/32242 * [ea7f89da96] - (SEMVER-MINOR) test: remove common.skipIfReportDisabled() (Colin Ihrig) https://github.com/nodejs/node/pull/32242 * [3f1f5189e5] - (SEMVER-MINOR) build: make --without-report a no-op (Colin Ihrig) https://github.com/nodejs/node/pull/32242 * [36ab39fc82] - (SEMVER-MINOR) build: remove node_report option in node.gyp (Colin Ihrig) https://github.com/nodejs/node/pull/32242 * [514b7c2744] - (SEMVER-MINOR) src: unconditionally include report feature (Colin Ihrig) https://github.com/nodejs/node/pull/32242 * [435fbbccb4] - (SEMVER-MINOR) worker: allow URL in Worker constructor (Antoine du HAMEL) https://github.com/nodejs/node/pull/31664 * [975d6b0144] - (SEMVER-MINOR) util: use a global symbol for `util.promisify.custom` (ExE Boss) https://github.com/nodejs/node/pull/31672 --- CHANGELOG.md | 3 +- doc/api/cli.md | 14 +++---- doc/api/process.md | 18 ++++----- doc/api/util.md | 2 +- doc/api/worker_threads.md | 2 +- doc/changelogs/CHANGELOG_V13.md | 72 ++++++++++++++++++++++++++++++++- src/node_version.h | 6 +-- 7 files changed, 94 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca3a8d3872bbf1..b39ee54a9e3fd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,8 @@ release. -13.11.0
+13.12.0
+13.11.0
13.10.1
13.10.0
13.9.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index c68181bff863cc..b59e29568fb2d2 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -129,7 +129,7 @@ Specify the file name of the CPU profile generated by `--cpu-prof`. ### `--disable-proto=mode` Disable the `Object.prototype.__proto__` property. If `mode` is `delete`, the @@ -603,7 +603,7 @@ warning will be written to stderr instead. ### `--report-compact` Write reports in a compact format, single-line JSON, more easily consumable @@ -614,7 +614,7 @@ human consumption. @@ -1769,7 +1769,7 @@ reports for the current process. Additional documentation is available in the ### `process.report.compact` * {boolean} @@ -1786,7 +1786,7 @@ console.log(`Reports are compact? ${process.report.compact}`); @@ -1805,7 +1805,7 @@ console.log(`Report directory is ${process.report.directory}`); @@ -1824,7 +1824,7 @@ console.log(`Report filename is ${process.report.filename}`); @@ -1867,7 +1867,7 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`); @@ -1885,7 +1885,7 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`); @@ -1902,7 +1902,7 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`); @@ -1920,7 +1920,7 @@ console.log(`Report signal: ${process.report.signal}`); diff --git a/doc/api/util.md b/doc/api/util.md index 2c0062eff7b62f..e26a5c1518b001 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -996,7 +996,7 @@ throw an error. diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index ca42643969a894..9632050b581d9d 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -513,7 +513,7 @@ if (isMainThread) {