eas-cli 8.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/README.md +62 -60
  2. package/build/build/android/build.js +1 -0
  3. package/build/build/android/graphql.js +0 -1
  4. package/build/build/android/prepareJob.js +0 -2
  5. package/build/build/android/syncProjectConfiguration.d.ts +3 -1
  6. package/build/build/android/syncProjectConfiguration.js +2 -2
  7. package/build/build/createContext.d.ts +2 -1
  8. package/build/build/createContext.js +2 -1
  9. package/build/build/ios/build.js +1 -0
  10. package/build/build/ios/graphql.js +0 -1
  11. package/build/build/ios/prepareJob.js +0 -2
  12. package/build/build/ios/syncProjectConfiguration.d.ts +3 -1
  13. package/build/build/ios/syncProjectConfiguration.js +2 -2
  14. package/build/build/local.js +1 -1
  15. package/build/build/metadata.js +11 -25
  16. package/build/build/runBuildAndSubmit.d.ts +1 -0
  17. package/build/build/runBuildAndSubmit.js +4 -3
  18. package/build/build/utils/formatBuild.js +0 -4
  19. package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +11 -0
  20. package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +8 -3
  21. package/build/commands/build/configure.js +8 -2
  22. package/build/commands/build/index.d.ts +1 -0
  23. package/build/commands/build/index.js +5 -0
  24. package/build/commands/build/inspect.js +1 -0
  25. package/build/commands/build/internal.js +1 -0
  26. package/build/commands/credentials/configure-build.js +1 -1
  27. package/build/commands/project/onboarding.d.ts +15 -0
  28. package/build/commands/project/onboarding.js +168 -0
  29. package/build/commands/update/configure.js +1 -0
  30. package/build/commands/update/index.js +2 -0
  31. package/build/commands/update/roll-back-to-embedded.js +2 -0
  32. package/build/credentials/context.d.ts +2 -0
  33. package/build/credentials/context.js +3 -1
  34. package/build/credentials/errors.d.ts +6 -0
  35. package/build/credentials/errors.js +14 -1
  36. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +9 -4
  37. package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +1 -0
  38. package/build/credentials/ios/actions/CreateProvisioningProfile.js +22 -5
  39. package/build/credentials/ios/actions/SetUpProvisioningProfile.js +17 -5
  40. package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +2 -1
  41. package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +4 -3
  42. package/build/credentials/manager/SetUpIosBuildCredentials.js +1 -1
  43. package/build/graphql/generated.d.ts +648 -184
  44. package/build/graphql/generated.js +63 -17
  45. package/build/graphql/mutations/UserPreferencesMutation.d.ts +10 -0
  46. package/build/graphql/mutations/UserPreferencesMutation.js +44 -0
  47. package/build/graphql/queries/UserQuery.js +10 -0
  48. package/build/graphql/types/App.js +7 -0
  49. package/build/graphql/types/Build.js +0 -1
  50. package/build/onboarding/git.d.ts +10 -0
  51. package/build/onboarding/git.js +57 -0
  52. package/build/onboarding/installDependencies.d.ts +3 -0
  53. package/build/onboarding/installDependencies.js +20 -0
  54. package/build/onboarding/runCommand.d.ts +7 -0
  55. package/build/onboarding/runCommand.js +49 -0
  56. package/build/project/projectUtils.d.ts +0 -1
  57. package/build/project/projectUtils.js +1 -12
  58. package/build/project/publish.d.ts +3 -2
  59. package/build/project/publish.js +4 -10
  60. package/build/project/resolveRuntimeVersionAsync.d.ts +3 -2
  61. package/build/project/resolveRuntimeVersionAsync.js +2 -9
  62. package/build/rollout/actions/CreateRollout.js +1 -0
  63. package/build/update/android/UpdatesModule.d.ts +7 -3
  64. package/build/update/android/UpdatesModule.js +3 -19
  65. package/build/update/configure.d.ts +3 -2
  66. package/build/update/configure.js +17 -5
  67. package/build/update/ios/UpdatesModule.d.ts +8 -3
  68. package/build/update/ios/UpdatesModule.js +3 -20
  69. package/build/update/utils.d.ts +0 -2
  70. package/build/update/utils.js +2 -22
  71. package/build/utils/expoUpdatesCli.d.ts +4 -1
  72. package/build/utils/expoUpdatesCli.js +5 -2
  73. package/build/vcs/clients/git.d.ts +2 -0
  74. package/build/vcs/clients/git.js +52 -27
  75. package/build/vcs/git.d.ts +6 -4
  76. package/build/vcs/git.js +23 -6
  77. package/oclif.manifest.json +30 -1
  78. package/package.json +5 -5
