catalyst-core-internal 0.0.1-beta.67 โ†’ 0.0.1-beta.69

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 (150) hide show
  1. package/README.md +2 -0
  2. package/bin/catalyst.js +92 -9
  3. package/changelog.md +107 -29
  4. package/dist/native/androidProject/app/build.gradle.kts +414 -0
  5. package/dist/native/androidProject/app/proguard-rules.pro +67 -0
  6. package/dist/native/androidProject/app/src/debug/res/xml/network_security_config.xml +8 -0
  7. package/dist/native/androidProject/app/src/main/AndroidManifest.xml +54 -0
  8. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/BridgeMessageValidator.kt +560 -0
  9. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/CatalystConstants.kt +106 -0
  10. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/CustomWebview.kt +1013 -0
  11. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/MainActivity.kt +517 -0
  12. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/MetricsMonitor.kt +341 -0
  13. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/NativeBridge.kt +931 -0
  14. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/SplashActivity.kt +111 -0
  15. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/Utils.kt +129 -0
  16. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/WebCacheManager.kt +450 -0
  17. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/BridgeUtils.kt +239 -0
  18. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/CameraUtils.kt +269 -0
  19. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/DeviceInfoUtils.kt +73 -0
  20. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/DownloadUtils.kt +272 -0
  21. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FileSizeRouterUtils.kt +347 -0
  22. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FileUtils.kt +335 -0
  23. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FrameworkServerUtils.kt +411 -0
  24. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/IntentUtils.kt +299 -0
  25. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/KeyboardUtil.kt +82 -0
  26. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NetworkUtils.kt +105 -0
  27. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NotificationConstants.kt +28 -0
  28. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NotificationUtils.kt +639 -0
  29. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/SafeAreaUtils.kt +62 -0
  30. package/dist/native/androidProject/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
  31. package/dist/native/androidProject/app/src/main/res/drawable/ic_launcher_foreground.xml +30 -0
  32. package/dist/native/androidProject/app/src/main/res/drawable/splashscreen_fallback.png +0 -0
  33. package/dist/native/androidProject/app/src/main/res/layout/activity_main.xml +29 -0
  34. package/dist/native/androidProject/app/src/main/res/layout/activity_splash.xml +20 -0
  35. package/dist/native/androidProject/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +6 -0
  36. package/dist/native/androidProject/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +6 -0
  37. package/dist/native/androidProject/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
  38. package/dist/native/androidProject/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
  39. package/dist/native/androidProject/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
  40. package/dist/native/androidProject/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
  41. package/dist/native/androidProject/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
  42. package/dist/native/androidProject/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
  43. package/dist/native/androidProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
  44. package/dist/native/androidProject/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
  45. package/dist/native/androidProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
  46. package/dist/native/androidProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
  47. package/dist/native/androidProject/app/src/main/res/values/colors.xml +10 -0
  48. package/dist/native/androidProject/app/src/main/res/values/strings.xml +3 -0
  49. package/dist/native/androidProject/app/src/main/res/values/themes.xml +26 -0
  50. package/dist/native/androidProject/app/src/main/res/values-night/themes.xml +26 -0
  51. package/dist/native/androidProject/app/src/main/res/xml/backup_rules.xml +13 -0
  52. package/dist/native/androidProject/app/src/main/res/xml/data_extraction_rules.xml +19 -0
  53. package/dist/native/androidProject/app/src/main/res/xml/file_paths.xml +18 -0
  54. package/dist/native/androidProject/app/src/main/res/xml/network_security_config.xml +12 -0
  55. package/dist/native/androidProject/app/src/noFcm/java/io/yourname/androidproject/utils/NotificationManager.kt +158 -0
  56. package/dist/native/androidProject/app/src/noFcm/java/io/yourname/androidproject/utils/PushNotificationUtils.kt +94 -0
  57. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/BridgeMessageValidatorTest.kt +267 -0
  58. package/dist/native/androidProject/app/src/withFcm/java/io/yourname/androidproject/utils/NotificationManager.kt +224 -0
  59. package/dist/native/androidProject/app/src/withFcm/java/io/yourname/androidproject/utils/PushNotificationUtils.kt +399 -0
  60. package/dist/native/androidProject/build.gradle.kts +11 -0
  61. package/dist/native/androidProject/gradle/libs.versions.toml +28 -0
  62. package/dist/native/androidProject/gradle/wrapper/gradle-wrapper.jar +0 -0
  63. package/dist/native/androidProject/gradle/wrapper/gradle-wrapper.properties +6 -0
  64. package/dist/native/androidProject/gradle.properties +23 -0
  65. package/dist/native/androidProject/gradlew +185 -0
  66. package/dist/native/androidProject/gradlew.bat +89 -0
  67. package/dist/native/androidProject/keystore/Untitled +0 -0
  68. package/dist/native/androidProject/keystore/release-key.jks +0 -0
  69. package/dist/native/androidProject/settings.gradle.kts +35 -0
  70. package/dist/native/androidSetup.js +8 -0
  71. package/dist/native/assets/catalyst.png +0 -0
  72. package/dist/native/bridge/WebBridge.js +59 -0
  73. package/dist/native/bridge/constants/NativeInterfaces.js +37 -0
  74. package/dist/native/bridge/errors.js +39 -0
  75. package/dist/native/bridge/hooks.js +107 -0
  76. package/dist/native/bridge/safeArea.js +5 -0
  77. package/dist/native/bridge/standardizedHooks.js +98 -0
  78. package/dist/native/bridge/useBaseHook.js +43 -0
  79. package/dist/native/bridge/utils/CameraUtils.js +58 -0
  80. package/dist/native/bridge/utils/FileObjectConverter.js +40 -0
  81. package/dist/native/bridge/utils/NativeBridge.js +94 -0
  82. package/dist/native/build.swift +31 -0
  83. package/dist/native/buildAppAndroid.js +147 -0
  84. package/dist/native/buildAppIos.js +308 -0
  85. package/dist/native/iosnativeWebView/Configurations/Debug.xcconfig +21 -0
  86. package/dist/native/iosnativeWebView/Configurations/Release.xcconfig +24 -0
  87. package/dist/native/iosnativeWebView/Configurations/Shared.xcconfig +55 -0
  88. package/dist/native/iosnativeWebView/Package.resolved +158 -0
  89. package/dist/native/iosnativeWebView/Package.swift +26 -0
  90. package/dist/native/iosnativeWebView/Sources/CatalystNotifications/LocalNotificationHandler.swift +293 -0
  91. package/dist/native/iosnativeWebView/Sources/CatalystNotifications/NotificationManager.swift +299 -0
  92. package/dist/native/iosnativeWebView/Sources/CatalystNotifications/PushNotificationHandler.swift +199 -0
  93. package/dist/native/iosnativeWebView/Sources/Core/Constants/CatalystConstants.swift +115 -0
  94. package/dist/native/iosnativeWebView/Sources/Core/Constants/ConfigConstants.swift +28 -0
  95. package/dist/native/iosnativeWebView/Sources/Core/Notifications/NotificationModels.swift +156 -0
  96. package/dist/native/iosnativeWebView/Sources/Core/Protocols/NotificationHandlerProtocol.swift +35 -0
  97. package/dist/native/iosnativeWebView/Sources/Core/Utils/BootTimingUtility.swift +26 -0
  98. package/dist/native/iosnativeWebView/Sources/Core/Utils/CacheManager.swift +277 -0
  99. package/dist/native/iosnativeWebView/Sources/Core/Utils/CameraTransportUtils.swift +363 -0
  100. package/dist/native/iosnativeWebView/Sources/Core/Utils/DeviceInfoUtils.swift +67 -0
  101. package/dist/native/iosnativeWebView/Sources/Core/Utils/FilePickerHandler.swift +1053 -0
  102. package/dist/native/iosnativeWebView/Sources/Core/Utils/FrameworkServerUtils.swift +901 -0
  103. package/dist/native/iosnativeWebView/Sources/Core/Utils/ImageHandler.swift +474 -0
  104. package/dist/native/iosnativeWebView/Sources/Core/Utils/NetworkMonitor.swift +112 -0
  105. package/dist/native/iosnativeWebView/Sources/Core/Utils/NotificationHandlerProvider.swift +20 -0
  106. package/dist/native/iosnativeWebView/Sources/Core/Utils/NullNotificationHandler.swift +85 -0
  107. package/dist/native/iosnativeWebView/Sources/Core/Utils/ResourceURLProtocol.swift +153 -0
  108. package/dist/native/iosnativeWebView/Sources/Core/Utils/SafeAreaUtils.swift +132 -0
  109. package/dist/native/iosnativeWebView/Sources/Core/Utils/URLWhitelistManager.swift +238 -0
  110. package/dist/native/iosnativeWebView/Sources/Core/Utils/WebKitConfig.swift +43 -0
  111. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeCommandHandler.swift +644 -0
  112. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeDelegateHandler.swift +166 -0
  113. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeFileHandler.swift +340 -0
  114. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeJavaScriptInterface.swift +149 -0
  115. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeMessageValidator.swift +593 -0
  116. package/dist/native/iosnativeWebView/Sources/Core/WebView/NativeBridge.swift +326 -0
  117. package/dist/native/iosnativeWebView/Sources/Core/WebView/SplashView.swift +95 -0
  118. package/dist/native/iosnativeWebView/Sources/Core/WebView/SplashViewModel.swift +86 -0
  119. package/dist/native/iosnativeWebView/Sources/Core/WebView/WebView.swift +181 -0
  120. package/dist/native/iosnativeWebView/Sources/Core/WebView/WebViewModel.swift +182 -0
  121. package/dist/native/iosnativeWebView/Sources/Core/WebView/WebViewNavigationDelegate.swift +395 -0
  122. package/dist/native/iosnativeWebView/iosnativeWebView/AppDelegate.swift +71 -0
  123. package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  124. package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
  125. package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/Contents.json +6 -0
  126. package/dist/native/iosnativeWebView/iosnativeWebView/ContentView.swift +111 -0
  127. package/dist/native/iosnativeWebView/iosnativeWebView/Info-Release.plist +21 -0
  128. package/dist/native/iosnativeWebView/iosnativeWebView/Info.plist +28 -0
  129. package/dist/native/iosnativeWebView/iosnativeWebView/Preview Content/Preview Assets.xcassets/Contents.json +6 -0
  130. package/dist/native/iosnativeWebView/iosnativeWebView/iosnativeWebView.entitlements +8 -0
  131. package/dist/native/iosnativeWebView/iosnativeWebView/iosnativeWebViewApp.swift +87 -0
  132. package/dist/native/iosnativeWebView/iosnativeWebView/localhost.p12 +0 -0
  133. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.pbxproj +558 -0
  134. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  135. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  136. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +159 -0
  137. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/xcshareddata/xcschemes/iosnativeWebView.xcscheme +112 -0
  138. package/dist/native/renameAndroidProject.js +89 -0
  139. package/dist/native/setupEmulatorIos.js +36 -0
  140. package/dist/native/setupServer.js +28 -0
  141. package/dist/native/terminalProgress.js +11 -0
  142. package/dist/native/utils.js +12 -0
  143. package/dist/scripts/build.js +2 -2
  144. package/dist/scripts/devBuild.js +2 -2
  145. package/dist/scripts/scriptUtils.js +2 -2
  146. package/dist/sentry.js +4 -1
  147. package/dist/server/renderer/document/Body.js +4 -4
  148. package/dist/server/renderer/handler.js +7 -5
  149. package/dist/webpack/development.client.babel.js +1 -1
  150. package/package.json +4 -2
