diff --git a/CHANGELOG.md b/CHANGELOG.md index b8c8654033..08c85acf3a 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 +- Bump minimum required Node version to 18.14.0 to support `FormData` file streaming withi `undici`. ([#2420](https://github.com/expo/eas-cli/pull/2420) by [@byCedric](https://github.com/byCedric)) + ### 🎉 New features - Allow filtering by `--fingerprint_hash` in `eas build:list` command. ([#2818](https://github.com/expo/eas-cli/pull/2818) by [@szdziedzic](https://github.com/szdziedzic)) diff --git a/packages/eas-cli/package.json b/packages/eas-cli/package.json index e49f736413..cec783ae10 100644 --- a/packages/eas-cli/package.json +++ b/packages/eas-cli/package.json @@ -129,7 +129,7 @@ "typescript": "5.3.3" }, "engines": { - "node": ">=18.0.0" + "node": ">=18.14.0" }, "files": [ "/bin", diff --git a/packages/eas-json/package.json b/packages/eas-json/package.json index d259073263..441683314b 100644 --- a/packages/eas-json/package.json +++ b/packages/eas-json/package.json @@ -26,7 +26,7 @@ "typescript": "5.3.3" }, "engines": { - "node": ">=18.0.0" + "node": ">=18.14.0" }, "homepage": "https://github.com/expo/eas-cli", "license": "MIT", diff --git a/scripts/package.json b/scripts/package.json index 0b5f543f15..7f756c124f 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -15,7 +15,7 @@ "author": "Expo ", "license": "MIT", "engines": { - "node": ">=18.0.0" + "node": ">=18.14.0" }, "dependencies": { "chalk": "5.2.0",