package/README.md CHANGED
@@ -140,7 +140,7 @@ ALIASES
140
140
  $ eas login
141
141
  ```
142
142
 
143
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/account/login.ts)_
143
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/account/login.ts)_
144
144
 
145
145
  ## `eas account:logout`
146
146
 
@@ -157,7 +157,7 @@ ALIASES
157
157
  $ eas logout
158
158
  ```
159
159
 
160
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/account/logout.ts)_
160
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/account/logout.ts)_
161
161
 
162
162
  ## `eas account:view`
163
163
 
@@ -174,7 +174,7 @@ ALIASES
174
174
  $ eas whoami
175
175
  ```
176
176
 
177
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/account/view.ts)_
177
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/account/view.ts)_
178
178
 
179
179
  ## `eas analytics [STATUS]`
180
180
 
@@ -188,7 +188,7 @@ DESCRIPTION
188
188
  display or change analytics settings
189
189
  ```
190
190
 
191
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/analytics.ts)_
191
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/analytics.ts)_
192
192
 
193
193
  ## `eas autocomplete [SHELL]`
194
194
 
@@ -240,7 +240,7 @@ DESCRIPTION
240
240
  create a branch
241
241
  ```
242
242
 
243
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/branch/create.ts)_
243
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/branch/create.ts)_
244
244
 
245
245
  ## `eas branch:delete [NAME]`
246
246
 
@@ -261,7 +261,7 @@ DESCRIPTION
261
261
  delete a branch
262
262
  ```
263
263
 
264
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/branch/delete.ts)_
264
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/branch/delete.ts)_
265
265
 
266
266
  ## `eas branch:list`
267
267
 
@@ -281,7 +281,7 @@ DESCRIPTION
281
281
  list all branches
282
282
  ```
283
283
 
284
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/branch/list.ts)_
284
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/branch/list.ts)_
285
285
 
286
286
  ## `eas branch:rename`
287
287
 
@@ -301,7 +301,7 @@ DESCRIPTION
301
301
  rename a branch
302
302
  ```
303
303
 
304
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/branch/rename.ts)_
304
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/branch/rename.ts)_
305
305
 
306
306
  ## `eas branch:view [NAME]`
307
307
 
@@ -324,7 +324,7 @@ DESCRIPTION
324
324
  view a branch
325
325
  ```
326
326
 
327
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/branch/view.ts)_
327
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/branch/view.ts)_
328
328
 
329
329
  ## `eas build`
330
330
 
@@ -334,7 +334,7 @@ start a build
334
334
  USAGE
335
335
  $ eas build [-p android|ios|all] [-e <value>] [--local] [--output <value>] [--wait] [--clear-cache]
336
336
  [--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--build-logger-level
337
- trace|debug|info|warn|error|fatal] [--json --non-interactive]
337
+ trace|debug|info|warn|error|fatal] [--freeze-credentials] [--json --non-interactive]
338
338
 
339
339
  FLAGS
340
340
  -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to
@@ -348,6 +348,8 @@ FLAGS
348
348
  --build-logger-level=(trace|debug|info|warn|error|fatal) The level of logs to output during the build process.
349
349
  Defaults to "info".
350
350
  --clear-cache Clear cache before the build
351
+ --freeze-credentials Prevent the build from updating credentials in
352
+ non-interactive mode
351
353
  --json Enable JSON output, non-JSON messages will be printed to
352
354
  stderr.
353
355
  --local Run build locally [experimental]
@@ -359,7 +361,7 @@ DESCRIPTION
359
361
  start a build
360
362
  ```
361
363
 
362
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/index.ts)_
364
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/index.ts)_
363
365
 
364
366
  ## `eas build:cancel [BUILD_ID]`
365
367
 
@@ -378,7 +380,7 @@ DESCRIPTION
378
380
  cancel a build
379
381
  ```
380
382
 
381
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/cancel.ts)_
383
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/cancel.ts)_
382
384
 
383
385
  ## `eas build:configure`
384
386
 
@@ -395,7 +397,7 @@ DESCRIPTION
395
397
  configure the project to support EAS Build
396
398
  ```
