-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into @radoslawkrzemien/ENG…
…-11843-change-default-appversionsource # Conflicts: # CHANGELOG.md
- Loading branch information
Showing
13 changed files
with
250 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,37 @@ This is the log of notable changes to EAS CLI and related packages. | |
|
||
### 🛠 Breaking changes | ||
|
||
- Treat undefined appVersionSource as REMOTE as a default. ([#2411](https://github.com/expo/eas-cli/pull/2411) by [@radoslawkrzemien](https://github.com/radoslawkrzemien)) | ||
- Drop support for Node 16. ([#2413](https://github.com/expo/eas-cli/pull/2413) by [@byCedric](https://github.com/byCedric)) | ||
- Update [`eas-build`](https://github.com/expo/eas-build) dependencies to the version requiring Node 18 as minimal Node version. ([#2416](https://github.com/expo/eas-cli/pull/2416) by [@expo-bot](https://github.com/expo-bot)) | ||
- Prompt the users to set `appVersionSource`, while mentioning that `remote` is the default. ([#2411](https://github.com/expo/eas-cli/pull/2411) by [@radoslawkrzemien](https://github.com/radoslawkrzemien)) | ||
|
||
### 🎉 New features | ||
|
||
### 🐛 Bug fixes | ||
|
||
- Correctly parse the EXPO_APPLE_PROVIER_ID environment variable. ([#2349](https://github.com/expo/eas-cli/pull/2349) by [@louix](https://github.com/louix)) | ||
|
||
### 🧹 Chores | ||
|
||
- Update lockfile to only include `@types/[email protected]`. ([#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 | ||
|
||
### 🎉 New features | ||
|
||
- Add `target-profile` and `source-profile` flags to the `eas build:resign` command. ([#2410](https://github.com/expo/eas-cli/pull/2410) by [@szdziedzic](https://github.com/szdziedzic)) | ||
- Display build profile in the output of `eas build:list`. ([#2408](https://github.com/expo/eas-cli/pull/2408) by [@szdziedzic](https://github.com/szdziedzic)) | ||
|
||
### 🐛 Bug fixes | ||
|
||
- Use the correct app config for no GitHub flow in `init:onboarding`. ([#2397](https://github.com/expo/eas-cli/pull/2397) by [@szdziedzic](https://github.com/szdziedzic)) | ||
- Disallow picking expired builds as submit archive source. ([#2406](https://github.com/expo/eas-cli/pull/2406) by [@sjchmiela](https://github.com/sjchmiela)) | ||
|
||
### 🧹 Chores | ||
|
||
- Print network error message if present. ([#2407](https://github.com/expo/eas-cli/pull/2407) by [@szdziedzic](https://github.com/szdziedzic)) | ||
- Make flags for `eas build:list` command more aligned with flags for rest of the commands. ([#2409](https://github.com/expo/eas-cli/pull/2409) by [@szdziedzic](https://github.com/szdziedzic)) | ||
|
||
## [9.1.0](https://github.com/expo/eas-cli/releases/tag/v9.1.0) - 2024-05-23 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"npmClient": "yarn", | ||
"version": "9.1.0", | ||
"version": "9.2.0", | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "eas-cli", | ||
"description": "EAS command line tool", | ||
"version": "9.1.0", | ||
"version": "9.2.0", | ||
"author": "Expo <[email protected]>", | ||
"bin": { | ||
"eas": "./bin/run" | ||
|
@@ -13,10 +13,10 @@ | |
"@expo/config": "8.5.4", | ||
"@expo/config-plugins": "7.8.4", | ||
"@expo/config-types": "50.0.0", | ||
"@expo/eas-build-job": "1.0.114", | ||
"@expo/eas-build-job": "1.0.117", | ||
"@expo/eas-json": "9.0.8", | ||
"@expo/json-file": "8.2.37", | ||
"@expo/logger": "1.0.57", | ||
"@expo/logger": "1.0.117", | ||
"@expo/multipart-body-parser": "1.1.0", | ||
"@expo/osascript": "2.0.33", | ||
"@expo/package-manager": "1.1.2", | ||
|
@@ -28,7 +28,7 @@ | |
"@expo/results": "1.0.0", | ||
"@expo/rudder-sdk-node": "1.1.1", | ||
"@expo/spawn-async": "1.7.0", | ||
"@expo/steps": "1.0.114", | ||
"@expo/steps": "1.0.117", | ||
"@expo/timeago.js": "1.0.0", | ||
"@oclif/core": "^1.26.2", | ||
"@oclif/plugin-autocomplete": "^2.3.10", | ||
|
@@ -121,7 +121,7 @@ | |
"typescript": "5.3.3" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0" | ||
"node": ">=18.0.0" | ||
}, | ||
"files": [ | ||
"/bin", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
"author": "Expo <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=16.0.0" | ||
"node": ">=18.0.0" | ||
}, | ||
"dependencies": { | ||
"chalk": "5.2.0", | ||
|
Oops, something went wrong.