expo-dev-menu 56.0.20 → 56.0.22
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/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 56.0.22 — 2026-08-17
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] Remove the manual packager socket reconnect now that the bundle configuration resolves the dev server host. ([#48098](https://github.com/expo/expo/pull/48098) by [@alanjhughes](https://github.com/alanjhughes))
|
|
18
|
+
|
|
19
|
+
## 56.0.21 — 2026-07-23
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 56.0.20 — 2026-07-15
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -12,7 +12,7 @@ apply plugin: 'expo-module-gradle-plugin'
|
|
|
12
12
|
apply plugin: 'org.jetbrains.kotlin.plugin.compose'
|
|
13
13
|
|
|
14
14
|
group = 'host.exp.exponent'
|
|
15
|
-
version = '56.0.
|
|
15
|
+
version = '56.0.22'
|
|
16
16
|
|
|
17
17
|
def hasDevLauncher = findProject(":expo-dev-launcher") != null
|
|
18
18
|
def configureInRelease = findProperty("expo.devmenu.configureInRelease") == "true"
|
|
@@ -29,7 +29,7 @@ android {
|
|
|
29
29
|
|
|
30
30
|
defaultConfig {
|
|
31
31
|
versionCode 10
|
|
32
|
-
versionName '56.0.
|
|
32
|
+
versionName '56.0.22'
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
buildTypes {
|
|
@@ -39,14 +39,6 @@ class DevMenuPackagerConnectionHandler {
|
|
|
39
39
|
queue: DispatchQueue.main,
|
|
40
40
|
forMethod: "devMenu"
|
|
41
41
|
)
|
|
42
|
-
|
|
43
|
-
// RCTDevSettings starts the packager WS before its bundleManager has a host,
|
|
44
|
-
// leaving the socket on localhost so it can't be reached from a physical device.
|
|
45
|
-
// Reconnect to the bundle URL once AppContext is ready.
|
|
46
|
-
if let bundleURL = manager.currentAppContext?.bundleURL, let host = bundleURL.host {
|
|
47
|
-
let port = bundleURL.port ?? 8081
|
|
48
|
-
packagerConnection?.reconnect("\(host):\(port)")
|
|
49
|
-
}
|
|
50
42
|
}
|
|
51
43
|
#endif
|
|
52
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-menu",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.22",
|
|
4
4
|
"description": "Expo/React Native module with the developer menu.",
|
|
5
5
|
"main": "build/DevMenu.js",
|
|
6
6
|
"types": "build/DevMenu.d.ts",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"@types/node": "^22.14.0",
|
|
33
33
|
"react": "19.2.3",
|
|
34
34
|
"react-native": "0.85.3",
|
|
35
|
-
"
|
|
36
|
-
"expo": "56.0.
|
|
37
|
-
"
|
|
35
|
+
"babel-preset-expo": "56.0.19",
|
|
36
|
+
"expo": "56.0.20",
|
|
37
|
+
"expo-module-scripts": "56.0.3"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"expo": "*",
|
|
41
41
|
"react-native": "*"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "39f9dc47fb5ddd099a2533dd0ff24be7126a1ed0",
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "expo-module build",
|
|
46
46
|
"clean": "expo-module clean",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/
|
|
1
|
+
{"root":["./src/withdevmenu.ts"],"version":"5.9.2"}
|