diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9af483e407..eb5b6c5534 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['16', '18', '20'] + node: ['18', '20', '22'] include: - node: '20' coverage: true diff --git a/CHANGELOG.md b/CHANGELOG.md index f8741027e6..f678a68a0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ This is the log of notable changes to EAS CLI and related packages. ### ๐Ÿ›  Breaking changes +- Drop support for Node 16. ([#2413](https://github.com/expo/eas-cli/pull/2413) by [@byCedric](https://github.com/byCedric)) + ### ๐ŸŽ‰ New features ### ๐Ÿ› Bug fixes @@ -15,6 +17,7 @@ This is the log of notable changes to EAS CLI and related packages. ### ๐Ÿงน Chores - Update lockfile to only include `@types/node@20.11.0`. ([#2412](https://github.com/expo/eas-cli/pull/2412) by [@byCedric](https://github.com/byCedric)) +- Update test workflow Node versions to 18, 20, and 22. ([#2413](https://github.com/expo/eas-cli/pull/2413) by [@byCedric](https://github.com/byCedric)) ## [9.2.0](https://github.com/expo/eas-cli/releases/tag/v9.2.0) - 2024-06-06 diff --git a/packages/eas-cli/package.json b/packages/eas-cli/package.json index 1ca5a5e552..59a591ce1f 100644 --- a/packages/eas-cli/package.json +++ b/packages/eas-cli/package.json @@ -121,7 +121,7 @@ "typescript": "5.3.3" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "files": [ "/bin", diff --git a/packages/eas-json/package.json b/packages/eas-json/package.json index 826cc86220..40234fa41d 100644 --- a/packages/eas-json/package.json +++ b/packages/eas-json/package.json @@ -25,7 +25,7 @@ "typescript": "5.3.3" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "homepage": "https://github.com/expo/eas-cli", "license": "MIT", diff --git a/scripts/package.json b/scripts/package.json index 9f9d9a9c54..0b5f543f15 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -15,7 +15,7 @@ "author": "Expo ", "license": "MIT", "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "dependencies": { "chalk": "5.2.0",