397
399
 
398
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/configure.ts)_
400
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/configure.ts)_
399
401
 
400
402
  ## `eas build:delete [BUILD_ID]`
401
403
 
@@ -414,7 +416,7 @@ DESCRIPTION
414
416
  delete a build
415
417
  ```
416
418
 
417
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/delete.ts)_
419
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/delete.ts)_
418
420
 
419
421
  ## `eas build:inspect`
420
422
 
@@ -449,7 +451,7 @@ DESCRIPTION
449
451
  inspect the state of the project at specific build stages, useful for troubleshooting
450
452
  ```
451
453
 
452
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/inspect.ts)_
454
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/inspect.ts)_
453
455
 
454
456
  ## `eas build:list`
455
457
 
@@ -490,7 +492,7 @@ DESCRIPTION
490
492
  list all builds for your project
491
493
  ```
492
494
 
493
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/list.ts)_
495
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/list.ts)_
494
496
 
495
497
  ## `eas build:resign`
496
498
 
@@ -516,7 +518,7 @@ DESCRIPTION
516
518
  re-sign a build archive
517
519
  ```
518
520
 
519
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/resign.ts)_
521
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/resign.ts)_
520
522
 
521
523
  ## `eas build:run`
522
524
 
@@ -542,7 +544,7 @@ DESCRIPTION
542
544
  run simulator/emulator builds from eas-cli
543
545
  ```
544
546
 
545
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/run.ts)_
547
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/run.ts)_
546
548
 
547
549
  ## `eas build:submit`
548
550
 
@@ -592,7 +594,7 @@ DESCRIPTION
592
594
  get the latest version from EAS servers
593
595
  ```
594
596
 
595
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/version/get.ts)_
597
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/version/get.ts)_
596
598
 
597
599
  ## `eas build:version:set`
598
600
 
@@ -611,7 +613,7 @@ DESCRIPTION
611
613
  update version of an app
612
614
  ```
613
615
 
614
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/version/set.ts)_
616
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/version/set.ts)_
615
617
 
616
618
  ## `eas build:version:sync`
617
619
 
@@ -630,7 +632,7 @@ DESCRIPTION
630
632
  update a version in native code with a value stored on EAS servers
631
633
  ```
632
634
 
633
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/version/sync.ts)_
635
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/version/sync.ts)_
634
636
 
635
637
  ## `eas build:view [BUILD_ID]`
636
638
 
@@ -647,7 +649,7 @@ DESCRIPTION
647
649
  view a build for your project
648
650
  ```
649
651
 
650
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/build/view.ts)_
652
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/build/view.ts)_
651
653
 
652
654
  ## `eas channel:create [NAME]`
653
655
 
@@ -668,7 +670,7 @@ DESCRIPTION
668
670
  create a channel
669
671
  ```
670
672
 
671
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/channel/create.ts)_
673
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/channel/create.ts)_
672
674
 
673
675
  ## `eas channel:edit [NAME]`
674
676
 
@@ -690,7 +692,7 @@ DESCRIPTION
690
692
  point a channel at a new branch
691
693
  ```
692
694
 
693
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/channel/edit.ts)_
695
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/channel/edit.ts)_
694
696
 
695
697
  ## `eas channel:list`
696
698
 
@@ -710,7 +712,7 @@ DESCRIPTION
710
712
  list all channels
711
713
  ```
712
714
 
713
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/channel/list.ts)_
715
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/channel/list.ts)_
714
716
 
715
717
  ## `eas channel:rollout [CHANNEL]`
716
718
 
@@ -742,7 +744,7 @@ DESCRIPTION
742
744
  Roll a new branch out on a channel incrementally.
743
745
  ```
744
746
 
745
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/channel/rollout.ts)_
747
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/channel/rollout.ts)_
746
748
 
747
749
  ## `eas channel:view [NAME]`
748
750
 
@@ -765,7 +767,7 @@ DESCRIPTION
765
767
  view a channel
766
768
  ```
767
769
 
768
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/channel/view.ts)_
770
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/channel/view.ts)_
769
771
 
770
772
  ## `eas config`
771
773
 
@@ -786,7 +788,7 @@ DESCRIPTION
786
788
  display project configuration (app.json + eas.json)
