eas-cli 0.49.0 → 0.52.0

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 (60) hide show
  1. package/README.md +44 -43
  2. package/build/build/build.d.ts +6 -2
  3. package/build/build/build.js +191 -104
  4. package/build/build/ios/build.js +3 -1
  5. package/build/build/ios/credentials.js +2 -6
  6. package/build/build/local.js +1 -1
  7. package/build/build/runBuildAndSubmit.js +5 -1
  8. package/build/commands/update/index.d.ts +1 -0
  9. package/build/commands/update/index.js +27 -3
  10. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +24 -9
  11. package/build/credentials/context.js +5 -0
  12. package/build/credentials/ios/IosCredentialsProvider.d.ts +0 -2
  13. package/build/credentials/ios/IosCredentialsProvider.js +0 -1
  14. package/build/credentials/ios/actions/AscApiKeyUtils.js +0 -1
  15. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +1 -1
  16. package/build/credentials/ios/actions/CreateProvisioningProfile.js +1 -1
  17. package/build/credentials/ios/actions/SetUpBuildCredentials.d.ts +0 -2
  18. package/build/credentials/ios/actions/SetUpBuildCredentials.js +3 -1
  19. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +2 -2
  20. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +2 -2
  21. package/build/credentials/ios/appstore/AppStoreApi.d.ts +5 -1
  22. package/build/credentials/ios/appstore/AppStoreApi.js +38 -15
  23. package/build/credentials/ios/appstore/ascApiKey.d.ts +21 -5
  24. package/build/credentials/ios/appstore/ascApiKey.js +28 -12
  25. package/build/credentials/ios/appstore/authenticate.d.ts +9 -18
  26. package/build/credentials/ios/appstore/authenticate.js +43 -3
  27. package/build/credentials/ios/appstore/authenticateTypes.d.ts +42 -0
  28. package/build/credentials/ios/appstore/authenticateTypes.js +16 -0
  29. package/build/credentials/ios/appstore/contractMessages.d.ts +3 -0
  30. package/build/credentials/ios/appstore/contractMessages.js +12 -0
  31. package/build/credentials/ios/appstore/distributionCertificate.d.ts +1 -1
  32. package/build/credentials/ios/appstore/ensureAppExists.d.ts +2 -2
  33. package/build/credentials/ios/appstore/ensureAppExists.js +12 -5
  34. package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
  35. package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +1 -1
  36. package/build/credentials/ios/appstore/pushKey.d.ts +4 -4
  37. package/build/credentials/ios/appstore/pushKey.js +8 -8
  38. package/build/credentials/ios/appstore/resolveCredentials.d.ts +10 -1
  39. package/build/credentials/ios/appstore/resolveCredentials.js +125 -3
  40. package/build/credentials/ios/types.d.ts +2 -0
  41. package/build/credentials/ios/utils/printCredentials.d.ts +1 -1
  42. package/build/credentials/manager/ManageIos.js +8 -7
  43. package/build/graphql/generated.d.ts +73 -0
  44. package/build/graphql/generated.js +16 -1
  45. package/build/graphql/types/Build.js +4 -0
  46. package/build/project/ios/entitlements.d.ts +8 -0
  47. package/build/{credentials/ios/appstore → project/ios}/entitlements.js +7 -19
  48. package/build/project/ios/target.d.ts +9 -3
  49. package/build/project/ios/target.js +68 -47
  50. package/build/project/publish.js +2 -1
  51. package/build/submit/android/ServiceAccountSource.js +1 -1
  52. package/build/submit/ios/AppProduce.d.ts +0 -1
  53. package/build/submit/ios/AppProduce.js +5 -6
  54. package/build/submit/ios/AppSpecificPasswordSource.js +2 -2
  55. package/build/submit/utils/errors.js +6 -2
  56. package/build/utils/code-signing.d.ts +0 -5
  57. package/build/utils/code-signing.js +16 -65
  58. package/oclif.manifest.json +1 -1
  59. package/package.json +11 -11
  60. package/build/credentials/ios/appstore/entitlements.d.ts +0 -4
