expo-dev-menu 55.0.23 → 55.0.24
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 +6 -0
- package/android/build.gradle +2 -2
- package/android/src/debug/java/expo/modules/devmenu/websockets/DevMenuMetroClient.kt +2 -2
- package/ios/SwiftUI/DevMenuButtons.swift +0 -4
- package/ios/SwiftUI/DevMenuDeveloperTools.swift +0 -4
- package/ios/SwiftUI/DevMenuRNDevMenu.swift +0 -4
- package/ios/SwiftUI/DevMenuRootView.swift +0 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.24 — 2026-04-21
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] Remove `#Preview` SwiftUI blocks that cause build failures when consuming the package as a dependency. ([#44775](https://github.com/expo/expo/pull/44775) by [@fabriziocucci](https://github.com/fabriziocucci))
|
|
18
|
+
|
|
13
19
|
## 55.0.23 — 2026-04-11
|
|
14
20
|
|
|
15
21
|
_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 = '55.0.
|
|
15
|
+
version = '55.0.24'
|
|
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 '55.0.
|
|
32
|
+
versionName '55.0.24'
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
buildTypes {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
package expo.modules.devmenu.websockets
|
|
2
2
|
|
|
3
3
|
import androidx.core.net.toUri
|
|
4
|
+
import com.facebook.react.modules.network.OkHttpClientProvider
|
|
4
5
|
import expo.modules.devmenu.helpers.await
|
|
5
|
-
import okhttp3.OkHttpClient
|
|
6
6
|
import okhttp3.Request
|
|
7
7
|
import okhttp3.RequestBody.Companion.toRequestBody
|
|
8
8
|
|
|
9
9
|
object DevMenuMetroClient {
|
|
10
|
-
private val httpClient
|
|
10
|
+
private val httpClient = OkHttpClientProvider.getOkHttpClient()
|
|
11
11
|
|
|
12
12
|
suspend fun openJSInspector(metroHost: String, applicationId: String) {
|
|
13
13
|
val url = "$metroHost/_expo/debugger".toUri()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-menu",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.24",
|
|
4
4
|
"description": "Expo/React Native module with the developer menu.",
|
|
5
5
|
"main": "build/DevMenu.js",
|
|
6
6
|
"types": "build/DevMenu.d.ts",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"@babel/preset-typescript": "^7.7.4",
|
|
40
40
|
"@testing-library/react-native": "^13.3.0",
|
|
41
41
|
"babel-plugin-module-resolver": "^5.0.0",
|
|
42
|
-
"babel-preset-expo": "~55.0.
|
|
42
|
+
"babel-preset-expo": "~55.0.18",
|
|
43
43
|
"expo-module-scripts": "^55.0.2",
|
|
44
44
|
"react": "19.2.0",
|
|
45
|
-
"react-native": "0.83.
|
|
45
|
+
"react-native": "0.83.6"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"expo": "*"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "e37e614d97c3ca53f16b91609a787675d044c284"
|
|
51
51
|
}
|