expo-dev-menu 58.0.0 → 58.0.1

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/.npmignore CHANGED
@@ -17,3 +17,8 @@ __rsc_tests__
17
17
  /android/src/androidTest/
18
18
  /android/src/test/
19
19
  /ios/Tests
20
+
21
+ # Exclude native build output (pnpm pack ignores nested .gitignore files)
22
+ .cxx/
23
+ .gradle/
24
+ /android/build/
package/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 58.0.1 — 2026-09-14
14
+
15
+ ### 💡 Others
16
+
17
+ - Upgrade React Native to 0.88.0-rc.0 ([#49910](https://github.com/expo/expo/pull/49910) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+
13
19
  ## 58.0.0 — 2026-09-10
14
20
 
15
21
  ### 🎉 New features
@@ -31,6 +37,7 @@
31
37
  - [iOS] Replace dev-menu swizzling and reflection into React Native internals with public APIs. ([#47638](https://github.com/expo/expo/pull/47638) by [@alanjhughes](https://github.com/alanjhughes))
32
38
  - [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))
33
39
  - Removed Quick and Nimble in favor of Swift Testing. ([#48530](https://github.com/expo/expo/pull/48530) by [@tsapeta](https://github.com/tsapeta))
40
+ - Show QuickJS as the JavaScript engine in the dev menu on Android and iOS. ([#49994](https://github.com/expo/expo/pull/49994) by [@ammarahm-ed](https://github.com/ammarahm-ed))
34
41
 
35
42
  ## 57.0.10 - 2026-07-29
36
43
 
@@ -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 = '58.0.0'
15
+ version = '58.0.1'
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 '58.0.0'
32
+ versionName '58.0.1'
33
33
  }
34
34
 
35
35
  buildTypes {
@@ -59,6 +59,7 @@ object AppInfo {
59
59
  val engine = when {
60
60
  jsExecutorName.contains("Hermes") -> "Hermes"
61
61
  jsExecutorName.contains("V8") -> "V8"
62
+ jsExecutorName.contains("QuickJS") -> "QuickJS"
62
63
  else -> "JSC"
63
64
  }
64
65
 
@@ -38,6 +38,8 @@
38
38
  NSString *engine;
39
39
  #if USE_HERMES
40
40
  engine = @"Hermes";
41
+ #elif USE_QUICKJS
42
+ engine = @"QuickJS";
41
43
  #else
42
44
  engine = @"JSC";
43
45
  #endif
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "58.0.0",
3
+ "version": "58.0.1",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "keywords": [
6
6
  "dev",
@@ -31,16 +31,16 @@
31
31
  "@testing-library/react-native": "^13.3.0",
32
32
  "@types/jest": "^29.2.1",
33
33
  "@types/node": "^22.14.0",
34
- "babel-preset-expo": "58.0.0",
34
+ "babel-preset-expo": "58.0.1",
35
35
  "expo-module-scripts": "56.0.3",
36
36
  "react": "19.2.3",
37
- "react-native": "0.87.1"
37
+ "react-native": "0.88.0-rc.0"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "expo": "*",
41
41
  "react-native": "*"
42
42
  },
43
- "gitHead": "c543a7181fc32e14f42d89550087b80ac5c490f2",
43
+ "gitHead": "40afe3afa42f1dcca3dcba7ffbb3641859bdf2f0",
44
44
  "scripts": {
45
45
  "build": "pnpm run build:lib && pnpm run build:plugin",
46
46
  "build:lib": "expo-build src",