Skip to content

Commit

Permalink
2023-09-18, Version 20.7.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
UlisesGascon committed Sep 18, 2023
1 parent a1a65f5 commit a71037e
Show file tree
Hide file tree
Showing 7 changed files with 157 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -36,7 +36,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.0">20.5.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -146,7 +146,7 @@ Error: Access to this API has been restricted
<!-- YAML
added: v20.0.0
changes:
- version: REPLACEME
- version: v20.7.0
pr-url: https://github.com/nodejs/node/pull/49047

Check warning on line 150 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Paths delimited by comma (`,`) are no longer allowed.
-->
Expand Down Expand Up @@ -200,7 +200,7 @@ node --experimental-permission --allow-fs-read=/path/to/index.js index.js
<!-- YAML
added: v20.0.0
changes:
- version: REPLACEME
- version: v20.7.0
pr-url: https://github.com/nodejs/node/pull/49047

Check warning on line 204 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Paths delimited by comma (`,`) are no longer allowed.
-->
Expand Down
6 changes: 3 additions & 3 deletions doc/api/module.md
Expand Up @@ -150,7 +150,7 @@ import('node:fs').then((esmFS) => {
<!-- YAML
added: v8.8.0
changes:
- version: REPLACEME
- version: v20.7.0
pr-url: https://github.com/nodejs/node/pull/48842

Check warning on line 154 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Added `initialize` hook to replace `globalPreload`.
- version:
Expand Down Expand Up @@ -380,7 +380,7 @@ asynchronous operations (like `console.log`) to complete.
#### `initialize()`
<!-- YAML
added: REPLACEME
added: v20.7.0
-->
> Stability: 1.1 - Active development
Expand Down Expand Up @@ -563,7 +563,7 @@ export async function resolve(specifier, context, nextResolve) {
<!-- YAML
changes:
- version: REPLACEME
- version: v20.7.0
pr-url: https://github.com/nodejs/node/pull/47999

Check warning on line 567 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for `source` with format `commonjs`.
- version:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -3520,7 +3520,7 @@ Using this function is mutually exclusive with using the deprecated
## `process.sourceMapsEnabled`
<!-- YAML
added: REPLACEME
added: v20.7.0
-->
> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Expand Up @@ -2013,7 +2013,7 @@ added:
- v17.4.0
- v16.14.0
changes:
- version: REPLACEME
- version: v20.7.0
pr-url: https://github.com/nodejs/node/pull/49249
description: added `highWaterMark` in options.
-->
Expand Down Expand Up @@ -2066,7 +2066,7 @@ added:
- v17.4.0
- v16.14.0
changes:
- version: REPLACEME
- version: v20.7.0
pr-url: https://github.com/nodejs/node/pull/49249
description: added `highWaterMark` in options.
-->
Expand Down
144 changes: 144 additions & 0 deletions doc/changelogs/CHANGELOG_V20.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 20
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 2
#define NODE_MINOR_VERSION 7
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit a71037e

Please sign in to comment.