eas-cli 3.13.3 → 3.14.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 (53) hide show
  1. package/README.md +55 -55
  2. package/build/api.d.ts +1 -0
  3. package/build/api.js +14 -1
  4. package/build/build/configure.d.ts +1 -0
  5. package/build/build/configure.js +8 -4
  6. package/build/build/local.js +1 -1
  7. package/build/build/runBuildAndSubmit.js +29 -0
  8. package/build/commandUtils/EasCommand.js +3 -1
  9. package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -3
  10. package/build/commands/account/login.d.ts +3 -0
  11. package/build/commands/account/login.js +12 -1
  12. package/build/commands/build/configure.js +5 -1
  13. package/build/commands/project/init.js +1 -1
  14. package/build/commands/update/configure.js +14 -15
  15. package/build/credentials/android/api/GraphqlClient.d.ts +1 -0
  16. package/build/credentials/android/api/GraphqlClient.js +5 -7
  17. package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.d.ts +1 -0
  18. package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.js +23 -0
  19. package/build/credentials/ios/appstore/bundleIdCapabilities.js +43 -0
  20. package/build/credentials/manager/Actions.d.ts +11 -10
  21. package/build/credentials/manager/Actions.js +11 -10
  22. package/build/credentials/manager/AndroidActions.js +5 -0
  23. package/build/credentials/manager/CreateAndroidBuildCredentials.d.ts +8 -0
  24. package/build/credentials/manager/CreateAndroidBuildCredentials.js +33 -0
  25. package/build/credentials/manager/ManageAndroid.js +6 -15
  26. package/build/credentials/manager/SetDefaultAndroidKeystore.d.ts +8 -0
  27. package/build/credentials/manager/SetDefaultAndroidKeystore.js +41 -0
  28. package/build/graphql/generated.d.ts +76 -12
  29. package/build/graphql/generated.js +13 -2
  30. package/build/graphql/queries/UserQuery.js +2 -5
  31. package/build/project/expoConfig.d.ts +5 -1
  32. package/build/project/expoConfig.js +58 -1
  33. package/build/project/projectUtils.d.ts +2 -0
  34. package/build/project/projectUtils.js +14 -3
  35. package/build/update/configure.js +9 -5
  36. package/build/user/SessionManager.d.ts +3 -1
  37. package/build/user/SessionManager.js +16 -2
  38. package/build/user/User.d.ts +1 -1
  39. package/build/user/User.js +1 -1
  40. package/build/user/actions.js +1 -1
  41. package/build/user/expoSsoLauncher.d.ts +4 -0
  42. package/build/user/expoSsoLauncher.js +71 -0
  43. package/build/user/fetchSessionSecretAndSsoUser.d.ts +5 -0
  44. package/build/user/fetchSessionSecretAndSsoUser.js +20 -0
  45. package/build/user/fetchSessionSecretAndUser.js +4 -24
  46. package/build/user/fetchUser.d.ts +6 -0
  47. package/build/user/fetchUser.js +27 -0
  48. package/build/utils/expoCli.js +12 -2
  49. package/build/utils/port.d.ts +2 -0
  50. package/build/utils/port.js +14 -0
  51. package/build/vcs/clients/git.js +1 -1
  52. package/oclif.manifest.json +1 -1
  53. package/package.json +5 -4
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "3.13.3",
4
+ "version": "3.14.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": "1.2.0",
11
+ "@expo/apple-utils": "1.3.1",
12
12
  "@expo/code-signing-certificates": "0.0.5",
13
13
  "@expo/config": "7.0.3",
14
14
  "@expo/config-plugins": "6.0.2",
@@ -27,7 +27,7 @@
27
27
  "@expo/results": "1.0.0",
28
28
  "@expo/rudder-sdk-node": "1.1.1",
29
29
  "@expo/spawn-async": "1.7.0",
30
- "@expo/steps": "1.0.13",
30
+ "@expo/steps": "1.0.23",
31
31
  "@expo/timeago.js": "1.0.0",
32
32
  "@oclif/core": "1.23.2",
33
33
  "@oclif/plugin-autocomplete": "1.3.10",
@@ -47,6 +47,7 @@
47
47
  "fast-glob": "3.2.12",
48
48
  "figures": "3.2.0",
49
49
  "form-data": "4.0.0",
50
+ "freeport-async": "2.0.0",
50
51
  "fs-extra": "10.1.0",
51
52
  "getenv": "1.0.0",
52
53
  "gradle-to-js": "2.0.1",
@@ -218,5 +219,5 @@
218
219
  "node": "18.6.0",
219
220
  "yarn": "1.22.19"
220
221
  },
221
- "gitHead": "2e614cbde90e6b89a43de667753e7c924dbd60e9"
222
+ "gitHead": "37f8e117e1c12802a9e32576ac9d765b87d35c55"
222
223
  }