Skip to content

Commit

Permalink
2019-03-14, 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 14, 2019
1 parent 1057335 commit f83918b
Show file tree
Hide file tree
Showing 7 changed files with 191 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
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
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
Expand Up @@ -2110,7 +2110,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
Expand Up @@ -1973,7 +1973,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
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
177 changes: 177 additions & 0 deletions doc/changelogs/CHANGELOG_V11.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 11
#define NODE_MINOR_VERSION 11
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 12
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit f83918b

Please sign in to comment.