expo-dev-client 2.2.1 → 2.3.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.
package/.detoxrc.js CHANGED
@@ -18,7 +18,7 @@ module.exports = {
18
18
  emulator: {
19
19
  type: 'android.emulator',
20
20
  device: {
21
- avdName: 'avd-31',
21
+ avdName: 'avd-33',
22
22
  },
23
23
  },
24
24
  simulator: {
package/CHANGELOG.md CHANGED
@@ -10,21 +10,11 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
- ## 2.2.1 — 2023-04-14
13
+ ## 2.3.0 — 2023-05-08
14
14
 
15
- _This version does not introduce any user-facing changes._
16
-
17
- ## 2.2.0 — 2023-04-13
18
-
19
- _This version does not introduce any user-facing changes._
20
-
21
- ## 2.1.6 — 2023-03-20
22
-
23
- _This version does not introduce any user-facing changes._
24
-
25
- ## 2.1.5 — 2023-03-03
15
+ ### 💡 Others
26
16
 
27
- _This version does not introduce any user-facing changes._
17
+ - Update e2e tests to use custom entry file system. ([#21643](https://github.com/expo/expo/pull/21643) by [@EvanBacon](https://github.com/EvanBacon))
28
18
 
29
19
  ## 2.1.4 — 2023-02-28
30
20
 
package/README.md CHANGED
@@ -5,7 +5,7 @@ next time you need to upgrade, install a new module, or otherwise change the nat
5
5
 
6
6
  ## Documentation
7
7
 
8
- You can find the documentation under [https://docs.expo.dev/clients/introduction](https://docs.expo.dev/clients/introduction).
8
+ You can find more information in the [Expo documentation](https://docs.expo.dev/home/develop/development-builds/introduction).
9
9
 
10
10
  ## Issues
11
11
 
@@ -38,7 +38,7 @@ android {
38
38
  minSdkVersion safeExtGet('minSdkVersion', 21)
39
39
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
40
40
  versionCode 1
41
- versionName "2.2.1"
41
+ versionName "2.3.0"
42
42
 
43
43
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
44
44
  }
@@ -38,7 +38,7 @@ public class MainApplication extends Application implements ReactApplication {
38
38
 
39
39
  @Override
40
40
  protected String getJSMainModuleName() {
41
- return "index";
41
+ return ".expo/.virtual-metro-entry";
42
42
  }
43
43
  });
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-client",
3
- "version": "2.2.1",
3
+ "version": "2.3.0",
4
4
  "description": "Expo Development Client",
5
5
  "main": "build/DevClient.js",
6
6
  "types": "build/DevClient.d.ts",
@@ -32,15 +32,15 @@
32
32
  "license": "MIT",
33
33
  "homepage": "https://docs.expo.dev/clients/introduction/",
34
34
  "dependencies": {
35
- "expo-dev-launcher": "2.2.1",
36
- "expo-dev-menu": "2.2.0",
37
- "expo-dev-menu-interface": "1.1.1",
38
- "expo-manifests": "~0.5.0",
35
+ "expo-dev-launcher": "2.3.0",
36
+ "expo-dev-menu": "3.0.0",
37
+ "expo-dev-menu-interface": "1.2.0",
38
+ "expo-manifests": "~0.6.0",
39
39
  "expo-updates-interface": "~0.9.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "expo-module-scripts": "^3.0.0",
43
- "expo-test-runner": "0.0.13"
43
+ "expo-test-runner": "0.0.14"
44
44
  },
45
45
  "peerDependencies": {
46
46
  "expo": "*"
@@ -48,5 +48,5 @@
48
48
  "jest": {
49
49
  "preset": "expo-module-scripts"
50
50
  },
51
- "gitHead": "c2844fb61469eb300c4fb1afff78db7d75190201"
51
+ "gitHead": "4ba50c428c8369bb6b3a51a860d4898ad4ccbe78"
52
52
  }