expo-dev-menu 5.0.7 → 5.0.8

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,11 +10,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 5.0.8 — 2024-04-29
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 5.0.7 — 2024-04-25
14
18
 
15
19
  ### 🐛 Bug fixes
16
20
 
17
21
  - Use DevMenuRCTBridge in DevClientRootViewFactory. ([#28460](https://github.com/expo/expo/pull/28460) by [@gabrieldonadel](https://github.com/gabrieldonadel))
22
+ - Add missing header that causes an error when using `JSC`. ([#28492](https://github.com/expo/expo/pull/28492) by [@alanjhughes](https://github.com/alanjhughes))
18
23
 
19
24
  ## 5.0.6 — 2024-04-25
20
25
 
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '5.0.7'
4
+ version = '5.0.8'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -20,7 +20,7 @@ android {
20
20
  namespace "expo.modules.devmenu"
21
21
  defaultConfig {
22
22
  versionCode 10
23
- versionName '5.0.7'
23
+ versionName '5.0.8'
24
24
  }
25
25
 
26
26
  buildTypes {
@@ -16,6 +16,7 @@
16
16
  #import <React/RCTCxxBridgeDelegate.h>
17
17
  #import <react/renderer/runtimescheduler/RuntimeScheduler.h>
18
18
  #import <react/renderer/runtimescheduler/RuntimeSchedulerCallInvoker.h>
19
+ #import <jsireact/JSIExecutor.h>
19
20
 
20
21
  @interface RCTRootViewFactory () <RCTCxxBridgeDelegate> {
21
22
  std::shared_ptr<facebook::react::RuntimeScheduler> _runtimeScheduler;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "5.0.7",
3
+ "version": "5.0.8",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -57,7 +57,7 @@
57
57
  "@testing-library/react-native": "^8.0.0",
58
58
  "babel-plugin-module-resolver": "^5.0.0",
59
59
  "babel-preset-expo": "~11.0.0",
60
- "expo-dev-client-components": "1.8.0",
60
+ "expo-dev-client-components": "1.8.1",
61
61
  "expo-module-scripts": "^3.0.0",
62
62
  "fuse.js": "^6.4.6",
63
63
  "graphql": "^15.3.0",
@@ -70,5 +70,5 @@
70
70
  "peerDependencies": {
71
71
  "expo": "*"
72
72
  },
73
- "gitHead": "f721b77765bcdae1d60f4bd0ccda903c834226b7"
73
+ "gitHead": "4a7cf0d0baf6dfc595d93f604945d2142e705a36"
74
74
  }