expo 46.0.0-beta.1 → 46.0.0-beta.4

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.
@@ -33,7 +33,7 @@ def getRNVersion() {
33
33
  ensureDependeciesWereEvaluated(project)
34
34
 
35
35
  group = 'host.exp.exponent'
36
- version = '46.0.0-beta.1'
36
+ version = '46.0.0-beta.4'
37
37
 
38
38
  buildscript {
39
39
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -104,7 +104,7 @@ android {
104
104
  minSdkVersion safeExtGet("minSdkVersion", 21)
105
105
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
106
106
  versionCode 1
107
- versionName "46.0.0-beta.1"
107
+ versionName "46.0.0-beta.4"
108
108
  consumerProguardFiles("proguard-rules.pro")
109
109
  }
110
110
  lintOptions {
package/bin/cli.js CHANGED
@@ -6,8 +6,8 @@ const { boolish } = require('getenv');
6
6
  run();
7
7
 
8
8
  function run() {
9
- // Use new beta CLI.
10
- if (boolish('EXPO_USE_BETA_CLI', false)) {
9
+ // Use new local CLI by default.
10
+ if (boolish('EXPO_USE_LOCAL_CLI', true)) {
11
11
  return spawn(require.resolve('@expo/cli'), process.argv.slice(2), { stdio: 'inherit' }).on(
12
12
  'exit',
13
13
  (code) => {
@@ -14,10 +14,10 @@
14
14
  "expo-app-loader-provider": "~8.0.0",
15
15
  "expo-app-loading": "~2.1.0",
16
16
  "expo-apple-authentication": "~4.3.0",
17
- "expo-application": "~4.2.0",
18
- "expo-asset": "~8.6.0",
17
+ "expo-application": "~4.2.2",
18
+ "expo-asset": "~8.6.1",
19
19
  "expo-auth-session": "~3.7.1",
20
- "expo-av": "~12.0.1",
20
+ "expo-av": "~12.0.2",
21
21
  "expo-background-fetch": "~10.3.0",
22
22
  "expo-barcode-scanner": "~11.4.0",
23
23
  "expo-battery": "~6.3.0",
@@ -32,7 +32,7 @@
32
32
  "expo-constants": "~13.2.2",
33
33
  "expo-contacts": "~10.3.0",
34
34
  "expo-crypto": "~11.0.0",
35
- "expo-dev-client": "~1.0.0",
35
+ "expo-dev-client": "~1.1.0",
36
36
  "expo-device": "~4.3.0",
37
37
  "expo-document-picker": "~10.3.0",
38
38
  "expo-error-recovery": "~3.2.0",
@@ -59,8 +59,8 @@
59
59
  "expo-location": "~14.3.0",
60
60
  "expo-mail-composer": "~11.3.0",
61
61
  "expo-media-library": "~14.2.0",
62
- "expo-module-template": "~10.7.0",
63
- "expo-modules-core": "~0.11.2",
62
+ "expo-module-template": "~10.7.1",
63
+ "expo-modules-core": "~0.11.3",
64
64
  "expo-navigation-bar": "~1.3.0",
65
65
  "expo-network": "~4.3.0",
66
66
  "expo-notifications": "~0.16.1",
@@ -101,9 +101,10 @@
101
101
  "react-native-svg": "12.3.0",
102
102
  "react-native-view-shot": "3.3.0",
103
103
  "react-native-webview": "11.22.4",
104
- "sentry-expo": "^4.0.0",
104
+ "sentry-expo": "~5.0.0",
105
105
  "unimodules-app-loader": "~3.1.0",
106
106
  "unimodules-image-loader-interface": "~6.1.0",
107
107
  "@shopify/react-native-skia": "0.1.136",
108
- "@shopify/flash-list": "1.1.0"
108
+ "@shopify/flash-list": "1.1.0",
109
+ "@sentry/react-native": "^4.1.3"
109
110
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo",
3
- "version": "46.0.0-beta.1",
3
+ "version": "46.0.0-beta.4",
4
4
  "description": "The Expo SDK",
5
5
  "main": "build/Expo.js",
6
6
  "module": "build/Expo.js",
@@ -55,18 +55,18 @@
55
55
  "homepage": "https://github.com/expo/expo/tree/main/packages/expo",
56
56
  "dependencies": {
57
57
  "@babel/runtime": "^7.14.0",
58
- "@expo/cli": "0.2.1",
58
+ "@expo/cli": "0.2.4",
59
59
  "@expo/vector-icons": "^13.0.0",
60
60
  "babel-preset-expo": "~9.2.0",
61
61
  "cross-spawn": "^6.0.5",
62
- "expo-application": "~4.2.0",
63
- "expo-asset": "~8.6.0",
62
+ "expo-application": "~4.2.2",
63
+ "expo-asset": "~8.6.1",
64
64
  "expo-constants": "~13.2.2",
65
65
  "expo-file-system": "~14.1.0",
66
66
  "expo-font": "~10.2.0",
67
67
  "expo-keep-awake": "~10.2.0",
68
68
  "expo-modules-autolinking": "0.10.0",
69
- "expo-modules-core": "0.11.2",
69
+ "expo-modules-core": "0.11.3",
70
70
  "fbemitter": "^3.0.0",
71
71
  "getenv": "^1.0.0",
72
72
  "invariant": "^2.2.4",
@@ -90,5 +90,5 @@
90
90
  "react-dom": "18.0.0",
91
91
  "react-native": "0.69.1"
92
92
  },
93
- "gitHead": "c6678c65b68e45062d49a2deea8e822f69388278"
93
+ "gitHead": "8d6b72b043f906cc3ca798d1aebdd2c6eec2153a"
94
94
  }