package/package.json CHANGED
@@ -1,25 +1,26 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "0.49.0",
4
+ "version": "0.52.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
8
8
  },
9
9
  "bugs": "https://github.com/expo/eas-cli/issues",
10
10
  "dependencies": {
11
- "@expo/apple-utils": "0.0.0-alpha.30",
11
+ "@expo/apple-utils": "0.0.0-alpha.31",
12
12
  "@expo/code-signing-certificates": "0.0.2",
13
- "@expo/config": "6.0.19",
14
- "@expo/config-plugins": "4.1.0",
13
+ "@expo/config": "6.0.21",
14
+ "@expo/config-plugins": "4.1.2",
15
15
  "@expo/config-types": "44.0.0",
16
- "@expo/eas-build-job": "0.2.68",
17
- "@expo/eas-json": "0.49.0",
16
+ "@expo/eas-build-job": "0.2.71",
17
+ "@expo/eas-json": "0.52.0",
18
18
  "@expo/json-file": "8.2.34",
19
+ "@expo/multipart-body-parser": "1.1.0",
19
20
  "@expo/pkcs12": "0.0.7",
20
21
  "@expo/plist": "0.0.17",
21
22
  "@expo/plugin-warn-if-update-available": "2.1.0",
22
- "@expo/prebuild-config": "3.1.0",
23
+ "@expo/prebuild-config": "3.1.2",
23
24
  "@expo/results": "1.0.0",
24
25
  "@expo/rudder-sdk-node": "1.1.1",
25
26
  "@expo/spawn-async": "1.6.0",
@@ -30,9 +31,9 @@
30
31
  "@urql/core": "2.4.3",
31
32
  "@urql/exchange-retry": "0.3.2",
32
33
  "chalk": "4.1.2",
34
+ "cli-progress": "3.10.0",
33
35
  "cli-table3": "0.6.1",
34
36
  "dateformat": "4.6.3",
35
- "dicer": "0.3.1",
36
37
  "env-paths": "2.2.0",
37
38
  "envinfo": "7.8.1",
38
39
  "fast-deep-equal": "3.1.3",
@@ -65,7 +66,6 @@
65
66
  "semver": "7.3.5",
66
67
  "slash": "3.0.0",
67
68
  "strip-ansi": "6.0.0",
68
- "structured-headers": "0.4.1",
69
69
  "tar": "6.1.11",
70
70
  "terminal-link": "2.1.1",
71
71
  "tslib": "2.3.1",
@@ -79,8 +79,8 @@
79
79
  "@graphql-codegen/introspection": "2.1.1",
80
80
  "@graphql-codegen/typescript": "2.4.8",
81
81
  "@graphql-codegen/typescript-operations": "2.3.5",
82
+ "@types/cli-progress": "3.9.2",
82
83
  "@types/dateformat": "3.0.1",
83
- "@types/dicer": "0.2.2",
84
84
  "@types/envinfo": "7.8.1",
85
85
  "@types/fs-extra": "9.0.13",
86
86
  "@types/getenv": "^1.0.0",
@@ -195,5 +195,5 @@
195
195
  "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
196
196
  "clean": "rm -rf dist build tmp node_modules yarn-error.log"
197
197
  },
198
- "gitHead": "1b02a67d886f7676eddd9ac1d0688230c76c7b16"
198
+ "gitHead": "bbc8b1ac762e655d492660cd246e9b263d022241"
199
199
  }
@@ -1,4 +0,0 @@
1
- import { Workflow } from '@expo/eas-build-job';
2
- import { JSONObject } from '@expo/json-file';
3
- export declare function getManagedEntitlementsJsonAsync(projectDir: string, env: Record<string, string>): Promise<JSONObject>;
4
- export declare function resolveEntitlementsJsonAsync(projectDir: string, workflow: Workflow, env: Record<string, string>): Promise<JSONObject>;