Skip to content

Commit 11ee794

Browse files
committed
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. #25621 * child_process: * When the `maxBuffer` option is passed, `stdout` and `stderr` will be truncated rather than unavailable in case of an error. #24951 * policy: * Experimental support for module integrity checks through a manifest file is implemented now. #23834 * n-api: * The `napi_threadsafe_function` feature is now stable. #25556 * report: * An experimental diagnostic API for capturing process state is available as `process.report` and through command line flags. #22712 * tls: * `tls.connect()` takes a `timeout` option analogous to the `net.connect()` one. #25517 * worker: * `process.umask()` is available as a read-only function inside Worker threads now. #25526 * An `execArgv` option that supports a subset of Node.js command line options is supported now. #25467 PR-URL: #25687
1 parent f3d0591 commit 11ee794

File tree

7 files changed

+376
-18
lines changed

7 files changed

+376
-18
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.7.0">11.7.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.8.0">11.8.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.7.0">11.7.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.5.0">11.5.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.4.0">11.4.0</a><br/>

doc/api/cli.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -77,21 +77,21 @@ $ source node_bash_completion
7777

7878
### `--diagnostic-report-directory=directory`
7979
<!-- YAML
80-
added: REPLACEME
80+
added: v11.7.0
8181
-->
8282

8383
Location at which the report will be generated.
8484

8585
### `--diagnostic-report-filename=filename`
8686
<!-- YAML
87-
added: REPLACEME
87+
added: v11.7.0
8888
-->
8989

9090
Name of the file to which the report will be written.
9191

9292
### `--diagnostic-report-on-fatalerror`
9393
<!-- YAML
94-
added: REPLACEME
94+
added: v11.7.0
9595
-->
9696

9797
Enables the report to be triggered on fatal errors (internal errors within
@@ -102,7 +102,7 @@ consumption etc. to reason about the fatal error.
102102

103103
### `--diagnostic-report-on-signal`
104104
<!-- YAML
105-
added: REPLACEME
105+
added: v11.7.0
106106
-->
107107

108108
Enables report to be generated upon receiving the specified (or predefined)
@@ -111,15 +111,15 @@ The signal to trigger the report is specified through `--diagnostic-report-signa
111111

112112
### `--diagnostic-report-signal=signal`
113113
<!-- YAML
114-
added: REPLACEME
114+
added: v11.7.0
115115
-->
116116

117117
Sets or resets the signal for report generation (not supported on Windows).
118118
Default signal is `SIGUSR2`.
119119

120120
### `--diagnostic-report-uncaught-exception`
121121
<!-- YAML
122-
added: REPLACEME
122+
added: v11.7.0
123123
-->
124124

125125
Enables report to be generated on un-caught exceptions, if
@@ -128,7 +128,7 @@ conjunction with native stack and other runtime environment data.
128128

129129
### `--diagnostic-report-verbose`
130130
<!-- YAML
131-
added: REPLACEME
131+
added: v11.7.0
132132
-->
133133

134134
Flag that enables additional information to be printed during report generation.
@@ -150,7 +150,7 @@ Enable experimental ES module support and caching modules.
150150

151151
### `--experimental-policy`
152152
<!-- YAML
153-
added: REPLACEME
153+
added: v11.7.0
154154
-->
155155

156156
Use the specified file as a security policy.
@@ -164,7 +164,7 @@ Enable experimental top-level `await` keyword support in REPL.
164164

165165
### `--experimental-report`
166166
<!-- YAML
167-
added: REPLACEME
167+
added: v11.7.0
168168
-->
169169

170170
Enable experimental diagnostic report feature.

doc/api/policy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Policies
22

3-
<!--introduced_in=REPLACEME-->
3+
<!--introduced_in=v11.7.0-->
44
<!-- type=misc -->
55

66
> Stability: 1 - Experimental

doc/api/process.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ relied upon to exist.
16621662

16631663
### process.report.getReport([err])
16641664
<!-- YAML
1665-
added: REPLACEME
1665+
added: v11.7.0
16661666
-->
16671667

16681668
* `err` {Object}
@@ -1682,7 +1682,7 @@ at [report documentation][].
16821682

16831683
### process.report.setDiagnosticReportOptions([options]);
16841684
<!-- YAML
1685-
added: REPLACEME
1685+
added: v11.7.0
16861686
-->
16871687

16881688
Set the runtime configuration of diagnostic report data capture. Upon invocation
@@ -1731,7 +1731,7 @@ at [report documentation][].
17311731

17321732
### process.report.triggerReport([filename][, err])
17331733
<!-- YAML
1734-
added: REPLACEME
1734+
added: v11.7.0
17351735
-->
17361736

17371737
* `filename` {string} The file to write into. The `filename` should be

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ being issued by trusted CA (`options.ca`).
10231023
<!-- YAML
10241024
added: v0.11.3
10251025
changes:
1026-
- version: REPLACEME
1026+
- version: v11.7.0
10271027
pr-url: https://github.com/nodejs/node/pull/25517
10281028
description: The `timeout` option is supported now.
10291029
- version: v8.0.0

doc/changelogs/CHANGELOG_V11.md

+357
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 11
26-
#define NODE_MINOR_VERSION 7
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 8
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)