Skip to content

Commit aff2a0a

Browse files
committed
2021-09-22, Version 16.10.0 (Current)
Notable changes: crypto: * (SEMVER-MINOR) add rsa-pss keygen parameters (Filip Skokan) #39927 doc: * add Ayase-252 to collaborators (Qingyu Deng) #40078 fs: * (SEMVER-MINOR) make `open` and `close` stream override optional when unused (Antoine du Hamel) #40013 http: * (SEMVER-MINOR) limit requests per connection (Artur K) #40082 src: * (SEMVER-MINOR) add --no-global-search-paths cli option (Cheng Zhao) #39754 * (SEMVER-MINOR) add option to disable global search paths (Cheng Zhao) #39754 * (SEMVER-MINOR) make napi_create_reference accept symbol (JckXia) #39926 stream: * (SEMVER-MINOR) add signal support to pipeline generators (Robert Nagy) #39067 PR-URL: #40175
1 parent 4444b5c commit aff2a0a

File tree

9 files changed

+132
-16
lines changed

9 files changed

+132
-16
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_V16.md#16.9.1">16.9.1</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.10.0">16.10.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V16.md#16.9.1">16.9.1</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V16.md#16.9.0">16.9.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V16.md#16.8.0">16.8.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V16.md#16.7.0">16.7.0</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ This option is a no-op. It is kept for compatibility.
597597

598598
### `--no-addons`
599599
<!-- YAML
600-
added: REPLACEME
600+
added: v16.10.0
601601
-->
602602

603603
Disable the `node-addons` exports condition as well as disable loading
@@ -621,7 +621,7 @@ dynamically when `async_hooks` is enabled.
621621

622622
### `--no-global-search-paths`
623623
<!-- YAML
624-
added: REPLACEME
624+
added: v16.10.0
625625
-->
626626

627627
Do not search modules from global paths like `$HOME/.node_modules` and

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3375,7 +3375,7 @@ generateKey('hmac', { length: 64 }, (err, key) => {
33753375
<!-- YAML
33763376
added: v10.12.0
33773377
changes:
3378-
- version: REPLACEME
3378+
- version: v16.10.0
33793379
pr-url: https://github.com/nodejs/node/pull/39927
33803380
description: Add ability to define `RSASSA-PSS-params` sequence parameters
33813381
for RSA-PSS keys pairs.
@@ -3486,7 +3486,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
34863486
<!-- YAML
34873487
added: v10.12.0
34883488
changes:
3489-
- version: REPLACEME
3489+
- version: v16.10.0
34903490
pr-url: https://github.com/nodejs/node/pull/39927
34913491
description: Add ability to define `RSASSA-PSS-params` sequence parameters
34923492
for RSA-PSS keys pairs.

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2802,7 +2802,7 @@ option, or a non-nullish non-boolean value for `verbatim` option in
28022802
### DEP0154: RSA-PSS generate key pair options
28032803
<!-- YAML
28042804
changes:
2805-
- version: REPLACEME
2805+
- version: v16.10.0
28062806
pr-url: https://github.com/nodejs/node/pull/39927
28072807
description: Documentation-only deprecation.
28082808
-->
@@ -2815,7 +2815,7 @@ and `'mgf1HashAlgorithm'`.
28152815
### DEP0155: Trailing slashes in pattern specifier resolutions
28162816
<!-- YAML
28172817
changes:
2818-
- version: REPLACEME
2818+
- version: v16.10.0
28192819
pr-url: https://github.com/nodejs/node/pull/40039
28202820
description: Documentation-only deprecation
28212821
with `--pending-deprecation` support.

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ The [debugger][] timed out waiting for the required host/port to be free.
10221022
<a id="ERR_DLOPEN_DISABLED"></a>
10231023
### `ERR_DLOPEN_DISABLED`
10241024
<!-- YAML
1025-
added: REPLACEME
1025+
added: v16.10.0
10261026
-->
10271027

10281028
Loading native addons has been disabled using [`--no-addons`][].

doc/api/fs.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1885,10 +1885,10 @@ behavior is similar to `cp dir1/ dir2/`.
18851885
<!-- YAML
18861886
added: v0.1.31
18871887
changes:
1888-
- version: REPLACEME
1888+
- version: v16.10.0
18891889
pr-url: https://github.com/nodejs/node/pull/40013
18901890
description: The `fs` option does not need `open` method if an `fd` was provided.
1891-
- version: REPLACEME
1891+
- version: v16.10.0
18921892
pr-url: https://github.com/nodejs/node/pull/40013
18931893
description: The `fs` option does not need `close` method if `autoClose` is `false`.
18941894
- version:
@@ -2010,10 +2010,10 @@ If `options` is a string, then it specifies the encoding.
20102010
<!-- YAML
20112011
added: v0.1.31
20122012
changes:
2013-
- version: REPLACEME
2013+
- version: v16.10.0
20142014
pr-url: https://github.com/nodejs/node/pull/40013
20152015
description: The `fs` option does not need `open` method if an `fd` was provided.
2016-
- version: REPLACEME
2016+
- version: v16.10.0
20172017
pr-url: https://github.com/nodejs/node/pull/40013
20182018
description: The `fs` option does not need `close` method if `autoClose` is `false`.
20192019
- version:

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ explicitly.
13501350

13511351
### `server.maxRequestsPerSocket`
13521352
<!-- YAML
1353-
added: REPLACEME
1353+
added: v16.10.0
13541354
-->
13551355

13561356
* {number} Requests per socket. **Default:** null (no limit)

doc/changelogs/CHANGELOG_V16.md

+115
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 16
26-
#define NODE_MINOR_VERSION 9
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 10
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)