787
789
  ```
788
790
 
789
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/config.ts)_
791
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/config.ts)_
790
792
 
791
793
  ## `eas credentials`
792
794
 
@@ -803,7 +805,7 @@ DESCRIPTION
803
805
  manage credentials
804
806
  ```
805
807
 
806
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/credentials/index.ts)_
808
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/credentials/index.ts)_
807
809
 
808
810
  ## `eas credentials:configure-build`
809
811
 
@@ -821,7 +823,7 @@ DESCRIPTION
821
823
  Set up credentials for building your project.
822
824
  ```
823
825
 
824
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
826
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
825
827
 
826
828
  ## `eas device:create`
827
829
 
@@ -835,7 +837,7 @@ DESCRIPTION
835
837
  register new Apple Devices to use for internal distribution
836
838
  ```
837
839
 
838
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/device/create.ts)_
840
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/device/create.ts)_
839
841
 
840
842
  ## `eas device:delete`
841
843
 
@@ -855,7 +857,7 @@ DESCRIPTION
855
857
  remove a registered device from your account
856
858
  ```
857
859
 
858
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/device/delete.ts)_
860
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/device/delete.ts)_
859
861
 
860
862
  ## `eas device:list`
861
863
 
@@ -876,7 +878,7 @@ DESCRIPTION
876
878
  list all registered devices for your account
877
879
  ```
878
880
 
879
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/device/list.ts)_
881
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/device/list.ts)_
880
882
 
881
883
  ## `eas device:rename`
882
884
 
@@ -897,7 +899,7 @@ DESCRIPTION
897
899
  rename a registered device
898
900
  ```
899
901
 
900
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/device/rename.ts)_
902
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/device/rename.ts)_
901
903
 
902
904
  ## `eas device:view [UDID]`
903
905
 
@@ -911,7 +913,7 @@ DESCRIPTION
911
913
  view a device for your project
912
914
  ```
913
915
 
914
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/device/view.ts)_
916
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/device/view.ts)_
915
917
 
916
918
  ## `eas diagnostics`
917
919
 
@@ -925,7 +927,7 @@ DESCRIPTION
925
927
  display environment info
926
928
  ```
927
929
 
928
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/diagnostics.ts)_
930
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/diagnostics.ts)_
929
931
 
930
932
  ## `eas help [COMMAND]`
931
933
 
@@ -1016,7 +1018,7 @@ DESCRIPTION
1016
1018
  validate the local store configuration
1017
1019
  ```
1018
1020
 
1019
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1021
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/metadata/lint.ts)_
1020
1022
 
1021
1023
  ## `eas metadata:pull`
1022
1024
 
@@ -1033,7 +1035,7 @@ DESCRIPTION
1033
1035
  generate the local store configuration from the app stores
1034
1036
  ```
1035
1037
 
1036
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1038
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/metadata/pull.ts)_
1037
1039
 
1038
1040
  ## `eas metadata:push`
1039
1041
 
@@ -1050,7 +1052,7 @@ DESCRIPTION
1050
1052
  sync the local store configuration to the app stores
1051
1053
  ```
1052
1054
 
1053
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/metadata/push.ts)_
1055
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/metadata/push.ts)_
1054
1056
 
1055
1057
  ## `eas open`
1056
1058
 
@@ -1064,7 +1066,7 @@ DESCRIPTION
1064
1066
  open the project page in a web browser
1065
1067
  ```
1066
1068
 
1067
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/open.ts)_
1069
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/open.ts)_
1068
1070
 
1069
1071
  ## `eas project:info`
1070
1072
 
@@ -1078,7 +1080,7 @@ DESCRIPTION
1078
1080
  information about the current project
1079
1081
  ```
1080
1082
 
1081
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/project/info.ts)_
1083
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/project/info.ts)_
1082
1084
 
1083
1085
  ## `eas project:init`
1084
1086
 
@@ -1100,7 +1102,7 @@ ALIASES
1100
1102
  $ eas init
1101
1103
  ```
1102
1104
 
1103
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/project/init.ts)_
1105
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/project/init.ts)_
1104
1106
 
1105
1107
  ## `eas secret:create`
1106
1108
 
@@ -1123,7 +1125,7 @@ DESCRIPTION
1123
1125
  create an environment secret on the current project or owner account
1124
1126
  ```
1125
1127
 
1126
- _See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/secret/create.ts)_
1128
+ _See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/secret/create.ts)_
1127
1129
 
1128
1130
  ## `eas secret:delete`
1129
1131
 
@@ -1141,7 +1143,7 @@ DESCRIPTION
1141
1143
  delete an environment secret by ID
1142
1144
  ```
1143
1145
 
1144
- _See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/secret/delete.ts)_
1146
+ _See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/secret/delete.ts)_
1145
1147
 
1146
1148
  ## `eas secret:list`
1147
1149
 
@@ -1155,7 +1157,7 @@ DESCRIPTION
1155
1157
  list environment secrets available for your current app
1156
1158
  ```
1157
1159
 
1158
- _See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/secret/list.ts)_
1160
+ _See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/secret/list.ts)_
1159
1161
 
1160
1162
  ## `eas secret:push`
1161
1163
 
@@ -1175,7 +1177,7 @@ DESCRIPTION
1175
1177
  read environment secrets from env file and store on the server
1176
1178
  ```
1177
1179
 
1178
- _See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/secret/push.ts)_
1180
+ _See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/secret/push.ts)_
1179
1181
 
1180
1182
  ## `eas submit`
1181
1183
 
@@ -1206,7 +1208,7 @@ ALIASES
1206
1208
  $ eas build:submit
1207
1209
  ```
1208
1210
 
1209
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/submit.ts)_
1211
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/submit.ts)_
1210
1212
 
1211
1213
  ## `eas update`
1212
1214
 
@@ -1239,7 +1241,7 @@ DESCRIPTION
1239
1241
  publish an update group
1240
1242
  ```
1241
1243
 
1242
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/index.ts)_
1244
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/index.ts)_
1243
1245
 
1244
1246
  ## `eas update:configure`
1245
1247
 
@@ -1257,7 +1259,7 @@ DESCRIPTION
1257
1259
  configure the project to support EAS Update
1258
1260
  ```
1259
1261
 
1260
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/configure.ts)_
1262
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/configure.ts)_
1261
1263
 
1262
1264
  ## `eas update:delete GROUPID`
1263
1265
 
@@ -1278,7 +1280,7 @@ DESCRIPTION
1278
1280
  delete all the updates in an update group
1279
1281
  ```
1280
1282
 
1281
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/delete.ts)_
1283
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/delete.ts)_
1282
1284
 
1283
1285
  ## `eas update:list`
1284
1286
 
@@ -1300,7 +1302,7 @@ DESCRIPTION
1300
1302
  view the recent updates
1301
1303
  ```
1302
1304
 
1303
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/list.ts)_
1305
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/list.ts)_
1304
1306
 
1305
1307
  ## `eas update:republish`
1306
1308
 
@@ -1327,7 +1329,7 @@ DESCRIPTION
1327
1329
  roll back to an existing update
1328
1330
  ```
1329
1331
 
1330
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/republish.ts)_
1332
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/republish.ts)_
1331
1333
 
1332
1334
  ## `eas update:roll-back-to-embedded`
1333
1335
 
@@ -1354,7 +1356,7 @@ DESCRIPTION
1354
1356
  roll back to the embedded update
1355
1357
  ```
1356
1358
 
1357
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1359
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1358
1360
 
1359
1361
  ## `eas update:rollback`
1360
1362
 
@@ -1373,7 +1375,7 @@ DESCRIPTION
1373
1375
  roll back to an embedded update or an existing update
1374
1376
  ```
1375
1377
 
1376
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/rollback.ts)_
1378
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/rollback.ts)_
1377
1379
 
1378
1380
  ## `eas update:view GROUPID`
1379
1381
 
@@ -1393,7 +1395,7 @@ DESCRIPTION
1393
1395
  update group details
1394
1396
  ```
1395
1397
 
1396
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/update/view.ts)_
1398
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/update/view.ts)_
1397
1399
 
1398
1400
  ## `eas webhook:create`
1399
1401
 
@@ -1414,7 +1416,7 @@ DESCRIPTION
1414
1416
  create a webhook
1415
1417
  ```
1416
1418
 
1417
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/webhook/create.ts)_
1419
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/webhook/create.ts)_
1418
1420
 
1419
1421
  ## `eas webhook:delete [ID]`
1420
1422
 
@@ -1434,7 +1436,7 @@ DESCRIPTION
1434
1436
  delete a webhook
1435
1437
  ```
1436
1438
 
1437
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1439
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/webhook/delete.ts)_
1438
1440
 
