diff --git a/.nvmrc b/.nvmrc index 9a2a0e2..a45fd52 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v20 +24 diff --git a/ios/DeveloperApp/AppDelegate.swift b/ios/DeveloperApp/AppDelegate.swift index 76dc9f9..89c8be2 100644 --- a/ios/DeveloperApp/AppDelegate.swift +++ b/ios/DeveloperApp/AppDelegate.swift @@ -13,7 +13,7 @@ class AppDelegate: ReactAppProvider { var shouldLaunchLastApp: Bool = false var previewingSampleApp: Bool = false - override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { super.setUpProvider() super.application(application, didFinishLaunchingWithOptions: launchOptions) clearKeychainIfNecessary() @@ -24,14 +24,14 @@ class AppDelegate: ReactAppProvider { return true } - override func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool { + override func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { RCTLinkingManager.application(app, open: url, options: options) guard let appUrl = AppPreferences.appUrl, !appUrl.isEmpty, !ReactAppProvider.isReactAppActive() else { return true } var launchOptions: [AnyHashable: Any] = options - launchOptions[UIApplicationLaunchOptionsKey.annotation] = options[UIApplicationOpenURLOptionsKey.annotation] ?? [] - launchOptions[UIApplicationLaunchOptionsKey.url] = url + launchOptions[UIApplication.LaunchOptionsKey.annotation] = options[UIApplication.OpenURLOptionsKey.annotation] ?? [] + launchOptions[UIApplication.LaunchOptionsKey.url] = url launchMendixAppWithOptions(options: launchOptions) return true } @@ -106,29 +106,19 @@ extension AppDelegate: UNUserNotificationCenterDelegate, MessagingDelegate { FirebaseApp.configure() } //Register MiN for remote Notifications - if #available(iOS 10.0, *) { - // For iOS 10 display notification (sent via APNS) - UNUserNotificationCenter.current().delegate = self - - let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound] - UNUserNotificationCenter.current().requestAuthorization( - options: authOptions, - completionHandler: {_, _ in }) - } else { - let settings: UIUserNotificationSettings = - UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil) - application.registerUserNotificationSettings(settings) - } + // For iOS 10+ display notification (sent via APNS) + UNUserNotificationCenter.current().delegate = self + + let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound] + UNUserNotificationCenter.current().requestAuthorization( + options: authOptions, + completionHandler: {_, _ in }) application.registerForRemoteNotifications() } //Called when a notification is delivered to a foreground app. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { - if #available(iOS 14.0, *) { - completionHandler([.sound, .badge]) - } else { - completionHandler([.sound, .alert, .badge]) - } + completionHandler([.sound, .badge, .banner, .list]) } func userNotificationCenter( diff --git a/ios/DeveloperApp/Extension/MendixReactWindow+Extension.swift b/ios/DeveloperApp/Extension/MendixReactWindow+Extension.swift index 6506941..7d0fa99 100644 --- a/ios/DeveloperApp/Extension/MendixReactWindow+Extension.swift +++ b/ios/DeveloperApp/Extension/MendixReactWindow+Extension.swift @@ -5,7 +5,7 @@ extension MendixReactWindow { return true } - open override func motionEnded(_ motion: UIEventSubtype, with event: UIEvent?) { + open override func motionEnded(_ motion: UIEvent.EventSubtype, with event: UIEvent?) { if (motion == .motionShake && ReactAppProvider.isReactAppActive()) { DevHelper.showAppMenu() } diff --git a/ios/DeveloperApp/Extension/RCTRootView+Extension.swift b/ios/DeveloperApp/Extension/RCTRootView+Extension.swift index edde719..b244ebe 100644 --- a/ios/DeveloperApp/Extension/RCTRootView+Extension.swift +++ b/ios/DeveloperApp/Extension/RCTRootView+Extension.swift @@ -3,6 +3,6 @@ import Foundation extension RCTRootView { override open func willMove(toWindow newWindow: UIWindow?) { super.willMove(toWindow: newWindow) - backgroundColor = UIColor.init(white: CGFloat(0.0), alpha: CGFloat(0.0)) + backgroundColor = UIColor(white: 0.0, alpha: 0.0) } } diff --git a/ios/DeveloperApp/Extension/Storyboard+Extension.swift b/ios/DeveloperApp/Extension/Storyboard+Extension.swift index bd723ae..2eea4f4 100644 --- a/ios/DeveloperApp/Extension/Storyboard+Extension.swift +++ b/ios/DeveloperApp/Extension/Storyboard+Extension.swift @@ -1,7 +1,7 @@ import UIKit extension UIStoryboard { - static let openApp: UIStoryboard = .init(name: "OpenApp", bundle: nil) - static let launchTutorial: UIStoryboard = .init(name: "LaunchTutorial", bundle: nil) - static let launchScreen: UIStoryboard = .init(name: "LaunchScreen", bundle: nil) + static let openApp = UIStoryboard(name: "OpenApp", bundle: nil) + static let launchTutorial = UIStoryboard(name: "LaunchTutorial", bundle: nil) + static let launchScreen = UIStoryboard(name: "LaunchScreen", bundle: nil) } diff --git a/ios/DeveloperApp/Helpers.swift b/ios/DeveloperApp/Helpers.swift index 79ea67d..3c8c944 100644 --- a/ios/DeveloperApp/Helpers.swift +++ b/ios/DeveloperApp/Helpers.swift @@ -28,11 +28,7 @@ func getUrlFromBundle(_ reference: String) -> String? { func navigateTo(_ urlString: String) { if let url = URL(string: urlString) { - if #available(iOS 10.0, *) { - UIApplication.shared.open(url, options: [:], completionHandler: nil) - } else { - UIApplication.shared.openURL(url) - } + UIApplication.shared.open(url, options: [:], completionHandler: nil) } } diff --git a/ios/DeveloperApp/History/HistoryView.swift b/ios/DeveloperApp/History/HistoryView.swift index a71aa71..6fbc73d 100644 --- a/ios/DeveloperApp/History/HistoryView.swift +++ b/ios/DeveloperApp/History/HistoryView.swift @@ -37,7 +37,7 @@ struct HistoryView: View { ScrollView(.vertical, showsIndicators: false) { VStack{ - if historyStore.historyList.count == 0 { + if historyStore.historyList.isEmpty { Text("No apps have been launched yet.") .padding(.top,25) } else { diff --git a/ios/DeveloperApp/Home/HomeView.swift b/ios/DeveloperApp/Home/HomeView.swift index a7613b8..049376b 100644 --- a/ios/DeveloperApp/Home/HomeView.swift +++ b/ios/DeveloperApp/Home/HomeView.swift @@ -150,7 +150,7 @@ struct HomeView: View { func permissionDeniedAlert() -> Alert { return Alert(title: Text("Camera"), message: Text("Camera access is required to use the QR scanner"), primaryButton: .default(Text("OK")){ - UIApplication.shared.open(URL(string: UIApplicationOpenSettingsURLString)!) + UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!) },secondaryButton: .cancel{ showPermissionDeniedAlert = false }) diff --git a/ios/DeveloperApp/Launch/LaunchScreenUIView.swift b/ios/DeveloperApp/Launch/LaunchScreenUIView.swift index 12047ff..64c9acb 100644 --- a/ios/DeveloperApp/Launch/LaunchScreenUIView.swift +++ b/ios/DeveloperApp/Launch/LaunchScreenUIView.swift @@ -28,7 +28,7 @@ struct LaunchScreenUIView: View { } private let animationTimer = Timer - .publish(every: 1, on: .current, in: RunLoopMode.commonModes) + .publish(every: 1, on: .current, in: RunLoop.Mode.common) .autoconnect() var body: some View { diff --git a/ios/DeveloperApp/MendixApp/MendixAppViewController.swift b/ios/DeveloperApp/MendixApp/MendixAppViewController.swift index 51ec04f..9f515ff 100644 --- a/ios/DeveloperApp/MendixApp/MendixAppViewController.swift +++ b/ios/DeveloperApp/MendixApp/MendixAppViewController.swift @@ -6,6 +6,10 @@ class MendixAppViewController: UIViewController, ReactNativeDelegate { override func becomeFirstResponder() -> Bool { return true } + + override var preferredStatusBarStyle: UIStatusBarStyle { + return .darkContent + } override func viewDidLoad() { super.viewDidLoad() @@ -20,12 +24,7 @@ class MendixAppViewController: UIViewController, ReactNativeDelegate { override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) _ = becomeFirstResponder() - - if #available(iOS 13.0, *) { - UIApplication.shared.statusBarStyle = .darkContent - } else { - UIApplication.shared.statusBarStyle = .default - } + setNeedsStatusBarAppearanceUpdate() } override func viewWillDisappear(_ animated: Bool) { diff --git a/ios/DeveloperApp/PaddingTextField.swift b/ios/DeveloperApp/PaddingTextField.swift index 7fb2be2..f56c6a4 100644 --- a/ios/DeveloperApp/PaddingTextField.swift +++ b/ios/DeveloperApp/PaddingTextField.swift @@ -8,15 +8,15 @@ class PaddingTextField: UITextField { @IBInspectable var paddingLeft: CGFloat = 0 override func textRect(forBounds bounds: CGRect) -> CGRect { - return UIEdgeInsetsInsetRect(bounds, createPaddingInsets()) + return bounds.inset(by: createPaddingInsets()) } override func placeholderRect(forBounds bounds: CGRect) -> CGRect { - return UIEdgeInsetsInsetRect(bounds, createPaddingInsets()) + return bounds.inset(by: createPaddingInsets()) } override func editingRect(forBounds bounds: CGRect) -> CGRect { - return UIEdgeInsetsInsetRect(bounds, createPaddingInsets()) + return bounds.inset(by: createPaddingInsets()) } private func createPaddingInsets() -> UIEdgeInsets { diff --git a/ios/Podfile b/ios/Podfile index 8f4fef9..30d8819 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -76,27 +76,8 @@ target 'DeveloperApp' do config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [] config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] |= ['$(inherited)', "RCT_DEV=1"] end - - # Specify 'Swift Version: 5.0' for resolving archieve errors. - if target.name == 'react-native-video' || target.name == 'MendixNative' - config.build_settings['SWIFT_VERSION'] = '5.0' - end - if target.name == 'VisionCamera' - config.build_settings['SWIFT_VERSION'] = '5.2' - end + end end - - # Ensure deployment_target is set correctly for all projects - installer.generated_projects.each do |project| - project.targets.each do |target| - target.build_configurations.each do |config| - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target - end - end - project.build_configurations.each do |bc| - bc.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target - end - end end end diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 44f9b35..5d9dec1 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -4,7 +4,7 @@ PODS: - React-Core - DoubleConversion (1.1.6) - fast_float (6.1.4) - - FBLazyVector (0.77.3) + - FBLazyVector (0.78.2) - Firebase (10.27.0): - Firebase/Core (= 10.27.0) - Firebase/Analytics (10.27.0): @@ -173,9 +173,9 @@ PODS: - GoogleUtilities/UserDefaults (7.13.3): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - hermes-engine (0.77.3): - - hermes-engine/Pre-built (= 0.77.3) - - hermes-engine/Pre-built (0.77.3) + - hermes-engine (0.78.2): + - hermes-engine/Pre-built (= 0.78.2) + - hermes-engine/Pre-built (0.78.2) - IQKeyboardManager (6.5.19) - libwebp (1.5.0): - libwebp/demux (= 1.5.0) @@ -189,7 +189,7 @@ PODS: - libwebp/sharpyuv (1.5.0) - libwebp/webp (1.5.0): - libwebp/sharpyuv - - MendixNative (0.1.3): + - MendixNative (0.3.0): - DoubleConversion - glog - hermes-engine @@ -267,32 +267,32 @@ PODS: - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - - RCTDeprecation (0.77.3) - - RCTRequired (0.77.3) - - RCTTypeSafety (0.77.3): - - FBLazyVector (= 0.77.3) - - RCTRequired (= 0.77.3) - - React-Core (= 0.77.3) - - React (0.77.3): - - React-Core (= 0.77.3) - - React-Core/DevSupport (= 0.77.3) - - React-Core/RCTWebSocket (= 0.77.3) - - React-RCTActionSheet (= 0.77.3) - - React-RCTAnimation (= 0.77.3) - - React-RCTBlob (= 0.77.3) - - React-RCTImage (= 0.77.3) - - React-RCTLinking (= 0.77.3) - - React-RCTNetwork (= 0.77.3) - - React-RCTSettings (= 0.77.3) - - React-RCTText (= 0.77.3) - - React-RCTVibration (= 0.77.3) - - React-callinvoker (0.77.3) - - React-Core (0.77.3): + - RCTDeprecation (0.78.2) + - RCTRequired (0.78.2) + - RCTTypeSafety (0.78.2): + - FBLazyVector (= 0.78.2) + - RCTRequired (= 0.78.2) + - React-Core (= 0.78.2) + - React (0.78.2): + - React-Core (= 0.78.2) + - React-Core/DevSupport (= 0.78.2) + - React-Core/RCTWebSocket (= 0.78.2) + - React-RCTActionSheet (= 0.78.2) + - React-RCTAnimation (= 0.78.2) + - React-RCTBlob (= 0.78.2) + - React-RCTImage (= 0.78.2) + - React-RCTLinking (= 0.78.2) + - React-RCTNetwork (= 0.78.2) + - React-RCTSettings (= 0.78.2) + - React-RCTText (= 0.78.2) + - React-RCTVibration (= 0.78.2) + - React-callinvoker (0.78.2) + - React-Core (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.77.3) + - React-Core/Default (= 0.78.2) - React-cxxreact - React-featureflags - React-hermes @@ -304,7 +304,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/CoreModulesHeaders (0.77.3): + - React-Core/CoreModulesHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -321,7 +321,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/Default (0.77.3): + - React-Core/Default (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -337,13 +337,13 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/DevSupport (0.77.3): + - React-Core/DevSupport (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.77.3) - - React-Core/RCTWebSocket (= 0.77.3) + - React-Core/Default (= 0.78.2) + - React-Core/RCTWebSocket (= 0.78.2) - React-cxxreact - React-featureflags - React-hermes @@ -355,7 +355,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.77.3): + - React-Core/RCTActionSheetHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -372,7 +372,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTAnimationHeaders (0.77.3): + - React-Core/RCTAnimationHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -389,7 +389,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTBlobHeaders (0.77.3): + - React-Core/RCTBlobHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -406,7 +406,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTImageHeaders (0.77.3): + - React-Core/RCTImageHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -423,7 +423,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTLinkingHeaders (0.77.3): + - React-Core/RCTLinkingHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -440,7 +440,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTNetworkHeaders (0.77.3): + - React-Core/RCTNetworkHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -457,7 +457,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTSettingsHeaders (0.77.3): + - React-Core/RCTSettingsHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -474,7 +474,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTTextHeaders (0.77.3): + - React-Core/RCTTextHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -491,7 +491,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTVibrationHeaders (0.77.3): + - React-Core/RCTVibrationHeaders (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -508,12 +508,12 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTWebSocket (0.77.3): + - React-Core/RCTWebSocket (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.77.3) + - React-Core/Default (= 0.78.2) - React-cxxreact - React-featureflags - React-hermes @@ -525,22 +525,22 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-CoreModules (0.77.3): + - React-CoreModules (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - RCT-Folly (= 2024.11.18.00) - - RCTTypeSafety (= 0.77.3) - - React-Core/CoreModulesHeaders (= 0.77.3) - - React-jsi (= 0.77.3) + - RCTTypeSafety (= 0.78.2) + - React-Core/CoreModulesHeaders (= 0.78.2) + - React-jsi (= 0.78.2) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.77.3) + - React-RCTImage (= 0.78.2) - ReactCommon - SocketRocket (= 0.7.1) - - React-cxxreact (0.77.3): + - React-cxxreact (0.78.2): - boost - DoubleConversion - fast_float (= 6.1.4) @@ -548,16 +548,16 @@ PODS: - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.77.3) - - React-debug (= 0.77.3) - - React-jsi (= 0.77.3) + - React-callinvoker (= 0.78.2) + - React-debug (= 0.78.2) + - React-jsi (= 0.78.2) - React-jsinspector - - React-logger (= 0.77.3) - - React-perflogger (= 0.77.3) - - React-runtimeexecutor (= 0.77.3) - - React-timing (= 0.77.3) - - React-debug (0.77.3) - - React-defaultsnativemodule (0.77.3): + - React-logger (= 0.78.2) + - React-perflogger (= 0.78.2) + - React-runtimeexecutor (= 0.78.2) + - React-timing (= 0.78.2) + - React-debug (0.78.2) + - React-defaultsnativemodule (0.78.2): - hermes-engine - RCT-Folly - React-domnativemodule @@ -567,7 +567,7 @@ PODS: - React-jsiexecutor - React-microtasksnativemodule - React-RCTFBReactNativeSpec - - React-domnativemodule (0.77.3): + - React-domnativemodule (0.78.2): - hermes-engine - RCT-Folly - React-Fabric @@ -578,7 +578,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.77.3): + - React-Fabric (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -590,21 +590,22 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.77.3) - - React-Fabric/attributedstring (= 0.77.3) - - React-Fabric/componentregistry (= 0.77.3) - - React-Fabric/componentregistrynative (= 0.77.3) - - React-Fabric/components (= 0.77.3) - - React-Fabric/core (= 0.77.3) - - React-Fabric/dom (= 0.77.3) - - React-Fabric/imagemanager (= 0.77.3) - - React-Fabric/leakchecker (= 0.77.3) - - React-Fabric/mounting (= 0.77.3) - - React-Fabric/observers (= 0.77.3) - - React-Fabric/scheduler (= 0.77.3) - - React-Fabric/telemetry (= 0.77.3) - - React-Fabric/templateprocessor (= 0.77.3) - - React-Fabric/uimanager (= 0.77.3) + - React-Fabric/animations (= 0.78.2) + - React-Fabric/attributedstring (= 0.78.2) + - React-Fabric/componentregistry (= 0.78.2) + - React-Fabric/componentregistrynative (= 0.78.2) + - React-Fabric/components (= 0.78.2) + - React-Fabric/consistency (= 0.78.2) + - React-Fabric/core (= 0.78.2) + - React-Fabric/dom (= 0.78.2) + - React-Fabric/imagemanager (= 0.78.2) + - React-Fabric/leakchecker (= 0.78.2) + - React-Fabric/mounting (= 0.78.2) + - React-Fabric/observers (= 0.78.2) + - React-Fabric/scheduler (= 0.78.2) + - React-Fabric/telemetry (= 0.78.2) + - React-Fabric/templateprocessor (= 0.78.2) + - React-Fabric/uimanager (= 0.78.2) - React-featureflags - React-graphics - React-jsi @@ -614,7 +615,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.77.3): + - React-Fabric/animations (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -635,7 +636,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.77.3): + - React-Fabric/attributedstring (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -656,7 +657,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.77.3): + - React-Fabric/componentregistry (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -677,7 +678,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.77.3): + - React-Fabric/componentregistrynative (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -698,7 +699,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.77.3): + - React-Fabric/components (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -710,9 +711,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.77.3) - - React-Fabric/components/root (= 0.77.3) - - React-Fabric/components/view (= 0.77.3) + - React-Fabric/components/legacyviewmanagerinterop (= 0.78.2) + - React-Fabric/components/root (= 0.78.2) + - React-Fabric/components/view (= 0.78.2) - React-featureflags - React-graphics - React-jsi @@ -722,7 +723,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.77.3): + - React-Fabric/components/legacyviewmanagerinterop (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -743,7 +744,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.77.3): + - React-Fabric/components/root (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -764,7 +765,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.77.3): + - React-Fabric/components/view (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -786,7 +787,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.77.3): + - React-Fabric/consistency (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -807,7 +808,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.77.3): + - React-Fabric/core (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -828,7 +829,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.77.3): + - React-Fabric/dom (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -849,7 +850,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.77.3): + - React-Fabric/imagemanager (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -870,7 +871,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.77.3): + - React-Fabric/leakchecker (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -891,7 +892,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.77.3): + - React-Fabric/mounting (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -903,7 +904,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.77.3) - React-featureflags - React-graphics - React-jsi @@ -913,7 +913,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.77.3): + - React-Fabric/observers (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -925,6 +925,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/observers/events (= 0.78.2) - React-featureflags - React-graphics - React-jsi @@ -934,7 +935,28 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.77.3): + - React-Fabric/observers/events (0.78.2): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/scheduler (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -957,7 +979,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.77.3): + - React-Fabric/telemetry (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -978,7 +1000,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.77.3): + - React-Fabric/templateprocessor (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -999,7 +1021,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.77.3): + - React-Fabric/uimanager (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1011,7 +1033,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.77.3) + - React-Fabric/uimanager/consistency (= 0.78.2) - React-featureflags - React-graphics - React-jsi @@ -1022,7 +1044,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.77.3): + - React-Fabric/uimanager/consistency (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1044,7 +1066,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.77.3): + - React-FabricComponents (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1057,8 +1079,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.77.3) - - React-FabricComponents/textlayoutmanager (= 0.77.3) + - React-FabricComponents/components (= 0.78.2) + - React-FabricComponents/textlayoutmanager (= 0.78.2) - React-featureflags - React-graphics - React-jsi @@ -1069,7 +1091,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.77.3): + - React-FabricComponents/components (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1082,15 +1104,15 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.77.3) - - React-FabricComponents/components/iostextinput (= 0.77.3) - - React-FabricComponents/components/modal (= 0.77.3) - - React-FabricComponents/components/rncore (= 0.77.3) - - React-FabricComponents/components/safeareaview (= 0.77.3) - - React-FabricComponents/components/scrollview (= 0.77.3) - - React-FabricComponents/components/text (= 0.77.3) - - React-FabricComponents/components/textinput (= 0.77.3) - - React-FabricComponents/components/unimplementedview (= 0.77.3) + - React-FabricComponents/components/inputaccessory (= 0.78.2) + - React-FabricComponents/components/iostextinput (= 0.78.2) + - React-FabricComponents/components/modal (= 0.78.2) + - React-FabricComponents/components/rncore (= 0.78.2) + - React-FabricComponents/components/safeareaview (= 0.78.2) + - React-FabricComponents/components/scrollview (= 0.78.2) + - React-FabricComponents/components/text (= 0.78.2) + - React-FabricComponents/components/textinput (= 0.78.2) + - React-FabricComponents/components/unimplementedview (= 0.78.2) - React-featureflags - React-graphics - React-jsi @@ -1101,7 +1123,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.77.3): + - React-FabricComponents/components/inputaccessory (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1124,7 +1146,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.77.3): + - React-FabricComponents/components/iostextinput (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1147,7 +1169,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.77.3): + - React-FabricComponents/components/modal (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1170,7 +1192,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.77.3): + - React-FabricComponents/components/rncore (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1193,7 +1215,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.77.3): + - React-FabricComponents/components/safeareaview (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1216,7 +1238,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.77.3): + - React-FabricComponents/components/scrollview (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1239,7 +1261,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.77.3): + - React-FabricComponents/components/text (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1262,7 +1284,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.77.3): + - React-FabricComponents/components/textinput (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1285,7 +1307,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.77.3): + - React-FabricComponents/components/unimplementedview (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1308,7 +1330,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.77.3): + - React-FabricComponents/textlayoutmanager (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1331,28 +1353,29 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.77.3): + - React-FabricImage (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) - - RCTRequired (= 0.77.3) - - RCTTypeSafety (= 0.77.3) + - RCTRequired (= 0.78.2) + - RCTTypeSafety (= 0.78.2) - React-Fabric - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.77.3) + - React-jsiexecutor (= 0.78.2) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.77.3) - - React-featureflagsnativemodule (0.77.3): + - React-featureflags (0.78.2): + - RCT-Folly (= 2024.11.18.00) + - React-featureflagsnativemodule (0.78.2): - hermes-engine - RCT-Folly - React-featureflags @@ -1360,29 +1383,31 @@ PODS: - React-jsiexecutor - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - - React-graphics (0.77.3): + - React-graphics (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.77.3): + - React-hermes (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-cxxreact (= 0.77.3) + - React-cxxreact (= 0.78.2) - React-jsi - - React-jsiexecutor (= 0.77.3) + - React-jsiexecutor (= 0.78.2) - React-jsinspector - - React-perflogger (= 0.77.3) + - React-perflogger (= 0.78.2) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.77.3): + - React-idlecallbacksnativemodule (0.78.2): + - glog - hermes-engine - RCT-Folly - React-jsi @@ -1390,7 +1415,7 @@ PODS: - React-RCTFBReactNativeSpec - React-runtimescheduler - ReactCommon/turbomodule/core - - React-ImageManager (0.77.3): + - React-ImageManager (0.78.2): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1399,7 +1424,7 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.77.3): + - React-jserrorhandler (0.78.2): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) @@ -1408,7 +1433,7 @@ PODS: - React-featureflags - React-jsi - ReactCommon/turbomodule/bridging - - React-jsi (0.77.3): + - React-jsi (0.78.2): - boost - DoubleConversion - fast_float (= 6.1.4) @@ -1416,34 +1441,37 @@ PODS: - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-jsiexecutor (0.77.3): + - React-jsiexecutor (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-cxxreact (= 0.77.3) - - React-jsi (= 0.77.3) + - React-cxxreact (= 0.78.2) + - React-jsi (= 0.78.2) - React-jsinspector - - React-perflogger (= 0.77.3) - - React-jsinspector (0.77.3): + - React-perflogger (= 0.78.2) + - React-jsinspector (0.78.2): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly - React-featureflags - React-jsi - - React-perflogger (= 0.77.3) - - React-runtimeexecutor (= 0.77.3) - - React-jsitracing (0.77.3): + - React-jsinspectortracing + - React-perflogger (= 0.78.2) + - React-runtimeexecutor (= 0.78.2) + - React-jsinspectortracing (0.78.2): + - RCT-Folly + - React-jsitracing (0.78.2): - React-jsi - - React-logger (0.77.3): + - React-logger (0.78.2): - glog - - React-Mapbuffer (0.77.3): + - React-Mapbuffer (0.78.2): - glog - React-debug - - React-microtasksnativemodule (0.77.3): + - React-microtasksnativemodule (0.78.2): - hermes-engine - RCT-Folly - React-jsi @@ -1453,7 +1481,7 @@ PODS: - react-native-ble-plx (2.0.3): - MultiplatformBleAdapter (= 0.1.9) - React-Core - - react-native-blob-util (0.21.2): + - react-native-blob-util (0.21.3): - DoubleConversion - glog - hermes-engine @@ -1611,7 +1639,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context (5.2.0): + - react-native-safe-area-context (5.4.1): - DoubleConversion - glog - hermes-engine @@ -1624,8 +1652,8 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - react-native-safe-area-context/common (= 5.2.0) - - react-native-safe-area-context/fabric (= 5.2.0) + - react-native-safe-area-context/common (= 5.4.1) + - react-native-safe-area-context/fabric (= 5.4.1) - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1634,7 +1662,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context/common (5.2.0): + - react-native-safe-area-context/common (5.4.1): - DoubleConversion - glog - hermes-engine @@ -1655,7 +1683,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context/fabric (5.2.0): + - react-native-safe-area-context/fabric (5.4.1): - DoubleConversion - glog - hermes-engine @@ -1784,8 +1812,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.77.3) - - React-NativeModulesApple (0.77.3): + - React-NativeModulesApple (0.78.2): - glog - hermes-engine - React-callinvoker @@ -1796,17 +1823,18 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.77.3): + - React-perflogger (0.78.2): - DoubleConversion - RCT-Folly (= 2024.11.18.00) - - React-performancetimeline (0.77.3): + - React-performancetimeline (0.78.2): - RCT-Folly (= 2024.11.18.00) - React-cxxreact - React-featureflags + - React-jsinspectortracing - React-timing - - React-RCTActionSheet (0.77.3): - - React-Core/RCTActionSheetHeaders (= 0.77.3) - - React-RCTAnimation (0.77.3): + - React-RCTActionSheet (0.78.2): + - React-Core/RCTActionSheetHeaders (= 0.78.2) + - React-RCTAnimation (0.78.2): - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders @@ -1814,7 +1842,7 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTAppDelegate (0.77.3): + - React-RCTAppDelegate (0.78.2): - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety @@ -1826,7 +1854,6 @@ PODS: - React-featureflags - React-graphics - React-hermes - - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTFBReactNativeSpec @@ -1839,7 +1866,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon - - React-RCTBlob (0.77.3): + - React-RCTBlob (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1853,7 +1880,7 @@ PODS: - React-RCTFBReactNativeSpec - React-RCTNetwork - ReactCommon - - React-RCTFabric (0.77.3): + - React-RCTFabric (0.78.2): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) @@ -1867,7 +1894,7 @@ PODS: - React-ImageManager - React-jsi - React-jsinspector - - React-nativeconfig + - React-jsinspectortracing - React-performancetimeline - React-RCTImage - React-RCTText @@ -1876,7 +1903,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTFBReactNativeSpec (0.77.3): + - React-RCTFBReactNativeSpec (0.78.2): - hermes-engine - RCT-Folly - RCTRequired @@ -1886,7 +1913,7 @@ PODS: - React-jsiexecutor - React-NativeModulesApple - ReactCommon - - React-RCTImage (0.77.3): + - React-RCTImage (0.78.2): - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTImageHeaders @@ -1895,14 +1922,14 @@ PODS: - React-RCTFBReactNativeSpec - React-RCTNetwork - ReactCommon - - React-RCTLinking (0.77.3): - - React-Core/RCTLinkingHeaders (= 0.77.3) - - React-jsi (= 0.77.3) + - React-RCTLinking (0.78.2): + - React-Core/RCTLinkingHeaders (= 0.78.2) + - React-jsi (= 0.78.2) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.77.3) - - React-RCTNetwork (0.77.3): + - ReactCommon/turbomodule/core (= 0.78.2) + - React-RCTNetwork (0.78.2): - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders @@ -1910,7 +1937,7 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTSettings (0.77.3): + - React-RCTSettings (0.78.2): - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders @@ -1918,25 +1945,25 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTText (0.77.3): - - React-Core/RCTTextHeaders (= 0.77.3) + - React-RCTText (0.78.2): + - React-Core/RCTTextHeaders (= 0.78.2) - Yoga - - React-RCTVibration (0.77.3): + - React-RCTVibration (0.78.2): - RCT-Folly (= 2024.11.18.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-rendererconsistency (0.77.3) - - React-rendererdebug (0.77.3): + - React-rendererconsistency (0.78.2) + - React-rendererdebug (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - RCT-Folly (= 2024.11.18.00) - React-debug - - React-rncore (0.77.3) - - React-RuntimeApple (0.77.3): + - React-rncore (0.78.2) + - React-RuntimeApple (0.78.2): - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) - React-callinvoker @@ -1957,7 +1984,7 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.77.3): + - React-RuntimeCore (0.78.2): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) @@ -1972,9 +1999,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.77.3): - - React-jsi (= 0.77.3) - - React-RuntimeHermes (0.77.3): + - React-runtimeexecutor (0.78.2): + - React-jsi (= 0.78.2) + - React-RuntimeHermes (0.78.2): - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) - React-featureflags @@ -1982,10 +2009,9 @@ PODS: - React-jsi - React-jsinspector - React-jsitracing - - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.77.3): + - React-runtimescheduler (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -2000,16 +2026,16 @@ PODS: - React-runtimeexecutor - React-timing - React-utils - - React-timing (0.77.3) - - React-utils (0.77.3): + - React-timing (0.78.2) + - React-utils (0.78.2): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - React-debug - - React-jsi (= 0.77.3) - - ReactAppDependencyProvider (0.77.3): + - React-jsi (= 0.78.2) + - ReactAppDependencyProvider (0.78.2): - ReactCodegen - - ReactCodegen (0.77.3): + - ReactCodegen (0.78.2): - DoubleConversion - glog - hermes-engine @@ -2030,49 +2056,49 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.77.3): - - ReactCommon/turbomodule (= 0.77.3) - - ReactCommon/turbomodule (0.77.3): + - ReactCommon (0.78.2): + - ReactCommon/turbomodule (= 0.78.2) + - ReactCommon/turbomodule (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.77.3) - - React-cxxreact (= 0.77.3) - - React-jsi (= 0.77.3) - - React-logger (= 0.77.3) - - React-perflogger (= 0.77.3) - - ReactCommon/turbomodule/bridging (= 0.77.3) - - ReactCommon/turbomodule/core (= 0.77.3) - - ReactCommon/turbomodule/bridging (0.77.3): + - React-callinvoker (= 0.78.2) + - React-cxxreact (= 0.78.2) + - React-jsi (= 0.78.2) + - React-logger (= 0.78.2) + - React-perflogger (= 0.78.2) + - ReactCommon/turbomodule/bridging (= 0.78.2) + - ReactCommon/turbomodule/core (= 0.78.2) + - ReactCommon/turbomodule/bridging (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.77.3) - - React-cxxreact (= 0.77.3) - - React-jsi (= 0.77.3) - - React-logger (= 0.77.3) - - React-perflogger (= 0.77.3) - - ReactCommon/turbomodule/core (0.77.3): + - React-callinvoker (= 0.78.2) + - React-cxxreact (= 0.78.2) + - React-jsi (= 0.78.2) + - React-logger (= 0.78.2) + - React-perflogger (= 0.78.2) + - ReactCommon/turbomodule/core (0.78.2): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.77.3) - - React-cxxreact (= 0.77.3) - - React-debug (= 0.77.3) - - React-featureflags (= 0.77.3) - - React-jsi (= 0.77.3) - - React-logger (= 0.77.3) - - React-perflogger (= 0.77.3) - - React-utils (= 0.77.3) + - React-callinvoker (= 0.78.2) + - React-cxxreact (= 0.78.2) + - React-debug (= 0.78.2) + - React-featureflags (= 0.78.2) + - React-jsi (= 0.78.2) + - React-logger (= 0.78.2) + - React-perflogger (= 0.78.2) + - React-utils (= 0.78.2) - ReactNativeBiometrics (0.4.0): - DoubleConversion - glog @@ -2206,7 +2232,7 @@ PODS: - RNFBML (20.1.0): - React-Core - RNFBApp - - RNGestureHandler (2.23.1): + - RNGestureHandler (2.25.0): - DoubleConversion - glog - hermes-engine @@ -2276,7 +2302,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNReanimated (3.16.7): + - RNReanimated (3.17.5): - DoubleConversion - glog - hermes-engine @@ -2288,7 +2314,9 @@ PODS: - React-Fabric - React-featureflags - React-graphics + - React-hermes - React-ImageManager + - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2296,10 +2324,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated (= 3.16.7) - - RNReanimated/worklets (= 3.16.7) + - RNReanimated/reanimated (= 3.17.5) + - RNReanimated/worklets (= 3.17.5) - Yoga - - RNReanimated/reanimated (3.16.7): + - RNReanimated/reanimated (3.17.5): - DoubleConversion - glog - hermes-engine @@ -2311,7 +2339,33 @@ PODS: - React-Fabric - React-featureflags - React-graphics + - React-hermes - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNReanimated/reanimated/apple (= 3.17.5) + - Yoga + - RNReanimated/reanimated/apple (3.17.5): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2319,9 +2373,8 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated/apple (= 3.16.7) - Yoga - - RNReanimated/reanimated/apple (3.16.7): + - RNReanimated/worklets (3.17.5): - DoubleConversion - glog - hermes-engine @@ -2333,7 +2386,9 @@ PODS: - React-Fabric - React-featureflags - React-graphics + - React-hermes - React-ImageManager + - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2341,8 +2396,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - RNReanimated/worklets/apple (= 3.17.5) - Yoga - - RNReanimated/worklets (3.16.7): + - RNReanimated/worklets/apple (3.17.5): - DoubleConversion - glog - hermes-engine @@ -2354,7 +2410,9 @@ PODS: - React-Fabric - React-featureflags - React-graphics + - React-hermes - React-ImageManager + - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2363,7 +2421,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (4.6.0): + - RNScreens (4.9.1): - DoubleConversion - glog - hermes-engine @@ -2384,9 +2442,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNScreens/common (= 4.6.0) + - RNScreens/common (= 4.9.1) - Yoga - - RNScreens/common (4.6.0): + - RNScreens/common (4.9.1): - DoubleConversion - glog - hermes-engine @@ -2413,7 +2471,7 @@ PODS: - RNSound/Core (= 0.11.0) - RNSound/Core (0.11.0): - React - - RNSVG (15.11.1): + - RNSVG (15.12.1): - DoubleConversion - glog - hermes-engine @@ -2433,9 +2491,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNSVG/common (= 15.11.1) + - RNSVG/common (= 15.12.1) - Yoga - - RNSVG/common (15.11.1): + - RNSVG/common (15.12.1): - DoubleConversion - glog - hermes-engine @@ -2563,6 +2621,7 @@ DEPENDENCIES: - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) + - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`) - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) - React-logger (from `../node_modules/react-native/ReactCommon/logger`) - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) @@ -2582,7 +2641,6 @@ DEPENDENCIES: - react-native-video (from `../node_modules/react-native-video`) - react-native-view-shot (from `../node_modules/react-native-view-shot`) - react-native-webview (from `../node_modules/react-native-webview`) - - React-nativeconfig (from `../node_modules/react-native/ReactCommon`) - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) @@ -2686,7 +2744,7 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-11-25-RNv0.77.0-d4f25d534ab744866448b36ca3bf3d97c08e638c + :tag: hermes-2025-01-13-RNv0.78.0-a942ef374897d85da38e9c8904574f8376555388 MendixNative: :path: "../node_modules/mendix-native" op-sqlite: @@ -2741,6 +2799,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" + React-jsinspectortracing: + :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing" React-jsitracing: :path: "../node_modules/react-native/ReactCommon/hermes/executor/" React-logger: @@ -2779,8 +2839,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-view-shot" react-native-webview: :path: "../node_modules/react-native-webview" - React-nativeconfig: - :path: "../node_modules/react-native/ReactCommon" React-NativeModulesApple: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" React-perflogger: @@ -2895,7 +2953,7 @@ SPEC CHECKSUMS: BVLinearGradient: cb006ba232a1f3e4f341bb62c42d1098c284da70 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 - FBLazyVector: 23d8c5470c648a635893dc0956c6dbaead54b656 + FBLazyVector: e32d34492c519a2194ec9d7f5e7a79d11b73f91c Firebase: 26b040b20866a55f55eb3611b9fcf3ae64816b86 FirebaseAnalytics: f9211b719db260cc91aebee8bb539cb367d0dfd1 FirebaseCore: a2b95ae4ce7c83ceecfbbbe3b6f1cddc7415a808 @@ -2913,10 +2971,10 @@ SPEC CHECKSUMS: GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a GoogleMaps: 032f676450ba0779bd8ce16840690915f84e57ac GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15 - hermes-engine: b2187dbe13edb0db8fcb2a93a69c1987a30d98a4 + hermes-engine: 2771b98fb813fdc6f92edd7c9c0035ecabf9fee7 IQKeyboardManager: c8665b3396bd0b79402b4c573eac345a31c7d485 libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8 - MendixNative: 36190d86a65cb57b351c6396bc1349a7823206b0 + MendixNative: a55e00448d33a66d59bd4b5c5d3057123d34337c MultiplatformBleAdapter: 5a6a897b006764392f9cef785e4360f54fb9477d nanopb: 438bc412db1928dac798aa6fd75726007be04262 op-sqlite: 12554de3e1a0cb86cbad3cf1f0c50450f57d3855 @@ -2925,36 +2983,37 @@ SPEC CHECKSUMS: PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851 QRCodeReader.swift: 373a389fe9a22d513c879a32a6f647c58f4ef572 RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82 - RCTDeprecation: 6ee92578d332db1d4e03267d3ae98bcf8b780863 - RCTRequired: 5b3da0e0f91fddda935574b81748c3e3d3649ee7 - RCTTypeSafety: 870cb072be3d3f310ecec897c3d297a931f8f7e1 - React: 535fa5014fb1743f6654a980acb16dae339e1944 - React-callinvoker: dd1ecd51f8d3c76a551afdf6dab6d51c1ead5501 - React-Core: a3e36c059a195bd213d005db36c9e68957b78632 - React-CoreModules: 46467a2b34b053eb7262104e07bf5d835a9afe77 - React-cxxreact: 500e7b011a14eeefdcf6c0eb982fe4db055c2670 - React-debug: 41315631a01cf5cc3c9498482b97be21c49f8e8d - React-defaultsnativemodule: a06364257949e77dc39bcfd08e2d801c189bb58c - React-domnativemodule: dcda8a2b62bb34ed5db94470a3a72f32a76e1e31 - React-Fabric: dc1d3aa4b6a92e4a703c02ca6c4add312754eb84 - React-FabricComponents: 451f7b72aa80001520a20747b7b1e21350d6fba8 - React-FabricImage: 15c3bfe577a60c492134519219627316fb48af05 - React-featureflags: 08f06c820a37b29ed3ef9dddc6763c086339bc28 - React-featureflagsnativemodule: 3f6b19ac469a5d26e3a52e5198735c1799f1e324 - React-graphics: df8448a604e8fd03325e0f3d760b13e57416871c - React-hermes: 67f3ee00fdbe085e722fd89811073678ba28c10a - React-idlecallbacksnativemodule: 26de008466429c4a6feb772cde37d3eda5c1e045 - React-ImageManager: 52a8c48c4c7c5a8124e8c363693bd2908b01c5f6 - React-jserrorhandler: faa483d54dd358b11e81adcd5e6373da6030ed70 - React-jsi: d5332d79759159a0127348d9b20cc90527dd40e8 - React-jsiexecutor: 72c8df1af2c18736f6685cce4205c480f3783039 - React-jsinspector: e444c5725dbb31aa7ce556d972511f8997b38bc5 - React-jsitracing: 955646960c72c03e6e87df8706cab6bcdf960042 - React-logger: a23563f96a622637d7cce687bdf304929104effd - React-Mapbuffer: 1864935968d15b9b73d8e413d29c780f0ab50038 - React-microtasksnativemodule: 3b784cf40f7c3c9500b9a5f9e4eec5c9bbfbef8f + RCTDeprecation: be794de7dc6ed8f9f7fbf525f86e7651b8b68746 + RCTRequired: a83787b092ec554c2eb6019ff3f5b8d125472b3b + RCTTypeSafety: 48ad3c858926b1c46f46a81a58822b476e178e2c + React: 3b5754191f1b65f1dbc52fbea7959c3d2d9e39c9 + React-callinvoker: 6beeaf4c7db11b6cc953fac45f2c76e3fb125013 + React-Core: 8a10ac9de53373a3ecb5dfcbcf56df1d3dad0861 + React-CoreModules: af6999b35c7c01b0e12b59d27f3e054e13da43b1 + React-cxxreact: 833f00155ce8c2fda17f6d286f8eaeff2ececc69 + React-debug: 440175830c448e7e53e61ebb8d8468c3256b645e + React-defaultsnativemodule: a970effe18fe50bdbbb7115c3297f873b666d0d4 + React-domnativemodule: 45f886342a724e61531b18fba1859bb6782e5d62 + React-Fabric: 69f1881f2177a8512304a64157943548ab6df0cf + React-FabricComponents: f54111c8e2439fc273ab07483e3a7054ca1e75af + React-FabricImage: 9ad2619dfe8c386d79e8aaa87da6e8f018ab9592 + React-featureflags: b9cf9b35baca1c7f20c06a104ffc325a02752faa + React-featureflagsnativemodule: 7f1bc76d1d2c5bede5e753b8d188dbde7c59b12f + React-graphics: 069e0d0b31ed1e80feb023ad4f7e97f00e84f7b9 + React-hermes: 63df5ac5a944889c8758a6213b39ed825863adb7 + React-idlecallbacksnativemodule: 4c700bd7c0012adf904929075a79418b828b5ffc + React-ImageManager: 5d1ba8a7bae44ebba43fc93da64937c713d42941 + React-jserrorhandler: 0defd58f8bb797cdd0a820f733bf42d8bee708ce + React-jsi: 99d6207ec802ad73473a0dad3c9ad48cd98463f6 + React-jsiexecutor: 8c8097b4ba7e7f480582d6e6238b01be5dcc01c0 + React-jsinspector: ea148ec45bc7ff830e443383ea715f9780c15934 + React-jsinspectortracing: 46bb2841982f01e7b63eaab98140fa1de5b2a1db + React-jsitracing: c1063fc2233960d1c8322291e74bca51d25c10d7 + React-logger: 763728cf4eebc9c5dc9bfc3649e22295784f69f3 + React-Mapbuffer: 63278529b5cf531a7eaf8fc71244fabb062ca90c + React-microtasksnativemodule: 6a39463c32ce831c4c2aa8469273114d894b6be9 react-native-ble-plx: 2dd8780ee8d34c60399aaa897249ed1860ebef10 - react-native-blob-util: f82bbc6f071231ae76e1c03b77290de1781df313 + react-native-blob-util: 1df8ef7431afc5ed0b36df0e487871efd8a2c464 react-native-cameraroll: 4cc4ad5c832894a7729978900b3b3a75f6ed756c react-native-file-viewer-turbo: 6f1d6e33cebe8916c2919c0e7c5b41c9309646f0 react-native-geocoder: bc977303c9c53cce36bcdb3c6f17e6832f86beb6 @@ -2964,39 +3023,38 @@ SPEC CHECKSUMS: react-native-maps: deb2adbdf309b622f15055b72b8742054929c740 react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187 react-native-pager-view: 932eb80f9448b463b63badae42dd20c11f3e37dd - react-native-safe-area-context: 7e513d737b0b5c1d10bbe0e5fcc9f925a7be144c + react-native-safe-area-context: 9d7528d2e8fce82d20cb0b643c8be34a4ad57464 react-native-video: 7122a2b9397bf722709321eac0630e8f59a404e7 react-native-view-shot: a38d952d5c7103b79a67c8aa82da95f98be6e5c2 react-native-webview: 449c3f27cdb926086a5eff7993421fd096cc5ae3 - React-nativeconfig: f77b4627803bf7886a1f2e96b33b8af34e583cc4 - React-NativeModulesApple: dfa86c79c621f2a9cdb39636570c2e1623b71367 - React-perflogger: 1f83401f01544142b32151ef6c66870455c64994 - React-performancetimeline: 514430bf73208debfb0b9981fdab0e3e67987447 - React-RCTActionSheet: f8f5545f473a87a8ab124046fe58905b82c55322 - React-RCTAnimation: bb5332589ee135a4b3e06f9475659ae73a36f669 - React-RCTAppDelegate: 56493d143af24c5d728880adcf7849b3deb864e4 - React-RCTBlob: 9305f10874660b7d7bd02f6567e1b97c29b5cc43 - React-RCTFabric: c116c07d3d57e7bd03d64e445f43b33cd57a1b51 - React-RCTFBReactNativeSpec: 87fc0066242c08a7b7d03297d5ea803ac0df6575 - React-RCTImage: f099c09decb34b6849518e85aa8cd6318381ed98 - React-RCTLinking: ab70f4b60e21b0abb8c2adc58ae0460cffecdd8f - React-RCTNetwork: ba84704fa893dcc090d5028b932ed049332b9e6f - React-RCTSettings: bad043f6652f2641fccf9654c3f789e970ca63c8 - React-RCTText: bed66ec05d4dedfc48d6db8d3cf60e714b2d010d - React-RCTVibration: 22179961d1aadd7996355785c490c134037de1d9 - React-rendererconsistency: 9f5292176e629370402cbfe4e88c19b3c68e79a3 - React-rendererdebug: 1d63129046b7a8624f0a5d2cb4cc4a1dda41eeaf - React-rncore: 8a77fbb638aab2ef0a3e4e122ddc5310a8299699 - React-RuntimeApple: cf68b82dc184c7f8855aa6bae298b4b24880d549 - React-RuntimeCore: 98ab2e46540d3560712334257b01d6305c0cb422 - React-runtimeexecutor: 2dc71d251ce5630b11d384bc80d7fbb9d9d93623 - React-RuntimeHermes: 7cc49896e48214abee8f2a9bf91e7a91606ff018 - React-runtimescheduler: a51c3e414e288f3ab876b8b6e50e89c805ffd704 - React-timing: 7d80ad4297c57ec4cb49da4a5db1b82f93fedb2a - React-utils: 6b632afea2c4ec4b782497fb61af859a5b1b355f - ReactAppDependencyProvider: 31015410a4a53b9fd0a908ad4d6e3e2b9a25086a - ReactCodegen: eac5d74d85dff515b48a5c36f154bc4128f217e6 - ReactCommon: bf4612cba0fa356b529385029f470d5529dddde4 + React-NativeModulesApple: fd0545efbb7f936f78edd15a6564a72d2c34bb32 + React-perflogger: 5f8fa36a8e168fb355efe72099efe77213bc2ac6 + React-performancetimeline: 8c0ecfa1ae459cc5678a65f95ac3bf85644d6feb + React-RCTActionSheet: 2ef95837e89b9b154f13cd8401f9054fc3076aff + React-RCTAnimation: 46abefd5acfda7e6629f9e153646deecc70babd2 + React-RCTAppDelegate: 7e58e0299e304cceee3f7019fa77bc6990f66b22 + React-RCTBlob: f68c63a801ef1d27e83c4011e3b083cc86a200d7 + React-RCTFabric: c59f41d0c4edbaac8baa232731ca09925ae4dda7 + React-RCTFBReactNativeSpec: 3240b9b8d792aa4be0fb85c9898fc183125ba8de + React-RCTImage: 34e0bba1507e55f1c614bd759eb91d9be48c8c5b + React-RCTLinking: a0b6c9f4871c18b0b81ea952f43e752718bd5f1d + React-RCTNetwork: bdafd661ac2b20d23b779e45bf7ac3e4c8bd1b60 + React-RCTSettings: 98aa5163796f43789314787b584a84eba47787a9 + React-RCTText: 424a274fc9015b29de89cf3cbcdf4dd85dd69f83 + React-RCTVibration: 92d9875a955b0adb34b4b773528fdbbbc5addd6c + React-rendererconsistency: 5ac4164ec18cfdd76ed5f864dbfdc56a5a948bc9 + React-rendererdebug: 710dbd7990e355852c786aa6bc7753f6028f357a + React-rncore: 0bace3b991d8843bb5b57c5f2301ec6e9c94718b + React-RuntimeApple: 701ec44a8b5d863ee9b6a2b2447b6a26bb6805a1 + React-RuntimeCore: a82767065b9a936b05e209dc6987bc1ea9eb5d2d + React-runtimeexecutor: 876dfc1d8daa819dfd039c40f78f277c5a3e66a6 + React-RuntimeHermes: e7a051fd91cab8849df56ac917022ef6064ad621 + React-runtimescheduler: c544141f2124ee3d5f3d5bf0d69f4029a61a68b0 + React-timing: 1ee3572c398f5579c9df5bf76aacddf5683ff74e + React-utils: 18703928768cb37e70cf2efff09def12d74a399e + ReactAppDependencyProvider: 4893bde33952f997a323eb1a1ee87a72764018ff + ReactCodegen: 99ea3536c05be3c18d0c517acb56b5a6d726fc7b + ReactCommon: 865ebe76504a95e115b6229dd00a31e56d2d4bfe ReactNativeBiometrics: 3a9a0c23f1a5158980de2474c1cfda6b19085dca RNBootSplash: 6a83473bb3c1e6c2bfd36a51e5c6e1d343ec76b9 RNCalendarEvents: 1a67c97e7427cf16fbf60adbb4c11c0d62082eaa @@ -3010,15 +3068,15 @@ SPEC CHECKSUMS: RNFBCrashlytics: c6fb94c74a60c96a2aab77a1ace11ae85848d65e RNFBMessaging: 6d244fcbdf8489869facfefb4ddf17386e234f68 RNFBML: 08783a26be74283e4f3279730afdbdec9ae40c8e - RNGestureHandler: 63273d6c9936df3da2461766615eade82284adac + RNGestureHandler: dcb1b1db024f3744b03af56d132f4f72c4c27195 RNInAppBrowser: 031138591f9cbf57e987d0fe97f4e73d5fc7524b RNLocalize: 22c9512d077379783fb41a4b47761ebe7cf87265 RNNotifee: 5e3b271e8ea7456a36eec994085543c9adca9168 RNPermissions: 11dc7a417a841bc1312f6e2599871565c5bbb882 - RNReanimated: 8a4ea733f88a33379150eb2e73b375e14de81e84 - RNScreens: 5a1573ceb1a13b2d0663cbfb42cb4aa8803554eb + RNReanimated: 505a98a0122d5e3bbeb0fb91e93dfb67d8112b84 + RNScreens: 0d4cb9afe052607ad0aa71f645a88bb7c7f2e64c RNSound: 436aa4de81ae87b90e1781b5dd9247df3aa4622a - RNSVG: 2089e8b3a145acb2f392017279790f007f934567 + RNSVG: 8ad5c94593e5e4a6e133e6934e2188e3c688d27a RNSwanBrowser: ddd9ff014527de377553241bb87ff2c6da6e8fa4 RNVectorIcons: bd818296a51dc2bb8c3bd97a3ca399df1afe216d SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d @@ -3026,8 +3084,8 @@ SPEC CHECKSUMS: SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SSZipArchive: 8a6ee5677c8e304bebc109e39cf0da91ccef22ea VisionCamera: 9a8f98ae344fe5d148f84bb45829f9e4caab9d2f - Yoga: 92f3bb322c40a86b7233b815854730442e01b8c4 + Yoga: e14bad835e12b6c7e2260fc320bd00e0f4b45add -PODFILE CHECKSUM: 44e869e11f27b48f34089141c70976e0123ac469 +PODFILE CHECKSUM: 31efe3f3eb2c09c2c2cd75ac7556c032a5324d1f COCOAPODS: 1.16.2 diff --git a/ios/developerapp.xcodeproj/project.pbxproj b/ios/developerapp.xcodeproj/project.pbxproj index 70505ae..52e79da 100644 --- a/ios/developerapp.xcodeproj/project.pbxproj +++ b/ios/developerapp.xcodeproj/project.pbxproj @@ -812,7 +812,6 @@ FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", - "${SRCROOT}/../node_modules/@mendix/native/ios", ); GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", @@ -826,7 +825,6 @@ HEADER_SEARCH_PATHS = ( "$(inherited)", "$(SRCROOT)/../node_modules/react-native-sqlite-storage/src/ios", - "${SRCROOT}/../node_modules/@mendix/native/ios/**", ); INFOPLIST_FILE = DeveloperApp/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Make It Native"; @@ -840,7 +838,6 @@ "$(SDKROOT)/usr/lib/swift", "$(inherited)", "$(PROJECT_DIR)", - "${SRCROOT}/../node_modules/@mendix/native/ios", ); MARKETING_VERSION = 11.5.0; OTHER_LDFLAGS = ( @@ -853,10 +850,10 @@ PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = NO; - SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/Firebase\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal\" \"${PODS_CONFIGURATION_BUILD_DIR}/Google-Maps-iOS-Utils\" \"${PODS_CONFIGURATION_BUILD_DIR}/MultiplatformBleAdapter\" \"${PODS_CONFIGURATION_BUILD_DIR}/QRCodeReader.swift\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/react-native-geolocation-service\" \"${SRCROOT}/../node_modules/@mendix/native/ios\""; + SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/Firebase\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal\" \"${PODS_CONFIGURATION_BUILD_DIR}/Google-Maps-iOS-Utils\" \"${PODS_CONFIGURATION_BUILD_DIR}/MultiplatformBleAdapter\" \"${PODS_CONFIGURATION_BUILD_DIR}/QRCodeReader.swift\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/react-native-geolocation-service\""; SWIFT_OBJC_BRIDGING_HEADER = "DeveloperApp/DeveloperApp-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; }; @@ -878,7 +875,6 @@ FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", - "${SRCROOT}/../node_modules/@mendix/native/ios", ); GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", @@ -891,7 +887,6 @@ HEADER_SEARCH_PATHS = ( "$(inherited)", "$(SRCROOT)/../node_modules/react-native-sqlite-storage/src/ios", - "${SRCROOT}/../node_modules/@mendix/native/ios/**", ); INFOPLIST_FILE = DeveloperApp/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Make It Native"; @@ -905,7 +900,6 @@ "$(SDKROOT)/usr/lib/swift", "$(inherited)", "$(PROJECT_DIR)", - "${SRCROOT}/../node_modules/@mendix/native/ios", ); MARKETING_VERSION = 11.5.0; OTHER_LDFLAGS = ( @@ -918,9 +912,9 @@ PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = NO; - SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/Firebase\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal\" \"${PODS_CONFIGURATION_BUILD_DIR}/Google-Maps-iOS-Utils\" \"${PODS_CONFIGURATION_BUILD_DIR}/MultiplatformBleAdapter\" \"${PODS_CONFIGURATION_BUILD_DIR}/QRCodeReader.swift\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/react-native-geolocation-service\" \"${SRCROOT}/../node_modules/@mendix/native/ios\""; + SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/Firebase\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal\" \"${PODS_CONFIGURATION_BUILD_DIR}/Google-Maps-iOS-Utils\" \"${PODS_CONFIGURATION_BUILD_DIR}/MultiplatformBleAdapter\" \"${PODS_CONFIGURATION_BUILD_DIR}/QRCodeReader.swift\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/react-native-geolocation-service\""; SWIFT_OBJC_BRIDGING_HEADER = "DeveloperApp/DeveloperApp-Bridging-Header.h"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; }; @@ -979,7 +973,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.4; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; LD = ""; LDPLUSPLUS = ""; MTL_ENABLE_DEBUG_INFO = YES; @@ -1043,7 +1037,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.4; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; LD = ""; LDPLUSPLUS = ""; MTL_ENABLE_DEBUG_INFO = NO; @@ -1107,7 +1101,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.4; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; LD = ""; LDPLUSPLUS = ""; MTL_ENABLE_DEBUG_INFO = NO; @@ -1138,7 +1132,6 @@ FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", - "${SRCROOT}/../node_modules/@mendix/native/ios", ); GCC_PREPROCESSOR_DEFINITIONS = ( "ENABLE_PACKAGER_CONNECTION=0", @@ -1156,7 +1149,6 @@ HEADER_SEARCH_PATHS = ( "$(inherited)", "$(SRCROOT)/../node_modules/react-native-sqlite-storage/src/ios", - "${SRCROOT}/../node_modules/@mendix/native/ios/**", ); INFOPLIST_FILE = DeveloperApp/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Make It Native"; @@ -1170,7 +1162,6 @@ "$(SDKROOT)/usr/lib/swift", "$(inherited)", "$(PROJECT_DIR)", - "${SRCROOT}/../node_modules/@mendix/native/ios", ); MARKETING_VERSION = 11.5.0; OTHER_LDFLAGS = ( @@ -1182,9 +1173,9 @@ PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = NO; - SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/Firebase\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal\" \"${PODS_CONFIGURATION_BUILD_DIR}/Google-Maps-iOS-Utils\" \"${PODS_CONFIGURATION_BUILD_DIR}/MultiplatformBleAdapter\" \"${PODS_CONFIGURATION_BUILD_DIR}/QRCodeReader.swift\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/react-native-geolocation-service\" \"${SRCROOT}/../node_modules/@mendix/native/ios\""; + SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/Firebase\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics\" \"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal\" \"${PODS_CONFIGURATION_BUILD_DIR}/Google-Maps-iOS-Utils\" \"${PODS_CONFIGURATION_BUILD_DIR}/MultiplatformBleAdapter\" \"${PODS_CONFIGURATION_BUILD_DIR}/QRCodeReader.swift\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/react-native-geolocation-service\""; SWIFT_OBJC_BRIDGING_HEADER = "DeveloperApp/DeveloperApp-Bridging-Header.h"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; }; diff --git a/package-lock.json b/package-lock.json index 7f36a2b..0538398 100644 --- a/package-lock.json +++ b/package-lock.json @@ -477,13 +477,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz", - "integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "license": "MIT", "dependencies": { - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.7" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -3509,15 +3509,6 @@ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "license": "MIT" }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/b4a": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.3.tgz", @@ -3925,9 +3916,10 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5402,18 +5394,18 @@ "license": "MIT" }, "node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, + "license": "MIT", "dependencies": { - "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/fs.realpath": { @@ -6357,9 +6349,9 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -6415,15 +6407,6 @@ } } }, - "node_modules/jscodeshift/node_modules/tmp": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", - "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", - "license": "MIT", - "engines": { - "node": ">=14.14" - } - }, "node_modules/jsesc": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", @@ -7272,9 +7255,10 @@ } }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -7507,9 +7491,9 @@ "license": "MIT" }, "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.3.tgz", + "integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==", "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" @@ -7740,15 +7724,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -7842,25 +7817,25 @@ } }, "node_modules/patch-package": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", - "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.1.tgz", + "integrity": "sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw==", "dev": true, + "license": "MIT", "dependencies": { "@yarnpkg/lockfile": "^1.1.0", "chalk": "^4.1.2", "ci-info": "^3.7.0", "cross-spawn": "^7.0.3", "find-yarn-workspace-root": "^2.0.0", - "fs-extra": "^9.0.0", + "fs-extra": "^10.0.0", "json-stable-stringify": "^1.0.2", "klaw-sync": "^6.0.0", "minimist": "^1.2.6", "open": "^7.4.2", - "rimraf": "^2.6.3", "semver": "^7.5.3", "slash": "^2.0.0", - "tmp": "^0.0.33", + "tmp": "^0.2.4", "yaml": "^2.2.2" }, "bin": { @@ -7871,19 +7846,6 @@ "npm": ">5" } }, - "node_modules/patch-package/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/patch-package/node_modules/slash": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", @@ -8448,18 +8410,18 @@ } }, "node_modules/react-native-blob-util/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/react-native-blob-util/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", @@ -8620,9 +8582,9 @@ } }, "node_modules/react-native-bootsplash/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", @@ -9985,11 +9947,12 @@ } }, "node_modules/snyk": { - "version": "1.1291.1", - "resolved": "https://registry.npmjs.org/snyk/-/snyk-1.1291.1.tgz", - "integrity": "sha512-a+phPmN0HrXzf81fx2qcaAnbZ7rK3WG1OhOHXoBHvRUIlAKIsoAozDSlWPSs0OuQI1hpQL/15O7xUFo3kDwrew==", + "version": "1.1301.1", + "resolved": "https://registry.npmjs.org/snyk/-/snyk-1.1301.1.tgz", + "integrity": "sha512-EYgBCi0+diYgqiibdwyUowBCcowKDGcfqXkZoBWG3qNdcLVZqjq7ogOEKwOcbNern7doDzm2TSZtbRCu+SpVMQ==", "dev": true, "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { "@sentry/node": "^7.36.0", "global-agent": "^3.0.0" @@ -10440,15 +10403,12 @@ "license": "MIT" }, "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "license": "MIT", "engines": { - "node": ">=0.6.0" + "node": ">=14.14" } }, "node_modules/tmpl": {