From 4c97fc31f8ec549a7d4fd367188bc29d88bd4a65 Mon Sep 17 00:00:00 2001 From: Szymon Dziedzic Date: Mon, 8 Apr 2024 14:29:06 +0200 Subject: [PATCH] v7.8.0 --- lerna.json | 2 +- packages/eas-cli/README.md | 149 +++++++++++++++++---------------- packages/eas-cli/package.json | 4 +- packages/eas-json/package.json | 2 +- 4 files changed, 81 insertions(+), 76 deletions(-) diff --git a/lerna.json b/lerna.json index a50904ea39..e1bc943bc0 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "npmClient": "yarn", - "version": "7.7.0", + "version": "7.8.0", "$schema": "node_modules/lerna/schemas/lerna-schema.json" } diff --git a/packages/eas-cli/README.md b/packages/eas-cli/README.md index 24d40f1272..f16fe26bae 100644 --- a/packages/eas-cli/README.md +++ b/packages/eas-cli/README.md @@ -137,7 +137,7 @@ ALIASES $ eas login ``` -_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/account/login.ts)_ +_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/account/login.ts)_ ## `eas account:logout` @@ -154,7 +154,7 @@ ALIASES $ eas logout ``` -_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/account/logout.ts)_ +_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/account/logout.ts)_ ## `eas account:view` @@ -171,7 +171,7 @@ ALIASES $ eas whoami ``` -_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/account/view.ts)_ +_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/account/view.ts)_ ## `eas analytics [STATUS]` @@ -185,7 +185,7 @@ DESCRIPTION display or change analytics settings ``` -_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/analytics.ts)_ +_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/analytics.ts)_ ## `eas autocomplete [SHELL]` @@ -237,7 +237,7 @@ DESCRIPTION create a branch ``` -_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/branch/create.ts)_ +_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/create.ts)_ ## `eas branch:delete [NAME]` @@ -258,7 +258,7 @@ DESCRIPTION delete a branch ``` -_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/branch/delete.ts)_ +_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/delete.ts)_ ## `eas branch:list` @@ -278,7 +278,7 @@ DESCRIPTION list all branches ``` -_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/branch/list.ts)_ +_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/list.ts)_ ## `eas branch:rename` @@ -298,7 +298,7 @@ DESCRIPTION rename a branch ``` -_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/branch/rename.ts)_ +_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/rename.ts)_ ## `eas branch:view [NAME]` @@ -321,7 +321,7 @@ DESCRIPTION view a branch ``` -_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/branch/view.ts)_ +_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/view.ts)_ ## `eas build` @@ -330,28 +330,33 @@ start a build ``` USAGE $ eas build [-p android|ios|all] [-e ] [--local] [--output ] [--wait] [--clear-cache] - [--auto-submit | --auto-submit-with-profile ] [-m ] [--json --non-interactive] + [--auto-submit | --auto-submit-with-profile ] [-m ] [--build-logger-level + trace|debug|info|warn|error|fatal] [--json --non-interactive] FLAGS - -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined - in eas.json. - -m, --message= A short message describing the build + -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to + "production" if defined in eas.json. + -m, --message= A short message describing the build -p, --platform=(android|ios|all) - --auto-submit Submit on build complete using the submit profile with the same name as the - build profile - --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name - --clear-cache Clear cache before the build - --json Enable JSON output, non-JSON messages will be printed to stderr. - --local Run build locally [experimental] - --non-interactive Run the command in non-interactive mode. - --output= Output path for local build - --[no-]wait Wait for build(s) to complete + --auto-submit Submit on build complete using the submit profile with the + same name as the build profile + --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with + provided name + --build-logger-level=(trace|debug|info|warn|error|fatal) The level of logs to output during the build process. + Defaults to "info". + --clear-cache Clear cache before the build + --json Enable JSON output, non-JSON messages will be printed to + stderr. + --local Run build locally [experimental] + --non-interactive Run the command in non-interactive mode. + --output= Output path for local build + --[no-]wait Wait for build(s) to complete DESCRIPTION start a build ``` -_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/index.ts)_ +_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/index.ts)_ ## `eas build:cancel [BUILD_ID]` @@ -370,7 +375,7 @@ DESCRIPTION cancel a build ``` -_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/cancel.ts)_ +_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/cancel.ts)_ ## `eas build:configure` @@ -387,7 +392,7 @@ DESCRIPTION configure the project to support EAS Build ``` -_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/configure.ts)_ +_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/configure.ts)_ ## `eas build:delete [BUILD_ID]` @@ -406,7 +411,7 @@ DESCRIPTION delete a build ``` -_See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/delete.ts)_ +_See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/delete.ts)_ ## `eas build:inspect` @@ -441,7 +446,7 @@ DESCRIPTION inspect the state of the project at specific build stages, useful for troubleshooting ``` -_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/inspect.ts)_ +_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/inspect.ts)_ ## `eas build:list` @@ -482,7 +487,7 @@ DESCRIPTION list all builds for your project ``` -_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/list.ts)_ +_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/list.ts)_ ## `eas build:resign` @@ -508,7 +513,7 @@ DESCRIPTION re-sign a build archive ``` -_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/resign.ts)_ +_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/resign.ts)_ ## `eas build:run` @@ -534,7 +539,7 @@ DESCRIPTION run simulator/emulator builds from eas-cli ``` -_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/run.ts)_ +_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/run.ts)_ ## `eas build:submit` @@ -584,7 +589,7 @@ DESCRIPTION get the latest version from EAS servers ``` -_See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/version/get.ts)_ +_See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/version/get.ts)_ ## `eas build:version:set` @@ -603,7 +608,7 @@ DESCRIPTION update version of an app ``` -_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/version/set.ts)_ +_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/version/set.ts)_ ## `eas build:version:sync` @@ -622,7 +627,7 @@ DESCRIPTION update a version in native code with a value stored on EAS servers ``` -_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/version/sync.ts)_ +_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/version/sync.ts)_ ## `eas build:view [BUILD_ID]` @@ -639,7 +644,7 @@ DESCRIPTION view a build for your project ``` -_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/view.ts)_ +_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/view.ts)_ ## `eas channel:create [NAME]` @@ -660,7 +665,7 @@ DESCRIPTION create a channel ``` -_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/create.ts)_ +_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/create.ts)_ ## `eas channel:edit [NAME]` @@ -682,7 +687,7 @@ DESCRIPTION point a channel at a new branch ``` -_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/edit.ts)_ +_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/edit.ts)_ ## `eas channel:list` @@ -702,7 +707,7 @@ DESCRIPTION list all channels ``` -_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/list.ts)_ +_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/list.ts)_ ## `eas channel:rollout [CHANNEL]` @@ -734,7 +739,7 @@ DESCRIPTION Roll a new branch out on a channel incrementally. ``` -_See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/rollout.ts)_ +_See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/rollout.ts)_ ## `eas channel:view [NAME]` @@ -757,7 +762,7 @@ DESCRIPTION view a channel ``` -_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/view.ts)_ +_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/view.ts)_ ## `eas config` @@ -778,7 +783,7 @@ DESCRIPTION display project configuration (app.json + eas.json) ``` -_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/config.ts)_ +_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/config.ts)_ ## `eas credentials` @@ -795,7 +800,7 @@ DESCRIPTION manage credentials ``` -_See code: [src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/credentials/index.ts)_ +_See code: [src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/credentials/index.ts)_ ## `eas credentials:configure-build` @@ -813,7 +818,7 @@ DESCRIPTION Set up credentials for building your project. ``` -_See code: [src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/credentials/configure-build.ts)_ +_See code: [src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/credentials/configure-build.ts)_ ## `eas device:create` @@ -827,7 +832,7 @@ DESCRIPTION register new Apple Devices to use for internal distribution ``` -_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/create.ts)_ +_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/create.ts)_ ## `eas device:delete` @@ -847,7 +852,7 @@ DESCRIPTION remove a registered device from your account ``` -_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/delete.ts)_ +_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/delete.ts)_ ## `eas device:list` @@ -868,7 +873,7 @@ DESCRIPTION list all registered devices for your account ``` -_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/list.ts)_ +_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/list.ts)_ ## `eas device:rename` @@ -889,7 +894,7 @@ DESCRIPTION rename a registered device ``` -_See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/rename.ts)_ +_See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/rename.ts)_ ## `eas device:view [UDID]` @@ -903,7 +908,7 @@ DESCRIPTION view a device for your project ``` -_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/view.ts)_ +_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/view.ts)_ ## `eas diagnostics` @@ -917,7 +922,7 @@ DESCRIPTION display environment info ``` -_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/diagnostics.ts)_ +_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/diagnostics.ts)_ ## `eas help [COMMAND]` @@ -1005,7 +1010,7 @@ DESCRIPTION validate the local store configuration ``` -_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/metadata/lint.ts)_ +_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/metadata/lint.ts)_ ## `eas metadata:pull` @@ -1022,7 +1027,7 @@ DESCRIPTION generate the local store configuration from the app stores ``` -_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/metadata/pull.ts)_ +_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/metadata/pull.ts)_ ## `eas metadata:push` @@ -1039,7 +1044,7 @@ DESCRIPTION sync the local store configuration to the app stores ``` -_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/metadata/push.ts)_ +_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/metadata/push.ts)_ ## `eas open` @@ -1053,7 +1058,7 @@ DESCRIPTION open the project page in a web browser ``` -_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/open.ts)_ +_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/open.ts)_ ## `eas project:info` @@ -1067,7 +1072,7 @@ DESCRIPTION information about the current project ``` -_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/project/info.ts)_ +_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/project/info.ts)_ ## `eas project:init` @@ -1089,7 +1094,7 @@ ALIASES $ eas init ``` -_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/project/init.ts)_ +_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/project/init.ts)_ ## `eas secret:create` @@ -1112,7 +1117,7 @@ DESCRIPTION create an environment secret on the current project or owner account ``` -_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/create.ts)_ +_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/create.ts)_ ## `eas secret:delete` @@ -1130,7 +1135,7 @@ DESCRIPTION delete an environment secret by ID ``` -_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/delete.ts)_ +_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/delete.ts)_ ## `eas secret:list` @@ -1144,7 +1149,7 @@ DESCRIPTION list environment secrets available for your current app ``` -_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/list.ts)_ +_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/list.ts)_ ## `eas secret:push` @@ -1164,7 +1169,7 @@ DESCRIPTION read environment secrets from env file and store on the server ``` -_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/push.ts)_ +_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/push.ts)_ ## `eas submit` @@ -1195,7 +1200,7 @@ ALIASES $ eas build:submit ``` -_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/submit.ts)_ +_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/submit.ts)_ ## `eas update` @@ -1228,7 +1233,7 @@ DESCRIPTION publish an update group ``` -_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/index.ts)_ +_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/index.ts)_ ## `eas update:configure` @@ -1246,7 +1251,7 @@ DESCRIPTION configure the project to support EAS Update ``` -_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/configure.ts)_ +_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/configure.ts)_ ## `eas update:delete GROUPID` @@ -1267,7 +1272,7 @@ DESCRIPTION delete all the updates in an update group ``` -_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/delete.ts)_ +_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/delete.ts)_ ## `eas update:list` @@ -1289,7 +1294,7 @@ DESCRIPTION view the recent updates ``` -_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/list.ts)_ +_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/list.ts)_ ## `eas update:republish` @@ -1316,7 +1321,7 @@ DESCRIPTION roll back to an existing update ``` -_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/republish.ts)_ +_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/republish.ts)_ ## `eas update:roll-back-to-embedded` @@ -1343,7 +1348,7 @@ DESCRIPTION roll back to the embedded update ``` -_See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/roll-back-to-embedded.ts)_ +_See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/roll-back-to-embedded.ts)_ ## `eas update:rollback` @@ -1362,7 +1367,7 @@ DESCRIPTION roll back to an embedded update or an existing update ``` -_See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/rollback.ts)_ +_See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/rollback.ts)_ ## `eas update:view GROUPID` @@ -1382,7 +1387,7 @@ DESCRIPTION update group details ``` -_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/view.ts)_ +_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/view.ts)_ ## `eas webhook:create` @@ -1403,7 +1408,7 @@ DESCRIPTION create a webhook ``` -_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/create.ts)_ +_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/create.ts)_ ## `eas webhook:delete [ID]` @@ -1423,7 +1428,7 @@ DESCRIPTION delete a webhook ``` -_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/delete.ts)_ +_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/delete.ts)_ ## `eas webhook:list` @@ -1441,7 +1446,7 @@ DESCRIPTION list webhooks ``` -_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/list.ts)_ +_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/list.ts)_ ## `eas webhook:update` @@ -1463,7 +1468,7 @@ DESCRIPTION update a webhook ``` -_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/update.ts)_ +_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/update.ts)_ ## `eas webhook:view ID` @@ -1480,7 +1485,7 @@ DESCRIPTION view a webhook ``` -_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/view.ts)_ +_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/view.ts)_ ## `eas whoami` diff --git a/packages/eas-cli/package.json b/packages/eas-cli/package.json index e0c6ef0a76..af60047688 100644 --- a/packages/eas-cli/package.json +++ b/packages/eas-cli/package.json @@ -1,7 +1,7 @@ { "name": "eas-cli", "description": "EAS command line tool", - "version": "7.7.0", + "version": "7.8.0", "author": "Expo ", "bin": { "eas": "./bin/run" @@ -14,7 +14,7 @@ "@expo/config-plugins": "7.8.4", "@expo/config-types": "50.0.0", "@expo/eas-build-job": "1.0.95", - "@expo/eas-json": "7.7.0", + "@expo/eas-json": "7.8.0", "@expo/json-file": "8.2.37", "@expo/logger": "1.0.57", "@expo/multipart-body-parser": "1.1.0", diff --git a/packages/eas-json/package.json b/packages/eas-json/package.json index 6d0d613222..4284d71b4b 100644 --- a/packages/eas-json/package.json +++ b/packages/eas-json/package.json @@ -1,7 +1,7 @@ { "name": "@expo/eas-json", "description": "A library for interacting with eas.json", - "version": "7.7.0", + "version": "7.8.0", "author": "Expo ", "bugs": "https://github.com/expo/eas-cli/issues", "dependencies": {