From 11ee7946b6b992a7dc8927cb38933475135f36a3 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Thu, 24 Jan 2019 16:33:33 -0500 Subject: [PATCH] 2019-01-24, Version 11.8.0 (Current) Notable Changes: * events: * For unhandled `error` events with an argument that is not an `Error` object, the resulting exeption will have more information about the argument. https://github.com/nodejs/node/pull/25621 * child_process: * When the `maxBuffer` option is passed, `stdout` and `stderr` will be truncated rather than unavailable in case of an error. https://github.com/nodejs/node/pull/24951 * policy: * Experimental support for module integrity checks through a manifest file is implemented now. https://github.com/nodejs/node/pull/23834 * n-api: * The `napi_threadsafe_function` feature is now stable. https://github.com/nodejs/node/pull/25556 * report: * An experimental diagnostic API for capturing process state is available as `process.report` and through command line flags. https://github.com/nodejs/node/pull/22712 * tls: * `tls.connect()` takes a `timeout` option analogous to the `net.connect()` one. https://github.com/nodejs/node/pull/25517 * worker: * `process.umask()` is available as a read-only function inside Worker threads now. https://github.com/nodejs/node/pull/25526 * An `execArgv` option that supports a subset of Node.js command line options is supported now. https://github.com/nodejs/node/pull/25467 PR-URL: https://github.com/nodejs/node/pull/25687 --- CHANGELOG.md | 3 +- doc/api/cli.md | 18 +- doc/api/policy.md | 2 +- doc/api/process.md | 6 +- doc/api/tls.md | 2 +- doc/changelogs/CHANGELOG_V11.md | 357 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 7 files changed, 376 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c13771d2ff88eb..cafba2ab601397 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,8 @@ release. -11.7.0
+11.8.0
+11.7.0
11.6.0
11.5.0
11.4.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index abe056f2c5ae23..9cc52d077535dd 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -77,21 +77,21 @@ $ source node_bash_completion ### `--diagnostic-report-directory=directory` Location at which the report will be generated. ### `--diagnostic-report-filename=filename` Name of the file to which the report will be written. ### `--diagnostic-report-on-fatalerror` Enables the report to be triggered on fatal errors (internal errors within @@ -102,7 +102,7 @@ consumption etc. to reason about the fatal error. ### `--diagnostic-report-on-signal` Enables report to be generated upon receiving the specified (or predefined) @@ -111,7 +111,7 @@ The signal to trigger the report is specified through `--diagnostic-report-signa ### `--diagnostic-report-signal=signal` Sets or resets the signal for report generation (not supported on Windows). @@ -119,7 +119,7 @@ Default signal is `SIGUSR2`. ### `--diagnostic-report-uncaught-exception` Enables report to be generated on un-caught exceptions, if @@ -128,7 +128,7 @@ conjunction with native stack and other runtime environment data. ### `--diagnostic-report-verbose` Flag that enables additional information to be printed during report generation. @@ -150,7 +150,7 @@ Enable experimental ES module support and caching modules. ### `--experimental-policy` Use the specified file as a security policy. @@ -164,7 +164,7 @@ Enable experimental top-level `await` keyword support in REPL. ### `--experimental-report` Enable experimental diagnostic report feature. diff --git a/doc/api/policy.md b/doc/api/policy.md index dec8db886ff8e6..fce290c049cd27 100644 --- a/doc/api/policy.md +++ b/doc/api/policy.md @@ -1,6 +1,6 @@ # Policies - + > Stability: 1 - Experimental diff --git a/doc/api/process.md b/doc/api/process.md index c8c298c1c6b133..60d3d1af1b66b0 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1662,7 +1662,7 @@ relied upon to exist. ### process.report.getReport([err]) * `err` {Object} @@ -1682,7 +1682,7 @@ at [report documentation][]. ### process.report.setDiagnosticReportOptions([options]); Set the runtime configuration of diagnostic report data capture. Upon invocation @@ -1731,7 +1731,7 @@ at [report documentation][]. ### process.report.triggerReport([filename][, err]) * `filename` {string} The file to write into. The `filename` should be diff --git a/doc/api/tls.md b/doc/api/tls.md index 7819475ffeb745..c751186f828cf9 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1023,7 +1023,7 @@ being issued by trusted CA (`options.ca`).