Skip to content

Commit

Permalink
chore: bump minimum required Node version to 18.14.0
Browse files Browse the repository at this point in the history
This version includes the `File` primitive that might be required for FormData and large file uploads.

See: https://nodejs.org/en/blog/release/v18.13.0\#introduce-file
See: https://github.com/expo/eas-cli/pull/2414\#discussion_r1634640527
  • Loading branch information
byCedric committed Jan 17, 2025
1 parent 2c1c9b9 commit ebe6848
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"typescript": "5.3.3"
},
"engines": {
"node": ">=18.0.0"
"node": ">=18.14.0"
},
"files": [
"/bin",
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"author": "Expo <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
"node": ">=18.14.0"
},
"dependencies": {
"chalk": "5.2.0",
Expand Down

0 comments on commit ebe6848

Please sign in to comment.