expo-dev-launcher 1.2.0 → 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.
Files changed (29) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/android/build.gradle +1 -1
  3. package/android/src/debug/assets/expo_dev_launcher_android.bundle +22 -21
  4. package/android/src/main/AndroidManifest.xml +0 -1
  5. package/android/src/main/java/expo/modules/devlauncher/helpers/DevLauncherReactUtils.kt +3 -1
  6. package/android/src/main/java/expo/modules/devlauncher/launcher/errors/DevLauncherUncaughtExceptionHandler.kt +6 -9
  7. package/android/src/main/java/expo/modules/devlauncher/logs/DevLauncherRemoteLog.kt +13 -37
  8. package/android/src/main/java/expo/modules/devlauncher/logs/DevLauncherRemoteLogManager.kt +27 -31
  9. package/android/src/react-native-64/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
  10. package/android/src/react-native-65/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
  11. package/android/src/react-native-66/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
  12. package/android/src/react-native-67/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
  13. package/android/src/react-native-69/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
  14. package/bundle/components/AppHeader.tsx +7 -1
  15. package/bundle/components/ScreenContainer.tsx +8 -0
  16. package/bundle/native-modules/DevLauncherAuth.ts +21 -10
  17. package/bundle/screens/BranchesScreen.tsx +18 -15
  18. package/bundle/screens/ExtensionsScreen.tsx +37 -38
  19. package/bundle/screens/ExtensionsStack.tsx +1 -0
  20. package/bundle/screens/HomeScreen.tsx +9 -2
  21. package/bundle/screens/SettingsScreen.tsx +113 -110
  22. package/bundle/screens/UpdatesScreen.tsx +44 -39
  23. package/ios/EXDevLauncherController.m +3 -0
  24. package/ios/EXDevLauncherURLHelper.swift +30 -19
  25. package/ios/Errors/EXDevLauncherUncaughtExceptionHandler.swift +14 -10
  26. package/ios/Logs/EXDevLauncherRemoteLogsManager.swift +39 -34
  27. package/ios/ReactDelegateHandler/ExpoDevLauncherReactDelegateHandler.swift +13 -1
  28. package/ios/main.jsbundle +22 -21
  29. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -10,6 +10,29 @@
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
+
30
+ ## 1.2.1 — 2022-08-16
31
+
32
+ ### 🐛 Bug fixes
33
+
34
+ - Fix deferred deep link handling on iOS. ([#18614](https://github.com/expo/expo/pull/18614)) by [@ajsmth](https://github.com/ajsmth)
35
+
13
36
  ## 1.2.0 — 2022-08-11
14
37
 
15
38
  ### 🎉 New features
@@ -40,7 +40,7 @@ android {
40
40
  minSdkVersion safeExtGet('minSdkVersion', 21)
41
41
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
42
42
  versionCode 9
43
- versionName "1.2.0"
43
+ versionName "1.3.0"
44
44
  }
45
45
 
46
46
  lintOptions {