Skip to content

Commit 32a8e15

Browse files
committed
2021-05-18, Version 16.2.0 (Current)
Notable changes: async_hooks: * (SEMVER-MINOR) use new v8::Context PromiseHook API (Stephen Belanger) #36394 lib: * support setting process.env.TZ on windows (James M Snell) #38642 module: * (SEMVER-MINOR) add support for `URL` to `import.meta.resolve` (Antoine du Hamel) #38587 process: * (SEMVER-MINOR) add `'worker'` event (James M Snell) #38659 util: * (SEMVER-MINOR) add util.types.isKeyObject and util.types.isCryptoKey (Filip Skokan) #38619 PR-URL: #38719
1 parent 267a84f commit 32a8e15

File tree

8 files changed

+112
-11
lines changed

8 files changed

+112
-11
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.1.0">16.1.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.2.0">16.2.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V16.md#16.1.0">16.1.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a><br/>
3839
</td>
3940
<td valign="top">

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ may cause them to trust the same CAs as node.
16721672
added: v0.0.1
16731673
changes:
16741674
- version:
1675-
- REPLACEME
1675+
- v16.2.0
16761676
pr-url: https://github.com/nodejs/node/pull/38642
16771677
description:
16781678
Changing the TZ variable using process.env.TZ = changes the timezone

doc/api/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -717,12 +717,12 @@ STDERR/STDOUT, and the data's length is longer than the `maxBuffer` option.
717717
<a id="ERR_CLOSED_MESSAGE_PORT"></a>
718718
### `ERR_CLOSED_MESSAGE_PORT`
719719
<!--
720-
added: REPLACEME
720+
added: v16.2.0
721721
changes:
722722
- version: 11.12.0
723723
pr-url: https://github.com/nodejs/node/pull/26487
724724
description: The error message was removed.
725-
- version: REPLACEME
725+
- version: v16.2.0
726726
pr-url: https://github.com/nodejs/node/pull/38510
727727
description: The error message was reintroduced.
728728
-->

doc/api/esm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ added:
285285
- v13.9.0
286286
- v12.16.2
287287
changes:
288-
- version: REPLACEME
288+
- version: v16.2.0
289289
pr-url: https://github.com/nodejs/node/pull/38587
290290
description: Add support for WHATWG `URL` object to `parentURL` parameter.
291291
-->

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ The `*-deprecation` command-line flags only affect warnings that use the name
459459

460460
### Event: `'worker'`
461461
<!-- YAML
462-
added: REPLACEME
462+
added: v16.2.0
463463
-->
464464

465465
* `worker` {Worker} The {Worker} that was created.

doc/api/util.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ util.types.isBoxedPrimitive(Object(BigInt(5))); // Returns true
14851485

14861486
### `util.types.isCryptoKey(value)`
14871487
<!-- YAML
1488-
added: REPLACEME
1488+
added: v16.2.0
14891489
-->
14901490

14911491
* `value` {Object}
@@ -1690,7 +1690,7 @@ util.types.isInt32Array(new Float64Array()); // Returns false
16901690

16911691
### `util.types.isKeyObject(value)`
16921692
<!-- YAML
1693-
added: REPLACEME
1693+
added: v16.2.0
16941694
-->
16951695

16961696
* `value` {Object}

doc/changelogs/CHANGELOG_V16.md

+100
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 1
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 2
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)