From c4945ab5c4e9e8d656a4718be2b58cebfd2fecfa Mon Sep 17 00:00:00 2001 From: David Goss Date: Thu, 21 Apr 2022 07:48:15 +0100 Subject: [PATCH 1/2] add config for node 18 testing --- .github/workflows/build.yaml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0609bf00b..1a8af3190 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -20,7 +20,7 @@ jobs: - ubuntu-latest - windows-latest # these versions must be kept in sync with enginesTested.node in package.json - node-version: [12.x, 14.x, 16.x, 17.x] + node-version: [12.x, 14.x, 16.x, 17.x, 18.x] fail-fast: false steps: diff --git a/package.json b/package.json index 240ac9c91..5a2e3d6fc 100644 --- a/package.json +++ b/package.json @@ -191,7 +191,7 @@ "node": "12 || 14 || >=16" }, "enginesTested": { - "node": "12 || 14 || 16 || 17" + "node": "12 || 14 || 16 || 17 || 18" }, "dependencies": { "@cspotcode/source-map-support": "^0.7.0", From e703fb66f19a956971eba9c02b57788cc0faf205 Mon Sep 17 00:00:00 2001 From: David Goss Date: Thu, 21 Apr 2022 07:56:27 +0100 Subject: [PATCH 2/2] add CHANGELOG.md entry --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b02cbb183..0b9c4d0a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) on how to contribute to Cucumber. ## [Unreleased] +### Added +- Explicit support for Node.js 18 ([#2007](https://github.com/cucumber/cucumber-js/pull/2007)) ## [8.1.1] - 2022-04-20 ### Fixed