Skip to content

Commit 78d6ba8

Browse files
authored
Add support for Node.js 25.x (#2704)
1 parent c3b2401 commit 78d6ba8

File tree

4 files changed

+38
-17
lines changed

4 files changed

+38
-17
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- ubuntu-latest
2121
- windows-latest
2222
# these versions must be kept in sync with enginesTested.node in package.json
23-
node-version: [20.x, 22.x, 24.x]
23+
node-version: [20.x, 22.x, 24.x, 25.x]
2424
fail-fast: false
2525

2626
steps:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Please see [CONTRIBUTING.md](./CONTRIBUTING.md) on how to contribute to Cucumber
99

1010
## [Unreleased]
1111
### Added
12+
- Add support for Node.js 25.x ([#2704](https://github.com/cucumber/cucumber-js/pull/2704))
1213
- Support named BeforeAll/AfterAll hooks ([#2661](https://github.com/cucumber/cucumber-js/pull/2661))
1314
- Emit messages for suggestions ([#2703](https://github.com/cucumber/cucumber-js/pull/2703))
1415

package-lock.json

Lines changed: 35 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
"node": "20 || 22 || >=24"
215215
},
216216
"enginesTested": {
217-
"node": "20 || 22 || 24"
217+
"node": "20 || 22 || 24 || 25"
218218
},
219219
"dependencies": {
220220
"@cucumber/ci-environment": "12.0.0",

0 commit comments

Comments
 (0)