Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 20, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
node final major 18.17.0-alpine -> 20.5.0-alpine
node stage major 18.17.0-alpine -> 20.5.0-alpine

Release Notes

nodejs/node (node)

v20.5.0: 2023-07-18, Version 20.5.0 (Current), @​juanarbol

Compare Source

Notable Changes
Commits

v20.4.0: 2023-07-05, Version 20.4.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
Mock Timers

The new feature allows developers to write more reliable and predictable tests for time-dependent functionality.
It includes MockTimers with the ability to mock setTimeout, setInterval from globals, node:timers, and node:timers/promises.

The feature provides a simple API to advance time, enable specific timers, and release all timers.

import assert from 'node:assert';
import { test } from 'node:test';

test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
  const fn = context.mock.fn();
  // Optionally choose what to mock
  context.mock.timers.enable(['setTimeout']);
  const nineSecs = 9000;
  setTimeout(fn, nineSecs);

  const threeSeconds = 3000;
  context.mock.timers.tick(threeSeconds);
  context.mock.timers.tick(threeSeconds);
  context.mock.timers.tick(threeSeconds);

  assert.strictEqual(fn.mock.callCount(), 1);
});

This feature was contributed by Erick Wendel in #​47775.

Support to the explicit resource management proposal

Node is adding support to the explicit resource management
proposal to its resources allowing users of TypeScript/babel to use using/await using with
V8 support for everyone else on the way.

This feature was contributed by Moshe Atlow and Benjamin Gruenbaum in #​48518.

Other notable changes
Commits

v20.3.1: 2023-06-20, Version 20.3.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in June 2023 Security Releases blog post.

Commits

v20.3.0: 2023-06-08, Version 20.3.0 (Current), @​targos

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 becomes conflicted, or you tick the rebase/retry checkbox.

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


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/node-20.x branch 4 times, most recently from 0ab62ac to fcb12a5 Compare April 28, 2023 07:58
@renovate renovate bot force-pushed the renovate/node-20.x branch 5 times, most recently from 6d0147b to 55a383f Compare May 6, 2023 17:22
@renovate renovate bot force-pushed the renovate/node-20.x branch 2 times, most recently from 1f6e7b9 to 5835728 Compare May 15, 2023 20:21
@renovate renovate bot force-pushed the renovate/node-20.x branch 4 times, most recently from 829bcbf to e533011 Compare May 23, 2023 00:46
@renovate renovate bot force-pushed the renovate/node-20.x branch 4 times, most recently from 6507e0b to 2e37215 Compare June 1, 2023 21:50
@renovate renovate bot force-pushed the renovate/node-20.x branch 4 times, most recently from 6742661 to e9928ad Compare June 9, 2023 22:16
@renovate renovate bot force-pushed the renovate/node-20.x branch 3 times, most recently from d810fb1 to 56d11ac Compare June 19, 2023 21:47
@renovate renovate bot force-pushed the renovate/node-20.x branch 4 times, most recently from 0deeeaf to 0e898d5 Compare June 26, 2023 02:48
@renovate renovate bot force-pushed the renovate/node-20.x branch 4 times, most recently from 2d9c10f to b5d1c07 Compare July 1, 2023 12:48
@renovate renovate bot force-pushed the renovate/node-20.x branch 3 times, most recently from 21296cb to 0c98c32 Compare July 10, 2023 23:01
@renovate renovate bot force-pushed the renovate/node-20.x branch 5 times, most recently from 6418a00 to 18cd4d3 Compare July 17, 2023 22:19
@renovate renovate bot force-pushed the renovate/node-20.x branch 7 times, most recently from 1bdff99 to cc65f18 Compare July 25, 2023 21:03
@renovate renovate bot force-pushed the renovate/node-20.x branch 5 times, most recently from de95643 to 52f0d71 Compare July 31, 2023 23:08
@renovate renovate bot force-pushed the renovate/node-20.x branch from 52f0d71 to ddd0d6d Compare August 2, 2023 07:24
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants