Skip to content

chore(deps): update node.js to v20.19.2 #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 10, 2024

This PR contains the following updates:

Package Type Update Change
node stage minor 20.10.0-slim -> 20.19.2-slim

Release Notes

nodejs/node (node)

v20.19.2: 2025-05-14, Version 20.19.2 'Iron' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
Commits

v20.19.1: 2025-04-22, Version 20.19.1 'Iron' (LTS), @​UlisesGascon prepared by @​RafaelGSS

Compare Source

Notable Changes
Commits

v20.19.0: 2025-03-13, Version 20.19.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind a flag on v20.x.

This feature has been tested on v23.x and v22.x, and we are looking for user feedback from v20.x to make more final tweaks before fully stabilizing it. When the Node.js instance encounters a native ES module in require() somewhere outside node_modules for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Module syntax detection is now enabled by default

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Other Notable Changes
  • [285bb4ee14] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #​56566
  • [73b5c16684] - (SEMVER-MINOR) worker: add postMessageToThread (Paolo Insogna) #​53682
  • [de313b2336] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #​56194
  • [4fba01911d] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [df8a045afe] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #​54648
  • [f9dc1eaef5] - (SEMVER-MINOR) module: add __esModule to require()'d ESM (Joyee Cheung) #​52166
Commits

v20.18.3: 2025-02-10, Version 20.18.3 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from adrianmjim as a code owner January 10, 2024 23:09
@renovate renovate bot enabled auto-merge (rebase) January 10, 2024 23:09
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from f0c19e5 to 36f4935 Compare February 16, 2024 01:49
@renovate renovate bot changed the title chore(deps): update node.js to v20.11.0 chore(deps): update node.js to v20.11.1 Feb 16, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 36f4935 to 2fe2f02 Compare February 22, 2024 10:06
adrianmjim
adrianmjim previously approved these changes Mar 4, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 2fe2f02 to 8f6632d Compare March 4, 2024 18:51
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 8f6632d to 1c2a11a Compare March 27, 2024 18:09
@renovate renovate bot changed the title chore(deps): update node.js to v20.11.1 chore(deps): update node.js to v20.12.0 Mar 27, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 1c2a11a to 7517117 Compare April 4, 2024 16:35
@renovate renovate bot changed the title chore(deps): update node.js to v20.12.0 chore(deps): update node.js to v20.12.1 Apr 4, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 7517117 to 3662f2f Compare April 11, 2024 13:13
@renovate renovate bot changed the title chore(deps): update node.js to v20.12.1 chore(deps): update node.js to v20.12.2 Apr 11, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 3662f2f to 739e88c Compare May 7, 2024 23:25
@renovate renovate bot changed the title chore(deps): update node.js to v20.12.2 chore(deps): update node.js to v20.13.0 May 7, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 739e88c to 81e7895 Compare May 9, 2024 21:39
@renovate renovate bot changed the title chore(deps): update node.js to v20.13.0 chore(deps): update node.js to v20.13.1 May 9, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 81e7895 to 0cff2ec Compare May 28, 2024 22:37
@renovate renovate bot changed the title chore(deps): update node.js to v20.13.1 chore(deps): update node.js to v20.14.0 May 28, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 0cff2ec to 4d50c9e Compare June 25, 2024 00:46
@renovate renovate bot changed the title chore(deps): update node.js to v20.14.0 chore(deps): update node.js to v20.15.0 Jun 25, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 4d50c9e to bfe7aa0 Compare July 9, 2024 17:15
@renovate renovate bot changed the title chore(deps): update node.js to v20.15.0 chore(deps): update node.js to v20.15.1 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from bfe7aa0 to dd1930a Compare July 24, 2024 18:30
@renovate renovate bot changed the title chore(deps): update node.js to v20.15.1 chore(deps): update node.js to v20.16.0 Jul 24, 2024
@renovate renovate bot changed the title chore(deps): update node.js to v20.16.0 chore(deps): update node docker tag to v20.16.0 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from dd1930a to beb9299 Compare August 22, 2024 01:35
@renovate renovate bot changed the title chore(deps): update node docker tag to v20.16.0 chore(deps): update node docker tag to v20.17.0 Aug 22, 2024
@renovate renovate bot changed the title chore(deps): update node docker tag to v20.17.0 chore(deps): update node.js to v20.17.0 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from beb9299 to 4016bbf Compare October 4, 2024 22:17
@renovate renovate bot changed the title chore(deps): update node.js to v20.17.0 chore(deps): update node.js to v20.18.0 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 4016bbf to 86e801a Compare November 20, 2024 22:14
@renovate renovate bot changed the title chore(deps): update node.js to v20.18.0 chore(deps): update node.js to v20.18.1 Nov 20, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 86e801a to 2459b1e Compare January 22, 2025 18:05
@renovate renovate bot changed the title chore(deps): update node.js to v20.18.1 chore(deps): update node.js to v20.18.2 Jan 22, 2025
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 2459b1e to c775cca Compare February 11, 2025 11:49
@renovate renovate bot changed the title chore(deps): update node.js to v20.18.2 chore(deps): update node.js to v20.18.3 Feb 11, 2025
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from c775cca to feb14e5 Compare March 14, 2025 07:35
@renovate renovate bot changed the title chore(deps): update node.js to v20.18.3 chore(deps): update node.js to v20.19.0 Mar 14, 2025
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from feb14e5 to 69bad88 Compare April 26, 2025 04:04
@renovate renovate bot changed the title chore(deps): update node.js to v20.19.0 chore(deps): update node.js to v20.19.1 Apr 26, 2025
@renovate renovate bot force-pushed the renovate/all-non-major-docker-dependencies branch from 69bad88 to 80efbc7 Compare May 17, 2025 16:10
@renovate renovate bot changed the title chore(deps): update node.js to v20.19.1 chore(deps): update node.js to v20.19.2 May 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant