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 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._
@@ -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.23'
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.23'
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 by lazy { OkHttpClient() }
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()
@@ -75,7 +75,3 @@ struct DevMenuToggleButton: View {
75
75
  .opacity(disabled ? 0.6 : 1.0)
76
76
  }
77
77
  }
78
-
79
- #Preview {
80
- DevMenuActionButton(title: "Action", icon: "person.fast") {}
81
- }
@@ -91,8 +91,4 @@ struct DevMenuDeveloperTools: View {
91
91
  }
92
92
  }
93
93
 
94
- #Preview {
95
- DevMenuDeveloperTools()
96
- }
97
-
98
94
  // swiftlint:enable closure_body_length
@@ -16,7 +16,3 @@ struct DevMenuRNDevMenu: View {
16
16
  .cornerRadius(18)
17
17
  }
18
18
  }
19
-
20
- #Preview {
21
- DevMenuRNDevMenu {}
22
- }
@@ -45,7 +45,3 @@ struct DevMenuRootView: View {
45
45
  #endif
46
46
  }
47
47
  }
48
-
49
- #Preview {
50
- DevMenuRootView()
51
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "55.0.23",
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.17",
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.4"
45
+ "react-native": "0.83.6"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "expo": "*"
49
49
  },
50
- "gitHead": "9501516951885373128fc20687b17775c8275453"
50
+ "gitHead": "e37e614d97c3ca53f16b91609a787675d044c284"
51
51
  }