Skip to content

Commit 76632c6

Browse files
authored
chore: drop node 23 (#15640)
1 parent a5f29b4 commit 76632c6

File tree

61 files changed

+62
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+62
-66
lines changed

.circleci/config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
version: 2.1
22

33
aliases:
4-
- &filter-ignore-gh-pages
5-
branches:
6-
ignore: gh-pages
74
- &install
85
pkg-manager: yarn
96
override-ci-command: yarn install --immutable && yarn build:js
@@ -58,5 +55,5 @@ workflows:
5855
name: test-node-partial-<< matrix.node-version >>
5956
matrix:
6057
parameters:
61-
node-version: ['18', '20', '22', '23', '24']
58+
node-version: ['18', '20', '22', '24']
6259
- test-jest-jasmine

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
node-version: [18.x, 20.x, 22.x, 23.x, 24.x]
18+
node-version: [18.x, 20.x, 22.x, 24.x]
1919
name: Node v${{ matrix.node-version }}
2020
runs-on: ${{ inputs.os }}
2121

CHANGELOG.md

Lines changed: 2 additions & 3 deletions

constraints.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ gen_enforced_field(WorkspaceCwd, 'publishConfig.access', null) :-
5353
workspace_field(WorkspaceCwd, 'private', true).
5454

5555
% Enforces the engines.node field for public workspace
56-
gen_enforced_field(WorkspaceCwd, 'engines.node', '^18.14.0 || ^20.0.0 || >=22.0.0') :-
56+
gen_enforced_field(WorkspaceCwd, 'engines.node', '^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0') :-
5757
\+ workspace_field(WorkspaceCwd, 'private', true).
5858

5959
% Enforces the main and types field to start with ./

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
"logo": "https://opencollective.com/jest/logo.txt"
193193
},
194194
"engines": {
195-
"node": "^18.14.0 || ^20.0.0 || >=22.0.0"
195+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
196196
},
197197
"resolutions": {
198198
"@types/node": "~18.14",

packages/babel-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@babel/core": "^7.11.0"
3838
},
3939
"engines": {
40-
"node": "^18.14.0 || ^20.0.0 || >=22.0.0"
40+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
4141
},
4242
"publishConfig": {
4343
"access": "public"

packages/babel-plugin-jest-hoist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"directory": "packages/babel-plugin-jest-hoist"
88
},
99
"engines": {
10-
"node": "^18.14.0 || ^20.0.0 || >=22.0.0"
10+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
1111
},
1212
"license": "MIT",
1313
"main": "./build/index.js",

packages/babel-preset-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@babel/core": "^7.11.0"
2121
},
2222
"engines": {
23-
"node": "^18.14.0 || ^20.0.0 || >=22.0.0"
23+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2424
},
2525
"publishConfig": {
2626
"access": "public"

packages/create-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"prompts": "^2.0.1"
3232
},
3333
"engines": {
34-
"node": "^18.14.0 || ^20.0.0 || >=22.0.0"
34+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
3535
},
3636
"publishConfig": {
3737
"access": "public"

packages/diff-sequences/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"diff"
1717
],
1818
"engines": {
19-
"node": "^18.14.0 || ^20.0.0 || >=22.0.0"
19+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2020
},
2121
"main": "./build/index.js",
2222
"types": "./build/index.d.ts",

0 commit comments

Comments
 (0)