Skip to content

Commit a71037e

Browse files
committed
2023-09-18, Version 20.7.0 (Current)
Notable changes: crypto: * update root certificates to NSS 3.93 (Node.js GitHub Bot) #49341 deps: * upgrade npm to 10.1.0 (npm team) #49570 * upgrade npm to 10.0.0 (npm team) #49423 doc: * move and rename loaders section (Geoffrey Booth) #49261 * add release key for Ulises Gascon (Ulises Gascón) #49196 lib: * (SEMVER-MINOR) add api to detect whether source-maps are enabled (翠 / green) #46391 src: * support multiple `--env-file` declarations (Yagiz Nizipli) #49542 src,permission: * add multiple allow-fs-* flags (Carlos Espa) #49047 test_runner: * (SEMVER-MINOR) expose location of tests (Colin Ihrig) #48975 PR-URL: #49592
1 parent a1a65f5 commit a71037e

File tree

7 files changed

+157
-12
lines changed

7 files changed

+157
-12
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ release.
3636
</tr>
3737
<tr>
3838
<td valign="top">
39-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.0">20.5.0</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Error: Access to this API has been restricted
146146
<!-- YAML
147147
added: v20.0.0
148148
changes:
149-
- version: REPLACEME
149+
- version: v20.7.0
150150
pr-url: https://github.com/nodejs/node/pull/49047
151151
description: Paths delimited by comma (`,`) are no longer allowed.
152152
-->
@@ -200,7 +200,7 @@ node --experimental-permission --allow-fs-read=/path/to/index.js index.js
200200
<!-- YAML
201201
added: v20.0.0
202202
changes:
203-
- version: REPLACEME
203+
- version: v20.7.0
204204
pr-url: https://github.com/nodejs/node/pull/49047
205205
description: Paths delimited by comma (`,`) are no longer allowed.
206206
-->

doc/api/module.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ import('node:fs').then((esmFS) => {
150150
<!-- YAML
151151
added: v8.8.0
152152
changes:
153-
- version: REPLACEME
153+
- version: v20.7.0
154154
pr-url: https://github.com/nodejs/node/pull/48842
155155
description: Added `initialize` hook to replace `globalPreload`.
156156
- version:
@@ -380,7 +380,7 @@ asynchronous operations (like `console.log`) to complete.
380380
#### `initialize()`
381381
382382
<!-- YAML
383-
added: REPLACEME
383+
added: v20.7.0
384384
-->
385385
386386
> Stability: 1.1 - Active development
@@ -563,7 +563,7 @@ export async function resolve(specifier, context, nextResolve) {
563563
564564
<!-- YAML
565565
changes:
566-
- version: REPLACEME
566+
- version: v20.7.0
567567
pr-url: https://github.com/nodejs/node/pull/47999
568568
description: Add support for `source` with format `commonjs`.
569569
- version:

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3520,7 +3520,7 @@ Using this function is mutually exclusive with using the deprecated
35203520
## `process.sourceMapsEnabled`
35213521
35223522
<!-- YAML
3523-
added: REPLACEME
3523+
added: v20.7.0
35243524
-->
35253525
35263526
> Stability: 1 - Experimental

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2013,7 +2013,7 @@ added:
20132013
- v17.4.0
20142014
- v16.14.0
20152015
changes:
2016-
- version: REPLACEME
2016+
- version: v20.7.0
20172017
pr-url: https://github.com/nodejs/node/pull/49249
20182018
description: added `highWaterMark` in options.
20192019
-->
@@ -2066,7 +2066,7 @@ added:
20662066
- v17.4.0
20672067
- v16.14.0
20682068
changes:
2069-
- version: REPLACEME
2069+
- version: v20.7.0
20702070
pr-url: https://github.com/nodejs/node/pull/49249
20712071
description: added `highWaterMark` in options.
20722072
-->

doc/changelogs/CHANGELOG_V20.md

+144
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 20
26-
#define NODE_MINOR_VERSION 6
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 7
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)