Skip to content

Commit 3f18373

Browse files
committed
2021-02-02, Version 15.8.0 (Current)
Notable changes: crypto: * (SEMVER-MINOR) add generatePrime/checkPrime (James M Snell) #36997 * (SEMVER-MINOR) experimental (Ed/X)25519/(Ed/X)448 support (James M Snell) #36879 deps: * upgrade npm to 7.5.0 (Ruy Adorno) #37117 dgram: * (SEMVER-MINOR) support AbortSignal in createSocket (Nitzan Uziely) #37026 doc: * add Zijian Liu to collaborators (ZiJian Liu) #37075 esm: * deprecate legacy main lookup for modules (Guy Bedford) #36918 readline: * (SEMVER-MINOR) add history event and option to set initial history (Mattias Runge-Broberg) #33662 * (SEMVER-MINOR) add support for the AbortController to the question method (Mattias Runge-Broberg) #33676 PR-URL: TODO
1 parent 4551d14 commit 3f18373

File tree

8 files changed

+121
-21
lines changed

8 files changed

+121
-21
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.7.0">15.7.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.8.0">15.8.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.7.0">15.7.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.6.0">15.6.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.5.1">15.5.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.5.0">15.5.0</a><br/>

doc/api/crypto.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ This property is deprecated. Please use `crypto.setFips()` and
19631963

19641964
### `crypto.checkPrime(candidate[, options, [callback]])`
19651965
<!-- YAML
1966-
added: REPLACEME
1966+
added: v15.8.0
19671967
-->
19681968

19691969
* `candidate` {ArrayBuffer|SharedArrayBuffer|TypedArray|Buffer|DataView|bigint}
@@ -1985,7 +1985,7 @@ Checks the primality of the `candidate`.
19851985

19861986
### `crypto.checkPrimeSync(candidate[, options])`
19871987
<!-- YAML
1988-
added: REPLACEME
1988+
added: v15.8.0
19891989
-->
19901990

19911991
* `candidate` {ArrayBuffer|SharedArrayBuffer|TypedArray|Buffer|DataView|bigint}
@@ -2738,7 +2738,7 @@ it will be a buffer containing the data encoded as DER.
27382738

27392739
### `crypto.generatePrime(size[, options[, callback]])`
27402740
<!-- YAML
2741-
added: REPLACEME
2741+
added: v15.8.0
27422742
-->
27432743

27442744
* `size` {number} The size (in bits) of the prime to generate.
@@ -2780,7 +2780,7 @@ is provided.
27802780

27812781
### `crypto.generatePrimeSync(size[, options])`
27822782
<!-- YAML
2783-
added: REPLACEME
2783+
added: v15.8.0
27842784
-->
27852785

27862786
* `size` {number} The size (in bits) of the prime to generate.

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2702,7 +2702,7 @@ runtime warning results no matter where the `"exports"` usage occurs.
27022702
### DEP0151: Main index lookup and extension searching
27032703
<!-- YAML
27042704
changes:
2705-
- version: REPLACEME
2705+
- version: v15.8.0
27062706
pr-url: https://github.com/nodejs/node/pull/36918
27072707
description: Documentation-only deprecation
27082708
with `--pending-deprecation` support.

doc/api/dgram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ chained.
735735
<!-- YAML
736736
added: v0.11.13
737737
changes:
738-
- version: REPLACEME
738+
- version: v15.8.0
739739
pr-url: https://github.com/nodejs/node/pull/37026
740740
description: AbortSignal support was added.
741741
- version: v11.4.0

doc/api/readline.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ rl.on('line', (input) => {
9090

9191
### Event: `'history'`
9292
<!-- YAML
93-
added: REPLACEME
93+
added: v15.8.0
9494
-->
9595

9696
The `'history'` event is emitted whenever the history array has changed.
@@ -436,7 +436,7 @@ asynchronous iteration may result in missed lines.
436436
<!-- YAML
437437
added: v0.1.98
438438
changes:
439-
- version: REPLACEME
439+
- version: v15.8.0
440440
pr-url: https://github.com/nodejs/node/pull/33676
441441
description: Value will always be a string, never undefined.
442442
-->
@@ -544,7 +544,7 @@ the current position of the cursor down.
544544
<!-- YAML
545545
added: v0.1.98
546546
changes:
547-
- version: REPLACEME
547+
- version: v15.8.0
548548
pr-url: https://github.com/nodejs/node/pull/33662
549549
description: The `history` option is supported now.
550550
- version: v13.9.0

doc/api/webcrypto.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1636,37 +1636,37 @@ added: v15.0.0
16361636

16371637
### `NODE-ED25519` and `NODE-ED448` Algorithms
16381638
<!-- YAML
1639-
added: REPLACEME
1639+
added: v15.8.0
16401640
-->
16411641

16421642
#### Class: `NodeEdKeyGenParams`
16431643
<!-- YAML
1644-
added: REPLACEME
1644+
added: v15.8.0
16451645
-->
16461646

16471647
##### `nodeEdKeyGenParams.name`
16481648
<!-- YAML
1649-
added: REPLACEME
1649+
added: v15.8.0
16501650
-->
16511651

16521652
* Type: {string} Must be one of `'NODE-ED25519'`, `'NODE-ED448'` or `'ECDH'`.
16531653

16541654
##### `nodeEdKeyGenParams.namedCurve`
16551655
<!-- YAML
1656-
added: REPLACEME
1656+
added: v15.8.0
16571657
-->
16581658

16591659
* Type: {string} Must be one of `'NODE-ED25519'`, `'NODE-ED448'`,
16601660
`'NODE-X25519'`, or `'NODE-X448'`.
16611661

16621662
#### Class: `NodeEdKeyImportParams`
16631663
<!-- YAML
1664-
added: REPLACEME
1664+
added: v15.8.0
16651665
-->
16661666

16671667
##### `nodeEdKeyImportParams.name`
16681668
<!-- YAML
1669-
added: REPLACEME
1669+
added: v15.8.0
16701670
-->
16711671

16721672
* Type: {string} Must be one of `'NODE-ED25519'` or `'NODE-ED448'`
@@ -1675,15 +1675,15 @@ added: REPLACEME
16751675

16761676
##### `nodeEdKeyImportParams.namedCurve`
16771677
<!-- YAML
1678-
added: REPLACEME
1678+
added: v15.8.0
16791679
-->
16801680

16811681
* Type: {string} Must be one of `'NODE-ED25519'`, `'NODE-ED448'`,
16821682
`'NODE-X25519'`, or `'NODE-X448'`.
16831683

16841684
##### `nodeEdKeyImportParams.public`
16851685
<!-- YAML
1686-
added: REPLACEME
1686+
added: v15.8.0
16871687
-->
16881688

16891689
* Type: {boolean}

doc/changelogs/CHANGELOG_V15.md

+99
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 15
26-
#define NODE_MINOR_VERSION 7
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 8
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)