Skip to content

Commit

Permalink
2019-03-15, Version 11.12.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BridgeAR committed Mar 15, 2019
1 parent 1cdeb9f commit 969c63a
Show file tree
Hide file tree
Showing 6 changed files with 187 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.9.0">11.9.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Force FIPS-compliant crypto on startup. (Cannot be disabled from script code.)

### `--frozen-intrinsics`
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -2134,7 +2134,7 @@ changes:
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/22004
description: Documentation-only deprecation.
- version: REPLACEME
- version: v11.12.0
pr-url: https://github.com/nodejs/node/pull/26500
description: Added support for `--pending-deprecation`.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,7 @@ A module file could not be resolved while attempting a [`require()`][] or
### ERR_CLOSED_MESSAGE_PORT
<!-- YAML
added: v10.5.0
removed: REPLACEME
removed: v11.12.0
-->

There was an attempt to use a `MessagePort` instance in a closed
Expand Down
12 changes: 6 additions & 6 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,7 @@ reports for the current process. Additional documentation is available in the

### process.report.directory
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

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

### process.report.filename
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

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

### process.report.reportOnFatalError
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

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

### process.report.reportOnSignal
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

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

### process.report.reportOnUncaughtException
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

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

### process.report.signal
<!-- YAML
added: REPLACEME
added: v11.12.0
-->

* {string}
Expand Down
Loading

0 comments on commit 969c63a

Please sign in to comment.