Skip to content

Commit debb417

Browse files
committed
2020-02-18, Version 13.9.0 (Current)
Notable changes: * async_hooks: * add executionAsyncResource (Matteo Collina) #30959 * doc: * add ronag to collaborators (Robert Nagy) #31498 * 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 * report: * add support for Workers (Anna Henningsen) #31386 * test: * skip keygen tests on arm systems (Tobias Nießen) #31178
1 parent 7c2d33f commit debb417

12 files changed

+262
-17
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.7.0">13.7.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>

doc/api/assert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ invariants.
1111
<!-- YAML
1212
added: v9.9.0
1313
changes:
14-
- version: REPLACEME
14+
- version: v13.9.0
1515
description: Changed "strict mode" to "strict assertion mode" and "legacy
1616
mode" to "legacy assertion mode" to avoid confusion with the
1717
more usual meaining of "strict mode".

doc/api/async_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ init for PROMISE with id 6, trigger id: 5 # the Promise returned by then()
462462
#### `async_hooks.executionAsyncResource()`
463463

464464
<!-- YAML
465-
added: REPLACEME
465+
added: v13.9.0
466466
-->
467467

468468
* Returns: {Object} The resource representing the current execution.

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Currently, overriding `Error.prepareStackTrace` is ignored when the
158158

159159
### `--experimental-import-meta-resolve`
160160
<!-- YAML
161-
added: REPLACEME
161+
added: v13.9.0
162162
-->
163163

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

789789
### `--trace-sigint`
790790
<!-- YAML
791-
added: REPLACEME
791+
added: v13.9.0
792792
-->
793793

794794
Prints a stack trace on SIGINT.

doc/api/crypto.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ passing keys as strings or `Buffer`s due to improved security features.
12321232
<!-- YAML
12331233
added: v11.6.0
12341234
changes:
1235-
- version: REPLACEME
1235+
- version: v13.9.0
12361236
pr-url: https://github.com/nodejs/node/pull/31178
12371237
description: Added support for `'dh'`.
12381238
- version: v12.0.0
@@ -2091,7 +2091,7 @@ algorithm names.
20912091

20922092
### `crypto.diffieHellman(options)`
20932093
<!-- YAML
2094-
added: REPLACEME
2094+
added: v13.9.0
20952095
-->
20962096

20972097
* `options`: {Object}
@@ -2107,7 +2107,7 @@ Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'`
21072107
<!-- YAML
21082108
added: v10.12.0
21092109
changes:
2110-
- version: REPLACEME
2110+
- version: v13.9.0
21112111
pr-url: https://github.com/nodejs/node/pull/31178
21122112
description: Add support for Diffie-Hellman.
21132113
- version: v12.0.0
@@ -2180,7 +2180,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
21802180
<!-- YAML
21812181
added: v10.12.0
21822182
changes:
2183-
- version: REPLACEME
2183+
- version: v13.9.0
21842184
pr-url: https://github.com/nodejs/node/pull/31178
21852185
description: Add support for Diffie-Hellman.
21862186
- version: v12.0.0

doc/api/perf_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ The value may be one of:
203203

204204
### performanceEntry.flags
205205
<!-- YAML
206-
added: REPLACEME
206+
added: v13.9.0
207207
-->
208208

209209
* {number}

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,7 @@ is no entry script.
14821482
<!-- YAML
14831483
added: v0.1.16
14841484
changes:
1485-
- version: REPLACEME
1485+
- version: v13.9.0
14861486
pr-url: https://github.com/nodejs/node/pull/31550
14871487
description: Added `arrayBuffers` to the returned object.
14881488
- version: v7.2.0

doc/api/readline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ the current position of the cursor down.
456456
<!-- YAML
457457
added: v0.1.98
458458
changes:
459-
- version: REPLACEME
459+
- version: v13.9.0
460460
pr-url: https://github.com/nodejs/node/pull/31318
461461
description: The `tabSize` option is supported now.
462462
- version: v8.3.0, 6.11.4

doc/api/report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ Specific API documentation can be found under
581581
## Interaction with Workers
582582
<!-- YAML
583583
changes:
584-
- version: REPLACEME
584+
- version: v13.9.0
585585
pr-url: https://github.com/nodejs/node/pull/31386
586586
description: Workers are now included in the report.
587587
-->

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ inside the worker thread. If `stdout: true` was not passed to the
683683

684684
### `worker.takeHeapSnapshot()`
685685
<!-- YAML
686-
added: REPLACEME
686+
added: v13.9.0
687687
-->
688688

689689
* Returns: {Promise} A promise for a Readable Stream containing

doc/changelogs/CHANGELOG_V13.md

+244
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 13
26-
#define NODE_MINOR_VERSION 8
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 9
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)