Skip to content

Commit 969c63a

Browse files
committed
2019-03-15, Version 11.12.0 (Current)
Notable Changes * bootstrap: * Add experimental `--frozen-intrinsics` flag (Guy Bedford) nodejs#25685 * build: * Enable v8's siphash for hash seed creation (Rod Vagg) nodejs#26367 * deps: * Upgrade openssl to 1.1.1b (Sam Roberts) nodejs#26327 * process: * Make `process[Symbol.toStringTag]` writable again (Ruben Bridgewater) nodejs#26488 * repl: * Add `util.inspect.replDefaults` to customize the writer (Ruben Bridgewater) nodejs#26375 * report: * Rename `triggerReport()` to `writeReport()` (Colin Ihrig) nodejs#26527
1 parent 1cdeb9f commit 969c63a

File tree

6 files changed

+187
-10
lines changed

6 files changed

+187
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.11.0">11.11.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.9.0">11.9.0</a><br/>

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Force FIPS-compliant crypto on startup. (Cannot be disabled from script code.)
179179

180180
### `--frozen-intrinsics`
181181
<!-- YAML
182-
added: REPLACEME
182+
added: v11.12.0
183183
-->
184184

185185
> Stability: 1 - Experimental

doc/api/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2134,7 +2134,7 @@ changes:
21342134
- version: v10.9.0
21352135
pr-url: https://github.com/nodejs/node/pull/22004
21362136
description: Documentation-only deprecation.
2137-
- version: REPLACEME
2137+
- version: v11.12.0
21382138
pr-url: https://github.com/nodejs/node/pull/26500
21392139
description: Added support for `--pending-deprecation`.
21402140
-->

doc/api/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1984,7 +1984,7 @@ A module file could not be resolved while attempting a [`require()`][] or
19841984
### ERR_CLOSED_MESSAGE_PORT
19851985
<!-- YAML
19861986
added: v10.5.0
1987-
removed: REPLACEME
1987+
removed: v11.12.0
19881988
-->
19891989

19901990
There was an attempt to use a `MessagePort` instance in a closed

doc/api/process.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ reports for the current process. Additional documentation is available in the
16711671

16721672
### process.report.directory
16731673
<!-- YAML
1674-
added: REPLACEME
1674+
added: v11.12.0
16751675
-->
16761676

16771677
* {string}
@@ -1686,7 +1686,7 @@ console.log(`Report directory is ${process.report.directory}`);
16861686

16871687
### process.report.filename
16881688
<!-- YAML
1689-
added: REPLACEME
1689+
added: v11.12.0
16901690
-->
16911691

16921692
* {string}
@@ -1719,7 +1719,7 @@ Additional documentation is available in the [report documentation][].
17191719

17201720
### process.report.reportOnFatalError
17211721
<!-- YAML
1722-
added: REPLACEME
1722+
added: v11.12.0
17231723
-->
17241724

17251725
* {boolean}
@@ -1733,7 +1733,7 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
17331733

17341734
### process.report.reportOnSignal
17351735
<!-- YAML
1736-
added: REPLACEME
1736+
added: v11.12.0
17371737
-->
17381738

17391739
* {boolean}
@@ -1747,7 +1747,7 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
17471747

17481748
### process.report.reportOnUncaughtException
17491749
<!-- YAML
1750-
added: REPLACEME
1750+
added: v11.12.0
17511751
-->
17521752

17531753
* {boolean}
@@ -1760,7 +1760,7 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
17601760

17611761
### process.report.signal
17621762
<!-- YAML
1763-
added: REPLACEME
1763+
added: v11.12.0
17641764
-->
17651765

17661766
* {string}

0 commit comments

Comments
 (0)