expo-dev-launcher 4.0.11 → 4.0.12

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
+ ## 4.0.12 — 2024-05-08
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fixed DevMenu getting unresponsive after reloading bundle. ([#28664](https://github.com/expo/expo/pull/28664) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+
13
19
  ## 4.0.11 — 2024-05-04
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -17,7 +17,7 @@ android {
17
17
  namespace "expo.modules.devlauncher"
18
18
  defaultConfig {
19
19
  versionCode 9
20
- versionName "4.0.11"
20
+ versionName "4.0.12"
21
21
  }
22
22
 
23
23
  buildTypes {
@@ -672,6 +672,8 @@
672
672
  // expo-dev-menu registers its commands here: https://github.com/expo/expo/blob/6da15324ff0b4a9cb24055e9815b8aa11f0ac3af/packages/expo-dev-menu/ios/Interceptors/DevMenuKeyCommandsInterceptor.swift#L27-L29
673
673
  [[RCTKeyCommands sharedInstance] unregisterKeyCommandWithInput:@"d"
674
674
  modifierFlags:UIKeyModifierCommand];
675
+ [[RCTKeyCommands sharedInstance] unregisterKeyCommandWithInput:@"r"
676
+ modifierFlags:UIKeyModifierCommand];
675
677
  }
676
678
  }
677
679
 
@@ -722,7 +724,7 @@
722
724
  - (void)setDevMenuAppBridge
723
725
  {
724
726
  DevMenuManager *manager = [DevMenuManager shared];
725
- manager.currentBridge = self.appBridge;
727
+ manager.currentBridge = self.appBridge.parentBridge;
726
728
 
727
729
  if (self.manifest != nil) {
728
730
  manager.currentManifest = self.manifest;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "4.0.11",
4
+ "version": "4.0.12",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "main": "build/DevLauncher.js",
7
7
  "types": "build/DevLauncher.d.ts",
@@ -31,7 +31,7 @@
31
31
  "homepage": "https://docs.expo.dev",
32
32
  "dependencies": {
33
33
  "ajv": "8.11.0",
34
- "expo-dev-menu": "5.0.12",
34
+ "expo-dev-menu": "5.0.13",
35
35
  "expo-manifests": "~0.14.0",
36
36
  "resolve-from": "^5.0.0",
37
37
  "semver": "^7.6.0"
@@ -66,5 +66,5 @@
66
66
  "./setupTests.ts"
67
67
  ]
68
68
  },
69
- "gitHead": "2d80ee3cc6b1703101e8fa2639474efa7dc75097"
69
+ "gitHead": "2d46c18795300bad8ac2ad9491c3c0541a1c67e9"
70
70
  }