package/README.md CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
  Catalyst offers a comprehensive suite of features designed for modern web development. It includes isomorphic rendering for optimal performance, an extendable server with full-stack capabilities, and configurable state management. The framework employs smart prefetching of data and chunks, allows easy configuration of global styles and layouts, and provides SEO optimization at both global and page levels.
16
16
 
17
+ This version adds support for Universal app for both Android and iOS. Please checkout [Universal App Documentaion](https://catalyst.1mg.com/public_docs/content/Universal%20App/RunUniversalApp)
18
+
17
19
  ## Installation
18
20
 
19
21
  **System Requirements**
package/bin/catalyst.js CHANGED
@@ -5,17 +5,102 @@ process.on("unhandledRejection", (err) => {
5
5
  })
6
6
  const { spawnSync } = require("node:child_process")
7
7
  const args = process.argv.slice(2)
8
- const scriptIndex = args.findIndex(
9
- (x) => x === "build" || x === "start" || x === "serve" || x === "devBuild" || x === "devServe"
10
- )
11
- const script = scriptIndex === -1 ? args[0] : args[scriptIndex]
12
- const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : []
13
- if (["build", "start", "serve", "devBuild", "devServe"].includes(script)) {
8
+
9
+ // Array of valid commands
10
+ const validCommands = [
11
+ "build",
12
+ "start",
13
+ "serve",
14
+ "devBuild",
15
+ "devServe",
16
+ "buildApp",
17
+ "buildApp:ios",
18
+ "buildApp:android",
19
+ "setupEmulator",
20
+ "setupEmulator:ios",
21
+ "setupEmulator:android",
22
+ ]
23
+
24
+ // Map of platform-specific commands to their script paths
25
+ const platformScripts = {
26
+ "setupEmulator:ios": "../dist/native/setupEmulatorIos.js",
27
+ "setupEmulator:android": "../dist/native/androidSetup.js",
28
+ "buildApp:ios": "../dist/native/buildAppIos.js",
29
+ "buildApp:android": "../dist/native/buildAppAndroid.js",
30
+ }
31
+
32
+ // Helper to check if arg is a platform command
33
+ const isPlatformCommand = (arg, prefix) => {
34
+ if (!arg.startsWith(`${prefix}:`)) return false
35
+ const platform = arg.split(":")[1]
36
+ return ["ios", "android"].includes(platform) || platform === undefined
37
+ }
38
+
39
+ // Helper function to run a platform command
40
+ const runPlatformCommand = (baseCommand, platform) => {
41
+ const command = `${baseCommand}:${platform}`
14
42
  const result = spawnSync(
15
43
  process.execPath,
16
- nodeArgs.concat(require.resolve("../dist/scripts/" + script)).concat(args.slice(scriptIndex + 1)),
44
+ nodeArgs.concat(require.resolve(platformScripts[command])).concat(args.slice(scriptIndex + 1)),
17
45
  { stdio: "inherit" }
18
46
  )
47
+ return result
48
+ }
49
+
50
+ // Helper function to run commands for all platforms
51
+ const runAllPlatforms = (baseCommand) => {
52
+ const platforms = ["ios", "android"]
53
+ for (const platform of platforms) {
54
+ const result = runPlatformCommand(baseCommand, platform)
55
+ if (result.status !== 0) {
56
+ handleProcessResult(result)
57
+ return
58
+ }
59
+ }
60
+ process.exit(0)
61
+ }
62
+
63
+ const scriptIndex = args.findIndex(
64
+ (x) =>
65
+ x === "build" ||
66
+ x === "start" ||
67
+ x === "serve" ||
68
+ x === "devBuild" ||
69
+ x === "devServe" ||
70
+ isPlatformCommand(x, "buildApp") ||
71
+ isPlatformCommand(x, "setupEmulator")
72
+ )
73
+ const script = scriptIndex === -1 ? args[0] : args[scriptIndex]
74
+ const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : []
75
+
76
+ if (validCommands.includes(script)) {
77
+ // Handle platform-specific or combined commands
78
+ if (script === "buildApp" || script === "setupEmulator") {
79
+ // Run for all platforms if no specific platform is specified
80
+ runAllPlatforms(script)
81
+ } else if (script in platformScripts) {
82
+ // Run for specific platform
83
+ const result = spawnSync(
84
+ process.execPath,
85
+ nodeArgs.concat(require.resolve(platformScripts[script])).concat(args.slice(scriptIndex + 1)),
86
+ { stdio: "inherit" }
87
+ )
88
+ handleProcessResult(result)
89
+ } else {
90
+ // Original commands
91
+ const result = spawnSync(
92
+ process.execPath,
93
+ nodeArgs.concat(require.resolve("../dist/scripts/" + script)).concat(args.slice(scriptIndex + 1)),
94
+ { stdio: "inherit" }
95
+ )
96
+ handleProcessResult(result)
97
+ }
98
+ } else {
99
+ console.log('Unknown script "' + script + '".')
100
+ }
101
+
102
+ // Helper function to handle process results
103
+ function handleProcessResult(result) {
19
104
  if (result.signal) {
20
105
  if (result.signal === "SIGKILL") {
21
106
  console.log(
@@ -33,6 +118,4 @@ if (["build", "start", "serve", "devBuild", "devServe"].includes(script)) {
33
118
  process.exit(1)
34
119
  }
35
120
  process.exit(result.status)
36
- } else {
37
- console.log('Unknown script "' + script + '".')
38
121
  }
package/changelog.md CHANGED
@@ -1,51 +1,129 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.1-beta.16] - 28-08-2025
3
+ ## [0.0.3-canary.20] - 2025-12-12
4
4
 
5
- - Adds SDK for Open Telemetry
5
+ - Patch: Allow localhost traffic to be served from http
6
6
 
7
- ## [0.0.1-beta.15] - 1-07-2025
7
+ ## [0.0.3-canary.19] - 2025-12-09
8
8
 
9
- - Adds SDK for Sentry
9
+ - Offline fallback support: packages `public/offline.html` into Android/iOS bundles and shows it automatically when connectivity drops (with retry handling)
10
+ - Notification refactor: streamlined config toggle for local vs push, centralized permission/asset handling, and simpler routing into the web app
11
+ - Access control: combined access control config for ios
10
12
 
11
- ## [0.0.1-beta.14] - 19-05-2025
13
+ ## [0.0.3-canary.18] - 2025-11-19
12
14
 
13
- - Fixes header sent bug
14
- - Returns promise from handler
15
+ - Configuration Files
16
+ - Android Native WebView - MainActivity.kt
17
+ - Android Native WebView - CustomWebview.kt
15
18
 
16
- ## [0.0.1-beta.13] - 04-04-2025
19
+ ## [0.0.3-canary.17] - 2025-11-19
17
20
 
18
- - Fixes a bug for client fetcher when importing components through loadable
21
+ - โœจ Added complete notification system (local & push)
22
+ - ๐Ÿ”” New useNotification() React hook
23
+ - ๐Ÿ“ฑ Firebase Cloud Messaging conditional build support
24
+ - ๐Ÿค– Android notification handling in MainActivity
25
+ - ๐Ÿ”ง 5 new notification commands + 5 callbacks in NativeBridge
26
+ - ๐Ÿ“ฆ Auto-processing of notification icons & sounds
27
+ - โš™๏ธ Conditional dependencies based on notification config
28
+ - ๐Ÿงน Updated .gitignore & .npmignore
29
+ - ๐Ÿ“‹ Enhanced build process with automatic permission injection
30
+ - ๐Ÿ”— Deep link integration with notifications
19
31
 
20
- ## [0.0.1-beta.12] - 06-03-2025
32
+ ## [0.0.3-canary.16] - 2025-11-19
21
33
 
22
- - Add support for ESM only packages
34
+ - FeaturesGallery Support for File Picker: Enhanced file picker to open native gallery for selecting images and videos
35
+ - HTTPS Framework Server: Enabled HTTPS support for the framework server with self-signed SSL certificate
36
+ - MIME Type Handling: Fixed and improved MIME type detection and handling in the file picker
23
37
 
24
- ## [0.0.1-beta.11] - 21-02-2025
38
+ ## [0.0.3-canary.15] - 2025-11-19
25
39
 
26
- - Add support for custom react compiler config
27
- - Add support for typescript
28
- - Fix json import issue
29
- - Fix common name module conflict issue
40
+ - Adding Android release support and appInfo key
30
41
 
31
- ## [0.0.1-beta.10] - 06-02-2024
42
+ ## [0.0.3-canary.14] - 2025-09-29
32
43
 
33
- ### Changes
44
+ - Android custom splashscreen
34
45
 
35
- - New lifecycle methods
36
- - Support for windows - Adds native support for powershell
37
- - Add support for react compiler
38
- - Add document CSS in response for bot agents
46
+ ## [0.0.3-canary.13] - 2025-09-28
39
47
 
40
- ## [0.0.1-beta.9] - 13-12-2024
48
+ - Multi file support in useFilePicker hook
49
+ - Android multiple app icon support
50
+ - Android whitelisting toggle support
41
51
 
42
- ### Changes
52
+ ## [0.0.3-canary.12] - 2025-09-26
43
53
 
44
- - Update @tata1mg/router's version to 0.0.1-beta.6.
54
+ - Universal App Context: Added comprehensive context support for building universal mobile applications
55
+ - OpenTelemetry SDK Integration: Built-in support for observability and performance monitoring with Otel SDK
45
56
 
46
- ## [0.0.1-beta.8] - 09-12-2024
57
+ ## [0.0.3-canary.11] - 2025-09-26
47
58
 
48
- ### Changes
59
+ - Build organization: Store APKs and iOS builds organized by generation date and time for better tracking and management
60
+ - Enhanced Android native support: Add support for native keyboard and webview resizing in Android
61
+ - Device info API web support: Web support in device info API
49
62
 
50
- - Filter out host machine's environment variable from client environment variables
51
- - Update @tata1mg/router's version to 0.0.1-beta.5.
63
+ ## [0.0.3-canary.10] - 2025-09-11
64
+
65
+ - **Sentry import bug fix**
66
+ - **Open telemetry SDK**
67
+
68
+ ## [0.0.3-canary.9] - 2025-09-11
69
+
70
+ - **App name configuration**
71
+ - **Device Info API**
72
+ - **Access control configuration**
73
+
74
+ ## [0.0.3-canary.8] - 2025-01-06
75
+
76
+ - **App icon configuration**
77
+ - **Splash screen integration**
78
+ - **Url Whitelisting**
79
+
80
+ ## [0.0.3-canary.7] - 2025-01-06
81
+
82
+ ### ๐Ÿš€ Features
83
+
84
+ - **Native API Integration**: Enhanced native module integration for better performance
85
+ - **Automated IP Resolution**: Intelligent network detection eliminates manual IP configuration
86
+ - **Universal Build System**: Streamlined one-command builds for both Android and iOS platforms
87
+ - **Enhanced CLI Interface**: Improved command-line tools for better developer experience
88
+
89
+ ### ๐Ÿ› Bug Fixes
90
+
91
+ - Fixed IP address detection issues on development environments
92
+ - Resolved build configuration conflicts between platforms
93
+ - Improved error handling and recovery mechanisms
94
+
95
+ ### ๐Ÿ”ง Improvements
96
+
97
+ - **Performance**: Optimized native module loading and execution
98
+ - **Developer Experience**: Enhanced CLI with better error messages and debugging info
99
+ - **Configuration**: Dynamic config updates without requiring restarts
100
+ - **Build Process**: Faster and more reliable build pipeline
101
+
102
+ ### ๐Ÿงช Testing & Validation
103
+
104
+ - โœ… **Android Build**: Verified APK generation, installation, and runtime behavior
105
+ - โœ… **iOS Build**: Tested build process and device compatibility
106
+ - โœ… **IP Detection**: Validated automatic network resolution across platforms
107
+ - โœ… **Native Modules**: Confirmed API integration and performance benchmarks
108
+ - โœ… **CLI Operations**: Tested enhanced command-line workflows and error handling
109
+
110
+ ### ๐Ÿ”„ Breaking Changes
111
+
112
+ **None** - All changes maintain backward compatibility while enhancing existing functionality
113
+
114
+ ### ๐Ÿ“ Technical Details
115
+
116
+ - Improved native API bridge for better cross-platform communication
117
+ - Enhanced error reporting with detailed stack traces and suggestions
118
+ - Optimized build configuration for faster development cycles
119
+ - Added comprehensive logging for debugging and monitoring
120
+
121
+ ### ๐Ÿ”— Migration Notes
122
+
123
+ - No migration steps required
124
+ - Existing projects will automatically benefit from improvements
125
+ - Optional: Update CLI usage to leverage new enhanced features
126
+
127
+ ## Version
128
+
129
+ - Target version: 0.0.3-canary.7