Skip to content

chore!: remove Node.js 18.x and 23.x usage, add 24.x #718

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

Merged
merged 1 commit into from
Jun 6, 2025

Conversation

MikeMcC399
Copy link
Contributor

Situation

Referring to the Node.js release schedule the following release transitions have occurred:

Node.js Status Date
18.x End-of-Life 2025-04-30
23.x End-of-Life 2025-06-01
24.x Release 2025-05-06

Change

  1. In package.json remove 18.x, remove 23.x, continue to include 24.x and above:
  "engines": {
    "node": "^20.10.0 || ^22.11.0 || >=24.0.0"
  },
  1. In .github/workflows/ci.yml remove 18.x, remove 23.x, add 24.x with Windows exclusion, due to issue vitest fails "handle integrity checks" on Windows with Node.js 24.x #715:
      matrix:
        node:
          - 20
          - 22
          - 24
        platform:
          - ubuntu-latest
          - macos-latest
          - windows-latest

BREAKING CHANGE: drop Node.js 18.x and 23.x support

In CI add Node.js 24.x tests with Windows exclusion
@MikeMcC399

This comment was marked as resolved.

@MikeMcC399 MikeMcC399 marked this pull request as ready for review June 4, 2025 10:35
@MikeMcC399

This comment was marked as resolved.

@aduh95 aduh95 merged commit 783a42f into nodejs:main Jun 6, 2025
9 checks passed
@MikeMcC399 MikeMcC399 deleted the drop/node-18.x-23.x/add-24.x branch June 6, 2025 18:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Adapt to Node.js lifecycle changes
2 participants