1439
1441
  ## `eas webhook:list`
1440
1442
 
@@ -1452,7 +1454,7 @@ DESCRIPTION
1452
1454
  list webhooks
1453
1455
  ```
1454
1456
 
1455
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/webhook/list.ts)_
1457
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/webhook/list.ts)_
1456
1458
 
1457
1459
  ## `eas webhook:update`
1458
1460
 
@@ -1474,7 +1476,7 @@ DESCRIPTION
1474
1476
  update a webhook
1475
1477
  ```
1476
1478
 
1477
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/webhook/update.ts)_
1479
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/webhook/update.ts)_
1478
1480
 
1479
1481
  ## `eas webhook:view ID`
1480
1482
 
@@ -1491,7 +1493,7 @@ DESCRIPTION
1491
1493
  view a webhook
1492
1494
  ```
1493
1495
 
1494
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v8.0.0/packages/eas-cli/src/commands/webhook/view.ts)_
1496
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v9.0.1/packages/eas-cli/src/commands/webhook/view.ts)_
1495
1497
 
1496
1498
  ## `eas whoami`
1497
1499
 
@@ -70,6 +70,7 @@ async function prepareAndroidBuildAsync(ctx) {
70
70
  ? false
71
71
  : ctx.buildProfile.autoIncrement,
72
72
  vcsClient: ctx.vcsClient,
73
+ env: ctx.buildProfile.env,
73
74
  });
74
75
  },
75
76
  prepareJobAsync: async (ctx, jobData) => {
@@ -11,7 +11,6 @@ function transformJob(job) {
11
11
  triggeredBy: (0, graphql_1.transformBuildTrigger)(job.triggeredBy),
12
12
  projectArchive: (0, graphql_1.transformProjectArchive)(job.projectArchive),
13
13
  projectRootDirectory: job.projectRootDirectory,
14
- releaseChannel: job.releaseChannel,
15
14
  updates: job.updates,
16
15
  secrets: job.secrets,
17
16
  builderEnvironment: job.builderEnvironment,
@@ -48,7 +48,6 @@ async function prepareJobAsync(ctx, jobData) {
48
48
  bun: buildProfile.bun,
49
49
  yarn: buildProfile.yarn,
50
50
  ndk: buildProfile.ndk,
51
- expoCli: buildProfile.expoCli,
52
51
  env: buildProfile.env,
53
52
  },
54
53
  cache: {
@@ -59,7 +58,6 @@ async function prepareJobAsync(ctx, jobData) {
59
58
  secrets: {
60
59
  ...buildCredentials,
61
60
  },
62
- releaseChannel: buildProfile.releaseChannel,
63
61
  updates: { channel: buildProfile.channel },
64
62
  developmentClient: buildProfile.developmentClient,
65
63
  gradleCommand: buildProfile.gradleCommand,
@@ -1,10 +1,12 @@
1
1
  import { ExpoConfig } from '@expo/config';
2
+ import { Env } from '@expo/eas-build-job';
2
3
  import { AndroidVersionAutoIncrement } from '@expo/eas-json';
3
4
  import { Client } from '../../vcs/vcs';
4
- export declare function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, }: {
5
+ export declare function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, env, }: {
5
6
  projectDir: string;
6
7
  exp: ExpoConfig;
7
8
  localAutoIncrement?: AndroidVersionAutoIncrement;
8
9
  vcsClient: Client;
10
+ env: Env | undefined;
9
11
  }): Promise<void>;
10
12
  export declare function cleanUpOldEasBuildGradleScriptAsync(projectDir: string): Promise<void>;
@@ -12,13 +12,13 @@ const log_1 = tslib_1.__importDefault(require("../../log"));
12
12
  const projectUtils_1 = require("../../project/projectUtils");
13
13
  const workflow_1 = require("../../project/workflow");
14
14
  const UpdatesModule_1 = require("../../update/android/UpdatesModule");
15
- async function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, }) {
15
+ async function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, env, }) {
16
16
  const workflow = await (0, workflow_1.resolveWorkflowAsync)(projectDir, eas_build_job_1.Platform.ANDROID, vcsClient);
17
17
  const versionBumpStrategy = resolveVersionBumpStrategy(localAutoIncrement !== null && localAutoIncrement !== void 0 ? localAutoIncrement : false);
18
18
  if (workflow === eas_build_job_1.Workflow.GENERIC) {
19
19
  await cleanUpOldEasBuildGradleScriptAsync(projectDir);
20
20
  if ((0, projectUtils_1.isExpoUpdatesInstalled)(projectDir)) {
21
- await (0, UpdatesModule_1.syncUpdatesConfigurationAsync)(projectDir, exp, workflow);
21
+ await (0, UpdatesModule_1.syncUpdatesConfigurationAsync)({ projectDir, exp, workflow, env });
22
22
  }
23
23
  await (0, version_1.bumpVersionAsync)({ projectDir, exp, bumpStrategy: versionBumpStrategy });
24
24
  }
@@ -9,7 +9,7 @@ import { ExpoGraphqlClient } from '../commandUtils/context/contextUtils/createGr
9
9
  import { CustomBuildConfigMetadata } from '../project/customBuildConfig';
10
10
  import { Actor } from '../user/User';
11
11
  import { Client } from '../vcs/vcs';
12
- export declare function createBuildContextAsync<T extends Platform>({ buildProfileName, buildProfile, easJsonCliConfig, clearCache, localBuildOptions, nonInteractive, noWait, platform, projectDir, resourceClassFlag, message, actor, graphqlClient, analytics, vcsClient, getDynamicPrivateProjectConfigAsync, customBuildConfigMetadata, buildLoggerLevel, }: {
12
+ export declare function createBuildContextAsync<T extends Platform>({ buildProfileName, buildProfile, easJsonCliConfig, clearCache, localBuildOptions, nonInteractive, noWait, platform, projectDir, resourceClassFlag, message, actor, graphqlClient, analytics, vcsClient, getDynamicPrivateProjectConfigAsync, customBuildConfigMetadata, buildLoggerLevel, freezeCredentials, }: {
13
13
  buildProfileName: string;
14
14
  buildProfile: BuildProfile<T>;
15
15
  easJsonCliConfig: EasJson['cli'];
@@ -28,4 +28,5 @@ export declare function createBuildContextAsync<T extends Platform>({ buildProfi
28
28
  getDynamicPrivateProjectConfigAsync: DynamicConfigContextFn;
29
29
  customBuildConfigMetadata?: CustomBuildConfigMetadata;
30
30
  buildLoggerLevel?: LoggerLevel;
31
+ freezeCredentials: boolean;
31
32
  }): Promise<BuildContext<T>>;
@@ -15,7 +15,7 @@ const AnalyticsManager_1 = require("../analytics/AnalyticsManager");
15
15
  const context_1 = require("../credentials/context");
16
16
  const projectUtils_1 = require("../project/projectUtils");
17
17
  const workflow_1 = require("../project/workflow");
18
- async function createBuildContextAsync({ buildProfileName, buildProfile, easJsonCliConfig, clearCache = false, localBuildOptions, nonInteractive, noWait, platform, projectDir, resourceClassFlag, message, actor, graphqlClient, analytics, vcsClient, getDynamicPrivateProjectConfigAsync, customBuildConfigMetadata, buildLoggerLevel, }) {
18
+ async function createBuildContextAsync({ buildProfileName, buildProfile, easJsonCliConfig, clearCache = false, localBuildOptions, nonInteractive, noWait, platform, projectDir, resourceClassFlag, message, actor, graphqlClient, analytics, vcsClient, getDynamicPrivateProjectConfigAsync, customBuildConfigMetadata, buildLoggerLevel, freezeCredentials, }) {
19
19
  var _a, _b;
20
20
  const { exp, projectId } = await getDynamicPrivateProjectConfigAsync({ env: buildProfile.env });
21
21
  const projectName = exp.slug;
@@ -37,6 +37,7 @@ async function createBuildContextAsync({ buildProfileName, buildProfile, easJson
37
37
  env: buildProfile.env,
38
38
  easJsonCliConfig,
39
39
  vcsClient,
40
+ freezeCredentials,
40
41
  });
41
42
  const devClientProperties = getDevClientEventProperties({
42
43
  platform,
@@ -73,6 +73,7 @@ async function prepareIosBuildAsync(ctx) {
73
73
  ? false
74
74
  : ctx.buildProfile.autoIncrement,
75
75
  vcsClient: ctx.vcsClient,
76
+ env: ctx.buildProfile.env,
76
77
  });
77
78
  },
78
79
  prepareJobAsync: async (ctx, jobData) => {