Skip to content
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

fix(major deps): update node.js to v23 #47

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
node (source) 21.7.0 -> 23.2.0 age adoption passing confidence

Release Notes

nodejs/node (node)

v23.2.0: 2024-11-11, Version 23.2.0 (Current), @​aduh95

Compare Source

Notable Changes
Update root certificates to NSS 3.104

This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.

Certificates added:

  • FIRMAPROFESIONAL CA ROOT-A WEB
  • TWCA CYBER Root CA
  • SecureSign Root CA12
  • SecureSign Root CA14
  • SecureSign Root CA15
Other notable changes
Commits

v23.1.0: 2024-10-24, Version 23.1.0 (Current), @​aduh95

Compare Source

Notable Changes
Buffer now work with resizable ArrayBuffer

When a Buffer is created using a resizable ArrayBuffer, the Buffer length
will now correctly change as the underlying ArrayBuffer size is changed.

const ab = new ArrayBuffer(10, { maxByteLength: 20 });
const buffer = Buffer.from(ab);
console.log(buffer.byteLength); 10
ab.resize(15);
console.log(buffer.byteLength); 15
ab.resize(5);
console.log(buffer.byteLength); 5

Contributed by James M Snell in #​55377.

MockTimers test runner API is now stable

MockTimers, introduced in April 2023, has just reached stable status. This
API provides comprehensive support for mocking Date and all major timers in
Node.js, including setTimeout, setInterval, and setImmediate, both from
the node:timers, node:timers/promises modules and global objects. After
months of refinement, developers can now fully rely on MockTimers for testing
time-based operations with confidence, ensuring better control over asynchronous
behavior in their Node.js applications.

Example usage with initial Date object as time set:

import { mock } from 'node:test';
mock.timers.enable({ apis: ['Date'], now: new Date('1970-01-01') });

Contributed by Erick Wendel in #​55398.

JSON modules and import attributes are now stable

The two proposals reached stage 4 of the TC39 process, at the October 2024
meeting. The Node.js implementation already matches exactly the semantics
required by the proposals.

Contributed by Nicolò Ribaudo by #​55333.

Other Notable Changes
Commits

v23.0.0: 2024-10-16, Version 23.0.0 (Current), @​RafaelGSS

Compare Source

We’re excited to announce the release of Node.js 23! Key highlights include:

  • Enabling require(esm) by default for Node.js applications
  • Removing support for Windows 32-bit systems
  • Stabilizing the node --run command
  • Enhancements to the test runner, including glob pattern support for coverage files

Node.js 23 will replace Node.js 22 as the ‘Current’ release line when Node.js 22 enters long-term support (LTS) later this month.
According to the release schedule, Node.js 23 will remain the ‘Current’ release for the next six months, until April 2025.

Other Notable Changes
Semver-Major Commits

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 force-pushed the renovate/major-major-deps branch from 8b7a94d to 2e3d958 Compare May 3, 2024 04:08
@renovate renovate bot force-pushed the renovate/major-major-deps branch 2 times, most recently from 1df5585 to 0ffa5df Compare May 16, 2024 06:04
@renovate renovate bot force-pushed the renovate/major-major-deps branch 2 times, most recently from 50a9923 to 5b7afd1 Compare June 18, 2024 08:45
@renovate renovate bot force-pushed the renovate/major-major-deps branch 2 times, most recently from bdc5e63 to ed91581 Compare June 25, 2024 16:30
@renovate renovate bot force-pushed the renovate/major-major-deps branch 4 times, most recently from ca35270 to 407f2b5 Compare July 9, 2024 00:45
@renovate renovate bot force-pushed the renovate/major-major-deps branch from 407f2b5 to 6609c02 Compare July 9, 2024 11:59
@renovate renovate bot force-pushed the renovate/major-major-deps branch 3 times, most recently from 2817e5a to ebe563a Compare July 20, 2024 02:08
@renovate renovate bot force-pushed the renovate/major-major-deps branch from ebe563a to 0a9164e Compare August 7, 2024 03:20
@renovate renovate bot force-pushed the renovate/major-major-deps branch 3 times, most recently from 9d5c7c5 to 7fec756 Compare August 29, 2024 09:08
@renovate renovate bot force-pushed the renovate/major-major-deps branch from 7fec756 to 5702bad Compare September 4, 2024 02:00
@renovate renovate bot force-pushed the renovate/major-major-deps branch from 5ab66b8 to 57967bd Compare October 17, 2024 01:28
@renovate renovate bot force-pushed the renovate/major-major-deps branch from 57967bd to 15ce0e1 Compare October 25, 2024 02:15
@renovate renovate bot changed the title fix(major deps): update node.js to v22 fix(major deps): update node.js to v23 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/major-major-deps branch from 15ce0e1 to 247b3c4 Compare October 30, 2024 03:49
@renovate renovate bot changed the title fix(major deps): update node.js to v23 fix(major deps): update node.js to v22 Oct 30, 2024
@renovate renovate bot force-pushed the renovate/major-major-deps branch from 247b3c4 to 9574b05 Compare November 12, 2024 01:30
@renovate renovate bot changed the title fix(major deps): update node.js to v22 fix(major deps): update node.js to v23 Nov 12, 2024
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.

0 participants