Skip to content

Commit

Permalink
2020-02-18, Version 13.9.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* async_hooks
  * add executionAsyncResource (Matteo Collina) #30959
* crypto
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* test
  * skip keygen tests on arm systems (Tobias Nießen) #31178
* perf_hooks
  * add property flags to GCPerformanceEntry (Kirill Fomichev) #29547
* process
  * report ArrayBuffer memory in `memoryUsage()` (Anna Henningsen) #31550
* readline
  * make tab size configurable (Ruben Bridgewater) #31318
* report
  * add support for Workers (Anna Henningsen) #31386
* worker
  * add ability to take heap snapshot from parent thread (Anna Henningsen) #31569
* added new collaborators
  * add ronag to collaborators (Robert Nagy) #31498

PR-URL: #31837
  • Loading branch information
codebytere committed Feb 18, 2020
1 parent 8ba7a2f commit 0c3c0e7
Show file tree
Hide file tree
Showing 12 changed files with 254 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -29,7 +29,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.7.0">13.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/assert.md
Expand Up @@ -11,7 +11,7 @@ invariants.
<!-- YAML
added: v9.9.0
changes:
- version: REPLACEME
- version: v13.9.0
description: Changed "strict mode" to "strict assertion mode" and "legacy
mode" to "legacy assertion mode" to avoid confusion with the
more usual meaining of "strict mode".
Expand Down
2 changes: 1 addition & 1 deletion doc/api/async_hooks.md
Expand Up @@ -462,7 +462,7 @@ init for PROMISE with id 6, trigger id: 5 # the Promise returned by then()
#### `async_hooks.executionAsyncResource()`

<!-- YAML
added: REPLACEME
added: v13.9.0
-->

* Returns: {Object} The resource representing the current execution.
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -158,7 +158,7 @@ Currently, overriding `Error.prepareStackTrace` is ignored when the

### `--experimental-import-meta-resolve`
<!-- YAML
added: REPLACEME
added: v13.9.0
-->

Enable experimental `import.meta.resolve()` support.
Expand Down Expand Up @@ -788,7 +788,7 @@ i.e. invoking `process.exit()`.

### `--trace-sigint`
<!-- YAML
added: REPLACEME
added: v13.9.0
-->

Prints a stack trace on SIGINT.
Expand Down
8 changes: 4 additions & 4 deletions doc/api/crypto.md
Expand Up @@ -1232,7 +1232,7 @@ passing keys as strings or `Buffer`s due to improved security features.
<!-- YAML
added: v11.6.0
changes:
- version: REPLACEME
- version: v13.9.0
pr-url: https://github.com/nodejs/node/pull/31178
description: Added support for `'dh'`.
- version: v12.0.0
Expand Down Expand Up @@ -2091,7 +2091,7 @@ algorithm names.

### `crypto.diffieHellman(options)`
<!-- YAML
added: REPLACEME
added: v13.9.0
-->

* `options`: {Object}
Expand All @@ -2107,7 +2107,7 @@ Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'`
<!-- YAML
added: v10.12.0
changes:
- version: REPLACEME
- version: v13.9.0
pr-url: https://github.com/nodejs/node/pull/31178
description: Add support for Diffie-Hellman.
- version: v12.0.0
Expand Down Expand Up @@ -2180,7 +2180,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
<!-- YAML
added: v10.12.0
changes:
- version: REPLACEME
- version: v13.9.0
pr-url: https://github.com/nodejs/node/pull/31178
description: Add support for Diffie-Hellman.
- version: v12.0.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/perf_hooks.md
Expand Up @@ -203,7 +203,7 @@ The value may be one of:

### performanceEntry.flags
<!-- YAML
added: REPLACEME
added: v13.9.0
-->

* {number}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -1510,7 +1510,7 @@ is no entry script.
<!-- YAML
added: v0.1.16
changes:
- version: REPLACEME
- version: v13.9.0
pr-url: https://github.com/nodejs/node/pull/31550
description: Added `arrayBuffers` to the returned object.
- version: v7.2.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/readline.md
Expand Up @@ -456,7 +456,7 @@ the current position of the cursor down.
<!-- YAML
added: v0.1.98
changes:
- version: REPLACEME
- version: v13.9.0
pr-url: https://github.com/nodejs/node/pull/31318
description: The `tabSize` option is supported now.
- version: v8.3.0, 6.11.4
Expand Down
2 changes: 1 addition & 1 deletion doc/api/report.md
Expand Up @@ -581,7 +581,7 @@ Specific API documentation can be found under
## Interaction with Workers
<!-- YAML
changes:
- version: REPLACEME
- version: v13.9.0
pr-url: https://github.com/nodejs/node/pull/31386
description: Workers are now included in the report.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/worker_threads.md
Expand Up @@ -683,7 +683,7 @@ inside the worker thread. If `stdout: true` was not passed to the

### `worker.takeHeapSnapshot()`
<!-- YAML
added: REPLACEME
added: v13.9.0
-->

* Returns: {Promise} A promise for a Readable Stream containing
Expand Down
238 changes: 238 additions & 0 deletions doc/changelogs/CHANGELOG_V13.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 1
#define NODE_VERSION_IS_RELEASE 0

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

0 comments on commit 0c3c0e7

Please sign in to comment.