expo-dev-launcher 1.2.1 → 1.3.0
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 +17 -0
- package/android/build.gradle +1 -1
- package/android/src/debug/assets/expo_dev_launcher_android.bundle +22 -21
- package/android/src/main/AndroidManifest.xml +0 -1
- package/android/src/main/java/expo/modules/devlauncher/helpers/DevLauncherReactUtils.kt +3 -1
- package/android/src/main/java/expo/modules/devlauncher/launcher/errors/DevLauncherUncaughtExceptionHandler.kt +6 -9
- package/android/src/main/java/expo/modules/devlauncher/logs/DevLauncherRemoteLog.kt +13 -37
- package/android/src/main/java/expo/modules/devlauncher/logs/DevLauncherRemoteLogManager.kt +27 -31
- package/android/src/react-native-64/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-65/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-66/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-67/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-69/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/bundle/components/AppHeader.tsx +7 -1
- package/bundle/components/ScreenContainer.tsx +8 -0
- package/bundle/native-modules/DevLauncherAuth.ts +21 -10
- package/bundle/screens/BranchesScreen.tsx +18 -15
- package/bundle/screens/ExtensionsScreen.tsx +37 -38
- package/bundle/screens/ExtensionsStack.tsx +1 -0
- package/bundle/screens/HomeScreen.tsx +9 -2
- package/bundle/screens/SettingsScreen.tsx +113 -110
- package/bundle/screens/UpdatesScreen.tsx +44 -39
- package/ios/EXDevLauncherController.m +3 -0
- package/ios/EXDevLauncherURLHelper.swift +30 -19
- package/ios/Errors/EXDevLauncherUncaughtExceptionHandler.swift +14 -10
- package/ios/Logs/EXDevLauncherRemoteLogsManager.swift +39 -34
- package/ios/main.jsbundle +22 -21
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,23 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 1.3.0 — 2022-09-16
|
|
14
|
+
|
|
15
|
+
### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- Better support for landscape orientation. ([#19010](https://github.com/expo/expo/pull/19010) by [@ajsmth](https://github.com/ajsmth))
|
|
18
|
+
|
|
19
|
+
### 🐛 Bug fixes
|
|
20
|
+
|
|
21
|
+
- Remove the deprecated `Linking.removeEventListener` in expo-dev-launcher bundle. ([#18939](https://github.com/expo/expo/pull/18939) by [@kudo](https://github.com/kudo))
|
|
22
|
+
- Fixed the incompatibility with react-native-v8 on Android. ([#19117](https://github.com/expo/expo/pull/19117) by [@kudo](https://github.com/kudo))
|
|
23
|
+
- Fixed crash when loading bundle without explicit port on Android. ([#19136](https://github.com/expo/expo/pull/19136) by [@kudo](https://github.com/kudo))
|
|
24
|
+
|
|
25
|
+
### 💡 Others
|
|
26
|
+
|
|
27
|
+
- Switched uncaught exception logging to use metro websocket instead of expo-cli logUrl. ([#18787](https://github.com/expo/expo/pull/18787) by [@esamelson](https://github.com/esamelson))
|
|
28
|
+
- Disable onboarding popup with URL query param. ([#19024](https://github.com/expo/expo/pull/19024) by [@douglowder](https://github.com/douglowder))
|
|
29
|
+
|
|
13
30
|
## 1.2.1 — 2022-08-16
|
|
14
31
|
|
|
15
32
|
### 🐛 Bug fixes
|