diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
deleted file mode 100644
index 62d7d130c6b..00000000000
--- a/android/app/src/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 4fb70ab1a89..7581d50c724 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -28,6 +28,7 @@
android:requestLegacyExternalStorage="true"
android:supportsRtl="true"
android:theme="@style/AppTheme"
+ android:usesCleartextTraffic="${usesCleartextTraffic}"
android:hardwareAccelerated="true"
tools:replace="android:allowBackup">
{
+ onPress: async (password?: string) => {
try {
const certificatePath = getPath(name);
await FileSystem.copyAsync({ from: uri, to: certificatePath });
diff --git a/app/lib/methods/sendFileMessage/utils.ts b/app/lib/methods/sendFileMessage/utils.ts
index 72832444c72..71446326bc6 100644
--- a/app/lib/methods/sendFileMessage/utils.ts
+++ b/app/lib/methods/sendFileMessage/utils.ts
@@ -1,7 +1,7 @@
import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
import isEmpty from 'lodash/isEmpty';
import { Alert } from 'react-native';
-import * as FileSystem from 'expo-file-system';
+import * as FileSystem from 'expo-file-system/legacy';
import { getUploadByPath } from '../../database/services/Upload';
import { type IUpload, type TUploadModel } from '../../../definitions';
diff --git a/app/views/AttachmentView.tsx b/app/views/AttachmentView.tsx
index 7f30a821a10..fb756cffd93 100644
--- a/app/views/AttachmentView.tsx
+++ b/app/views/AttachmentView.tsx
@@ -5,7 +5,7 @@ import React from 'react';
import { PermissionsAndroid, useWindowDimensions, View } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { shallowEqual } from 'react-redux';
-import * as FileSystem from 'expo-file-system';
+import * as FileSystem from 'expo-file-system/legacy';
import { isImageBase64 } from '../lib/methods/isImageBase64';
import RCActivityIndicator from '../containers/ActivityIndicator';
diff --git a/app/views/ShareListView/index.tsx b/app/views/ShareListView/index.tsx
index c152e18023f..3f5868b2966 100644
--- a/app/views/ShareListView/index.tsx
+++ b/app/views/ShareListView/index.tsx
@@ -2,7 +2,7 @@ import React from 'react';
import { type Dispatch } from 'redux';
import { type NativeStackNavigationProp } from '@react-navigation/native-stack';
import { BackHandler, FlatList, Keyboard, type NativeEventSubscription, Text, View } from 'react-native';
-import * as FileSystem from 'expo-file-system';
+import * as FileSystem from 'expo-file-system/legacy';
import { connect } from 'react-redux';
import * as mime from 'react-native-mime-types';
import { dequal } from 'dequal';
@@ -101,7 +101,9 @@ class ShareListView extends React.Component {
const { mediaUris } = shareExtensionParams;
if (mediaUris) {
try {
- const info = await Promise.all(mediaUris.split(',').map((uri: string) => FileSystem.getInfoAsync(uri, { size: true })));
+ const info = (await Promise.all(
+ mediaUris.split(',').map((uri: string) => FileSystem.getInfoAsync(uri))
+ )) as FileSystem.FileInfo[];
const attachments = info.map(file => {
if (!file.exists) {
return null;
diff --git a/ios/NotificationService/Info.plist b/ios/NotificationService/Info.plist
index 9d959502934..df92465cbf5 100644
--- a/ios/NotificationService/Info.plist
+++ b/ios/NotificationService/Info.plist
@@ -4,8 +4,6 @@
AppGroup
group.ios.chat.rocket
- IS_OFFICIAL
-
CFBundleDevelopmentRegion
$(DEVELOPMENT_LANGUAGE)
CFBundleDisplayName
@@ -24,6 +22,8 @@
$(MARKETING_VERSION)
CFBundleVersion
1
+ IS_OFFICIAL
+
KeychainGroup
$(AppIdentifierPrefix)chat.rocket.reactnative
NSExtension
@@ -33,5 +33,7 @@
NSExtensionPrincipalClass
$(PRODUCT_MODULE_NAME).NotificationService
+ RCTNewArchEnabled
+
diff --git a/ios/Podfile.lock b/ios/Podfile.lock
index 34cc3e5cd90..900d6c3e1b1 100644
--- a/ios/Podfile.lock
+++ b/ios/Podfile.lock
@@ -1,10 +1,14 @@
PODS:
- boost (1.84.0)
- BugsnagReactNative (8.4.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -12,7 +16,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -23,25 +26,30 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- BVLinearGradient (2.6.2):
- React-Core
- DoubleConversion (1.1.6)
- EXApplication (7.0.8):
- ExpoModulesCore
- - EXAV (15.1.3):
+ - EXAV (16.0.7):
- ExpoModulesCore
- ReactCommon/turbomodule/core
- - EXConstants (17.1.5):
+ - EXConstants (18.0.12):
- ExpoModulesCore
- EXNotifications (0.32.11):
- ExpoModulesCore
- - Expo (53.0.7):
+ - Expo (54.0.22):
+ - boost
- DoubleConversion
- ExpoModulesCore
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -49,7 +57,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -62,41 +69,46 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - ExpoAppleAuthentication (7.2.3):
+ - ExpoAppleAuthentication (8.0.7):
- ExpoModulesCore
- - ExpoAsset (11.1.5):
+ - ExpoAsset (12.0.12):
- ExpoModulesCore
- - ExpoCamera (16.1.5):
+ - ExpoCamera (17.0.9):
- ExpoModulesCore
- ZXingObjC/OneD
- ZXingObjC/PDF417
- ExpoDevice (8.0.10):
- ExpoModulesCore
- - ExpoDocumentPicker (13.1.4):
+ - ExpoDocumentPicker (14.0.8):
- ExpoModulesCore
- - ExpoFileSystem (18.1.7):
+ - ExpoFileSystem (19.0.17):
- ExpoModulesCore
- - ExpoFont (13.3.1):
+ - ExpoFont (14.0.9):
- ExpoModulesCore
- - ExpoHaptics (14.1.3):
+ - ExpoHaptics (15.0.7):
- ExpoModulesCore
- - ExpoImage (2.3.2):
+ - ExpoImage (3.0.10):
- ExpoModulesCore
- libavif/libdav1d
- SDWebImage (~> 5.21.0)
- SDWebImageAVIFCoder (~> 0.11.0)
- SDWebImageSVGCoder (~> 1.7.0)
- SDWebImageWebPCoder (~> 0.14.6)
- - ExpoKeepAwake (14.1.3):
+ - ExpoKeepAwake (15.0.7):
- ExpoModulesCore
- - ExpoLocalAuthentication (16.0.3):
+ - ExpoLocalAuthentication (17.0.7):
- ExpoModulesCore
- - ExpoModulesCore (2.3.12):
+ - ExpoModulesCore (3.0.24):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -104,7 +116,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-jsinspector
@@ -116,15 +127,16 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - ExpoSystemUI (5.0.7):
+ - ExpoSystemUI (6.0.8):
- ExpoModulesCore
- - ExpoVideoThumbnails (9.1.2):
+ - ExpoVideoThumbnails (10.0.7):
- ExpoModulesCore
- - ExpoWebBrowser (14.1.5):
+ - ExpoWebBrowser (15.0.9):
- ExpoModulesCore
- - fast_float (6.1.4)
- - FBLazyVector (0.79.4)
+ - fast_float (8.0.0)
+ - FBLazyVector (0.81.5)
- Firebase/AnalyticsWithoutAdIdSupport (11.10.0):
- Firebase/CoreOnly
- FirebaseAnalytics/WithoutAdIdSupport (~> 11.10.0)
@@ -164,7 +176,7 @@ PODS:
- GoogleUtilities/Environment (~> 8.0)
- GoogleUtilities/UserDefaults (~> 8.0)
- PromisesObjC (~> 2.4)
- - FirebaseRemoteConfigInterop (11.10.0)
+ - FirebaseRemoteConfigInterop (11.15.0)
- FirebaseSessions (11.10.0):
- FirebaseCore (~> 11.10.0)
- FirebaseCoreExtension (~> 11.10.0)
@@ -185,36 +197,36 @@ PODS:
- GoogleDataTransport (10.1.0):
- nanopb (~> 3.30910.0)
- PromisesObjC (~> 2.4)
- - GoogleUtilities/AppDelegateSwizzler (8.0.2):
+ - GoogleUtilities/AppDelegateSwizzler (8.1.0):
- GoogleUtilities/Environment
- GoogleUtilities/Logger
- GoogleUtilities/Network
- GoogleUtilities/Privacy
- - GoogleUtilities/Environment (8.0.2):
+ - GoogleUtilities/Environment (8.1.0):
- GoogleUtilities/Privacy
- - GoogleUtilities/Logger (8.0.2):
+ - GoogleUtilities/Logger (8.1.0):
- GoogleUtilities/Environment
- GoogleUtilities/Privacy
- - GoogleUtilities/MethodSwizzler (8.0.2):
+ - GoogleUtilities/MethodSwizzler (8.1.0):
- GoogleUtilities/Logger
- GoogleUtilities/Privacy
- - GoogleUtilities/Network (8.0.2):
+ - GoogleUtilities/Network (8.1.0):
- GoogleUtilities/Logger
- "GoogleUtilities/NSData+zlib"
- GoogleUtilities/Privacy
- GoogleUtilities/Reachability
- - "GoogleUtilities/NSData+zlib (8.0.2)":
+ - "GoogleUtilities/NSData+zlib (8.1.0)":
- GoogleUtilities/Privacy
- - GoogleUtilities/Privacy (8.0.2)
- - GoogleUtilities/Reachability (8.0.2):
+ - GoogleUtilities/Privacy (8.1.0)
+ - GoogleUtilities/Reachability (8.1.0):
- GoogleUtilities/Logger
- GoogleUtilities/Privacy
- - GoogleUtilities/UserDefaults (8.0.2):
+ - GoogleUtilities/UserDefaults (8.1.0):
- GoogleUtilities/Logger
- GoogleUtilities/Privacy
- - hermes-engine (0.79.4):
- - hermes-engine/Pre-built (= 0.79.4)
- - hermes-engine/Pre-built (0.79.4)
+ - hermes-engine (0.81.5):
+ - hermes-engine/Pre-built (= 0.81.5)
+ - hermes-engine/Pre-built (0.81.5)
- libavif/core (0.11.1)
- libavif/libdav1d (0.11.1):
- libavif/core
@@ -233,10 +245,14 @@ PODS:
- libwebp/webp (1.5.0):
- libwebp/sharpyuv
- MobileCrypto (0.2.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -244,7 +260,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -255,6 +270,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- nanopb (3.30910.0):
- nanopb/decode (= 3.30910.0)
@@ -267,64 +283,76 @@ PODS:
- RCT-Folly (2024.11.18.00):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
+ - fast_float (= 8.0.0)
- fmt (= 11.0.2)
- glog
- RCT-Folly/Default (= 2024.11.18.00)
- RCT-Folly/Default (2024.11.18.00):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
+ - fast_float (= 8.0.0)
- fmt (= 11.0.2)
- glog
- RCT-Folly/Fabric (2024.11.18.00):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
+ - fast_float (= 8.0.0)
- fmt (= 11.0.2)
- glog
- - RCTDeprecation (0.79.4)
- - RCTRequired (0.79.4)
- - RCTTypeSafety (0.79.4):
- - FBLazyVector (= 0.79.4)
- - RCTRequired (= 0.79.4)
- - React-Core (= 0.79.4)
- - React (0.79.4):
- - React-Core (= 0.79.4)
- - React-Core/DevSupport (= 0.79.4)
- - React-Core/RCTWebSocket (= 0.79.4)
- - React-RCTActionSheet (= 0.79.4)
- - React-RCTAnimation (= 0.79.4)
- - React-RCTBlob (= 0.79.4)
- - React-RCTImage (= 0.79.4)
- - React-RCTLinking (= 0.79.4)
- - React-RCTNetwork (= 0.79.4)
- - React-RCTSettings (= 0.79.4)
- - React-RCTText (= 0.79.4)
- - React-RCTVibration (= 0.79.4)
- - React-callinvoker (0.79.4)
- - React-Core (0.79.4):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation (0.81.5)
+ - RCTRequired (0.81.5)
+ - RCTTypeSafety (0.81.5):
+ - FBLazyVector (= 0.81.5)
+ - RCTRequired (= 0.81.5)
+ - React-Core (= 0.81.5)
+ - React (0.81.5):
+ - React-Core (= 0.81.5)
+ - React-Core/DevSupport (= 0.81.5)
+ - React-Core/RCTWebSocket (= 0.81.5)
+ - React-RCTActionSheet (= 0.81.5)
+ - React-RCTAnimation (= 0.81.5)
+ - React-RCTBlob (= 0.81.5)
+ - React-RCTImage (= 0.81.5)
+ - React-RCTLinking (= 0.81.5)
+ - React-RCTNetwork (= 0.81.5)
+ - React-RCTSettings (= 0.81.5)
+ - React-RCTText (= 0.81.5)
+ - React-RCTVibration (= 0.81.5)
+ - React-callinvoker (0.81.5)
+ - React-Core (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.79.4)
+ - React-Core/Default (= 0.81.5)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/CoreModulesHeaders (0.79.4):
+ - React-Core/CoreModulesHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -333,16 +361,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/Default (0.79.4):
+ - React-Core/Default (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-cxxreact
- React-featureflags
@@ -350,35 +385,49 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/DevSupport (0.79.4):
+ - React-Core/DevSupport (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.79.4)
- - React-Core/RCTWebSocket (= 0.79.4)
+ - React-Core/Default (= 0.81.5)
+ - React-Core/RCTWebSocket (= 0.81.5)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTActionSheetHeaders (0.79.4):
+ - React-Core/RCTActionSheetHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -387,16 +436,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTAnimationHeaders (0.79.4):
+ - React-Core/RCTAnimationHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -405,16 +461,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTBlobHeaders (0.79.4):
+ - React-Core/RCTBlobHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -423,16 +486,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTImageHeaders (0.79.4):
+ - React-Core/RCTImageHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -441,16 +511,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTLinkingHeaders (0.79.4):
+ - React-Core/RCTLinkingHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -459,16 +536,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTNetworkHeaders (0.79.4):
+ - React-Core/RCTNetworkHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -477,16 +561,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTSettingsHeaders (0.79.4):
+ - React-Core/RCTSettingsHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -495,16 +586,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTTextHeaders (0.79.4):
+ - React-Core/RCTTextHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -513,16 +611,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTVibrationHeaders (0.79.4):
+ - React-Core/RCTVibrationHeaders (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -531,132 +636,169 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTWebSocket (0.79.4):
+ - React-Core/RCTWebSocket (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.79.4)
+ - React-Core/Default (= 0.81.5)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-CoreModules (0.79.4):
+ - React-CoreModules (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
- - RCT-Folly (= 2024.11.18.00)
- - RCTTypeSafety (= 0.79.4)
- - React-Core/CoreModulesHeaders (= 0.79.4)
- - React-jsi (= 0.79.4)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety (= 0.81.5)
+ - React-Core/CoreModulesHeaders (= 0.81.5)
+ - React-jsi (= 0.81.5)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- React-NativeModulesApple
- React-RCTBlob
- React-RCTFBReactNativeSpec
- - React-RCTImage (= 0.79.4)
+ - React-RCTImage (= 0.81.5)
+ - React-runtimeexecutor
- ReactCommon
- - SocketRocket (= 0.7.1)
- - React-cxxreact (0.79.4):
+ - SocketRocket
+ - React-cxxreact (0.81.5):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.4)
- - React-debug (= 0.79.4)
- - React-jsi (= 0.79.4)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.81.5)
+ - React-debug (= 0.81.5)
+ - React-jsi (= 0.81.5)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-logger (= 0.79.4)
- - React-perflogger (= 0.79.4)
- - React-runtimeexecutor (= 0.79.4)
- - React-timing (= 0.79.4)
- - React-debug (0.79.4)
- - React-defaultsnativemodule (0.79.4):
+ - React-logger (= 0.81.5)
+ - React-perflogger (= 0.81.5)
+ - React-runtimeexecutor
+ - React-timing (= 0.81.5)
+ - SocketRocket
+ - React-debug (0.81.5)
+ - React-defaultsnativemodule (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-domnativemodule
- React-featureflagsnativemodule
- - React-hermes
- React-idlecallbacksnativemodule
- React-jsi
- React-jsiexecutor
- React-microtasksnativemodule
- React-RCTFBReactNativeSpec
- - React-domnativemodule (0.79.4):
+ - SocketRocket
+ - React-domnativemodule (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-Fabric
+ - React-Fabric/bridging
- React-FabricComponents
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-Fabric (0.79.4):
+ - React-Fabric (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/animations (= 0.79.4)
- - React-Fabric/attributedstring (= 0.79.4)
- - React-Fabric/componentregistry (= 0.79.4)
- - React-Fabric/componentregistrynative (= 0.79.4)
- - React-Fabric/components (= 0.79.4)
- - React-Fabric/consistency (= 0.79.4)
- - React-Fabric/core (= 0.79.4)
- - React-Fabric/dom (= 0.79.4)
- - React-Fabric/imagemanager (= 0.79.4)
- - React-Fabric/leakchecker (= 0.79.4)
- - React-Fabric/mounting (= 0.79.4)
- - React-Fabric/observers (= 0.79.4)
- - React-Fabric/scheduler (= 0.79.4)
- - React-Fabric/telemetry (= 0.79.4)
- - React-Fabric/templateprocessor (= 0.79.4)
- - React-Fabric/uimanager (= 0.79.4)
+ - React-Fabric/animations (= 0.81.5)
+ - React-Fabric/attributedstring (= 0.81.5)
+ - React-Fabric/bridging (= 0.81.5)
+ - React-Fabric/componentregistry (= 0.81.5)
+ - React-Fabric/componentregistrynative (= 0.81.5)
+ - React-Fabric/components (= 0.81.5)
+ - React-Fabric/consistency (= 0.81.5)
+ - React-Fabric/core (= 0.81.5)
+ - React-Fabric/dom (= 0.81.5)
+ - React-Fabric/imagemanager (= 0.81.5)
+ - React-Fabric/leakchecker (= 0.81.5)
+ - React-Fabric/mounting (= 0.81.5)
+ - React-Fabric/observers (= 0.81.5)
+ - React-Fabric/scheduler (= 0.81.5)
+ - React-Fabric/telemetry (= 0.81.5)
+ - React-Fabric/templateprocessor (= 0.81.5)
+ - React-Fabric/uimanager (= 0.81.5)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/animations (0.79.4):
+ - SocketRocket
+ - React-Fabric/animations (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -664,21 +806,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/attributedstring (0.79.4):
+ - SocketRocket
+ - React-Fabric/attributedstring (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -686,21 +831,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistry (0.79.4):
+ - SocketRocket
+ - React-Fabric/bridging (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -708,21 +856,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistrynative (0.79.4):
+ - SocketRocket
+ - React-Fabric/componentregistry (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -730,69 +881,78 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components (0.79.4):
+ - SocketRocket
+ - React-Fabric/componentregistrynative (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/components/legacyviewmanagerinterop (= 0.79.4)
- - React-Fabric/components/root (= 0.79.4)
- - React-Fabric/components/scrollview (= 0.79.4)
- - React-Fabric/components/view (= 0.79.4)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/legacyviewmanagerinterop (0.79.4):
+ - SocketRocket
+ - React-Fabric/components (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.81.5)
+ - React-Fabric/components/root (= 0.81.5)
+ - React-Fabric/components/scrollview (= 0.81.5)
+ - React-Fabric/components/view (= 0.81.5)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/root (0.79.4):
+ - SocketRocket
+ - React-Fabric/components/legacyviewmanagerinterop (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -800,21 +960,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/scrollview (0.79.4):
+ - SocketRocket
+ - React-Fabric/components/root (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -822,21 +985,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/view (0.79.4):
+ - SocketRocket
+ - React-Fabric/components/scrollview (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -844,23 +1010,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- - React-renderercss
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - Yoga
- - React-Fabric/consistency (0.79.4):
+ - SocketRocket
+ - React-Fabric/components/view (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -868,21 +1035,26 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-renderercss
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/core (0.79.4):
+ - SocketRocket
+ - Yoga
+ - React-Fabric/consistency (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -890,21 +1062,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/dom (0.79.4):
+ - SocketRocket
+ - React-Fabric/core (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -912,21 +1087,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/imagemanager (0.79.4):
+ - SocketRocket
+ - React-Fabric/dom (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -934,21 +1112,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/leakchecker (0.79.4):
+ - SocketRocket
+ - React-Fabric/imagemanager (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -956,21 +1137,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/mounting (0.79.4):
+ - SocketRocket
+ - React-Fabric/leakchecker (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -978,66 +1162,100 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/observers (0.79.4):
+ - SocketRocket
+ - React-Fabric/mounting (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/observers/events (= 0.79.4)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/observers/events (0.79.4):
+ - SocketRocket
+ - React-Fabric/observers (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric/observers/events (= 0.81.5)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/scheduler (0.79.4):
+ - SocketRocket
+ - React-Fabric/observers/events (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/scheduler (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1046,22 +1264,25 @@ PODS:
- React-Fabric/observers/events
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-performancetimeline
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/telemetry (0.79.4):
+ - SocketRocket
+ - React-Fabric/telemetry (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1069,21 +1290,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/templateprocessor (0.79.4):
+ - SocketRocket
+ - React-Fabric/templateprocessor (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1091,45 +1315,51 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager (0.79.4):
+ - SocketRocket
+ - React-Fabric/uimanager (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/uimanager/consistency (= 0.79.4)
+ - React-Fabric/uimanager/consistency (= 0.81.5)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererconsistency
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager/consistency (0.79.4):
+ - SocketRocket
+ - React-Fabric/uimanager/consistency (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1137,81 +1367,92 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererconsistency
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-FabricComponents (0.79.4):
+ - SocketRocket
+ - React-FabricComponents (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- React-Fabric
- - React-FabricComponents/components (= 0.79.4)
- - React-FabricComponents/textlayoutmanager (= 0.79.4)
+ - React-FabricComponents/components (= 0.81.5)
+ - React-FabricComponents/textlayoutmanager (= 0.81.5)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components (0.79.4):
+ - React-FabricComponents/components (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- React-Fabric
- - React-FabricComponents/components/inputaccessory (= 0.79.4)
- - React-FabricComponents/components/iostextinput (= 0.79.4)
- - React-FabricComponents/components/modal (= 0.79.4)
- - React-FabricComponents/components/rncore (= 0.79.4)
- - React-FabricComponents/components/safeareaview (= 0.79.4)
- - React-FabricComponents/components/scrollview (= 0.79.4)
- - React-FabricComponents/components/text (= 0.79.4)
- - React-FabricComponents/components/textinput (= 0.79.4)
- - React-FabricComponents/components/unimplementedview (= 0.79.4)
+ - React-FabricComponents/components/inputaccessory (= 0.81.5)
+ - React-FabricComponents/components/iostextinput (= 0.81.5)
+ - React-FabricComponents/components/modal (= 0.81.5)
+ - React-FabricComponents/components/rncore (= 0.81.5)
+ - React-FabricComponents/components/safeareaview (= 0.81.5)
+ - React-FabricComponents/components/scrollview (= 0.81.5)
+ - React-FabricComponents/components/switch (= 0.81.5)
+ - React-FabricComponents/components/text (= 0.81.5)
+ - React-FabricComponents/components/textinput (= 0.81.5)
+ - React-FabricComponents/components/unimplementedview (= 0.81.5)
+ - React-FabricComponents/components/virtualview (= 0.81.5)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/inputaccessory (0.79.4):
+ - React-FabricComponents/components/inputaccessory (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1220,22 +1461,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/iostextinput (0.79.4):
+ - React-FabricComponents/components/iostextinput (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1244,22 +1488,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/modal (0.79.4):
+ - React-FabricComponents/components/modal (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1268,22 +1515,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/rncore (0.79.4):
+ - React-FabricComponents/components/rncore (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1292,22 +1542,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/safeareaview (0.79.4):
+ - React-FabricComponents/components/safeareaview (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1316,22 +1569,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/scrollview (0.79.4):
+ - React-FabricComponents/components/scrollview (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1340,22 +1596,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/text (0.79.4):
+ - React-FabricComponents/components/switch (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1364,22 +1623,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/textinput (0.79.4):
+ - React-FabricComponents/components/text (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1388,22 +1650,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/unimplementedview (0.79.4):
+ - React-FabricComponents/components/textinput (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1412,22 +1677,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/textlayoutmanager (0.79.4):
+ - React-FabricComponents/components/unimplementedview (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1436,84 +1704,171 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricImage (0.79.4):
+ - React-FabricComponents/components/virtualview (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
- - RCTRequired (= 0.79.4)
- - RCTTypeSafety (= 0.79.4)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/textlayoutmanager (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricImage (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired (= 0.81.5)
+ - RCTTypeSafety (= 0.81.5)
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- - React-jsiexecutor (= 0.79.4)
+ - React-jsiexecutor (= 0.81.5)
- React-logger
- React-rendererdebug
- React-utils
- ReactCommon
+ - SocketRocket
- Yoga
- - React-featureflags (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
- - React-featureflagsnativemodule (0.79.4):
+ - React-featureflags (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-featureflagsnativemodule (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- ReactCommon/turbomodule/core
- - React-graphics (0.79.4):
+ - SocketRocket
+ - React-graphics (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
- - React-hermes
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-jsi
- React-jsiexecutor
- React-utils
- - React-hermes (0.79.4):
+ - SocketRocket
+ - React-hermes (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact (= 0.79.4)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.81.5)
- React-jsi
- - React-jsiexecutor (= 0.79.4)
+ - React-jsiexecutor (= 0.81.5)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-perflogger (= 0.79.4)
+ - React-perflogger (= 0.81.5)
- React-runtimeexecutor
- - React-idlecallbacksnativemodule (0.79.4):
+ - SocketRocket
+ - React-idlecallbacksnativemodule (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
- - React-hermes
+ - RCT-Folly/Fabric
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
- React-runtimescheduler
- ReactCommon/turbomodule/core
- - React-ImageManager (0.79.4):
+ - SocketRocket
+ - React-ImageManager (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
+ - RCT-Folly
- RCT-Folly/Fabric
- React-Core/Default
- React-debug
@@ -1521,78 +1876,159 @@ PODS:
- React-graphics
- React-rendererdebug
- React-utils
- - React-jserrorhandler (0.79.4):
+ - SocketRocket
+ - React-jserrorhandler (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-cxxreact
- React-debug
- React-featureflags
- React-jsi
- ReactCommon/turbomodule/bridging
- - React-jsi (0.79.4):
+ - SocketRocket
+ - React-jsi (0.81.5):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-jsiexecutor (0.79.4):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsiexecutor (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact (= 0.79.4)
- - React-jsi (= 0.79.4)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.81.5)
+ - React-jsi (= 0.81.5)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-perflogger (= 0.79.4)
- - React-jsinspector (0.79.4):
+ - React-perflogger (= 0.81.5)
+ - React-runtimeexecutor
+ - SocketRocket
+ - React-jsinspector (0.81.5):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
- React-jsinspectortracing
- - React-perflogger (= 0.79.4)
- - React-runtimeexecutor (= 0.79.4)
- - React-jsinspectortracing (0.79.4):
+ - React-oscompat
+ - React-perflogger (= 0.81.5)
+ - React-runtimeexecutor
+ - SocketRocket
+ - React-jsinspectorcdp (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsinspectornetwork (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-jsinspectorcdp
+ - React-performancetimeline
+ - React-timing
+ - SocketRocket
+ - React-jsinspectortracing (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-oscompat
- - React-jsitooling (0.79.4):
+ - React-timing
+ - SocketRocket
+ - React-jsitooling (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact (= 0.79.4)
- - React-jsi (= 0.79.4)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.81.5)
+ - React-jsi (= 0.81.5)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-jsitracing (0.79.4):
+ - React-runtimeexecutor
+ - SocketRocket
+ - React-jsitracing (0.81.5):
- React-jsi
- - React-logger (0.79.4):
+ - React-logger (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- - React-Mapbuffer (0.79.4):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-Mapbuffer (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-microtasksnativemodule (0.79.4):
+ - SocketRocket
+ - React-microtasksnativemodule (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
- - React-hermes
+ - RCT-Folly/Fabric
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- ReactCommon/turbomodule/core
+ - SocketRocket
- react-native-a11y-order (0.4.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1600,7 +2036,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1611,14 +2046,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-background-timer (2.4.1):
- React-Core
- react-native-cameraroll (7.10.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1626,7 +2066,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1637,14 +2076,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-cookies (6.2.1):
- React-Core
- - react-native-keyboard-controller (1.17.1):
+ - react-native-keyboard-controller (1.18.5):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1652,10 +2096,9 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- - react-native-keyboard-controller/common (= 1.17.1)
+ - react-native-keyboard-controller/common (= 1.18.5)
- React-NativeModulesApple
- React-RCTFabric
- React-renderercss
@@ -1664,12 +2107,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-keyboard-controller/common (1.17.1):
+ - react-native-keyboard-controller/common (1.18.5):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1677,7 +2125,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1688,12 +2135,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-mmkv (3.3.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1701,7 +2153,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1712,16 +2163,21 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-netinfo (11.3.1):
+ - react-native-netinfo (11.4.1):
- React-Core
- react-native-restart (0.0.22):
- React-Core
- - react-native-safe-area-context (5.4.0):
+ - react-native-safe-area-context (5.6.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1729,11 +2185,10 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- - react-native-safe-area-context/common (= 5.4.0)
- - react-native-safe-area-context/fabric (= 5.4.0)
+ - react-native-safe-area-context/common (= 5.6.2)
+ - react-native-safe-area-context/fabric (= 5.6.2)
- React-NativeModulesApple
- React-RCTFabric
- React-renderercss
@@ -1742,12 +2197,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-safe-area-context/common (5.4.0):
+ - react-native-safe-area-context/common (5.6.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1755,7 +2215,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1766,12 +2225,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-safe-area-context/fabric (5.4.0):
+ - react-native-safe-area-context/fabric (5.6.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1779,7 +2243,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- react-native-safe-area-context/common
@@ -1791,12 +2254,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-slider (4.5.0):
+ - react-native-slider (5.0.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1804,9 +2272,9 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
+ - react-native-slider/common (= 5.0.1)
- React-NativeModulesApple
- React-RCTFabric
- React-renderercss
@@ -1815,12 +2283,45 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - react-native-slider/common (5.0.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-renderercss
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-webview (13.15.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1828,7 +2329,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1839,44 +2339,78 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-NativeModulesApple (0.79.4):
+ - React-NativeModulesApple (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-Core
- React-cxxreact
- React-featureflags
- - React-hermes
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-oscompat (0.79.4)
- - React-perflogger (0.79.4):
+ - SocketRocket
+ - React-oscompat (0.81.5)
+ - React-perflogger (0.81.5):
+ - boost
- DoubleConversion
- - RCT-Folly (= 2024.11.18.00)
- - React-performancetimeline (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-performancetimeline (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-jsinspectortracing
- React-perflogger
- React-timing
- - React-RCTActionSheet (0.79.4):
- - React-Core/RCTActionSheetHeaders (= 0.79.4)
- - React-RCTAnimation (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTActionSheet (0.81.5):
+ - React-Core/RCTActionSheetHeaders (= 0.81.5)
+ - React-RCTAnimation (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTAnimationHeaders
+ - React-featureflags
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTAppDelegate (0.79.4):
+ - SocketRocket
+ - React-RCTAppDelegate (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1897,27 +2431,39 @@ PODS:
- React-rendererdebug
- React-RuntimeApple
- React-RuntimeCore
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon
- - React-RCTBlob (0.79.4):
+ - SocketRocket
+ - React-RCTBlob (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core/RCTBlobHeaders
- React-Core/RCTWebSocket
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- React-RCTNetwork
- ReactCommon
- - React-RCTFabric (0.79.4):
+ - SocketRocket
+ - React-RCTFabric (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core
- React-debug
- React-Fabric
@@ -1925,34 +2471,73 @@ PODS:
- React-FabricImage
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
- React-jsinspectortracing
- React-performancetimeline
- React-RCTAnimation
+ - React-RCTFBReactNativeSpec
- React-RCTImage
- React-RCTText
- React-rendererconsistency
- React-renderercss
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
+ - SocketRocket
- Yoga
- - React-RCTFBReactNativeSpec (0.79.4):
+ - React-RCTFBReactNativeSpec (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- - React-hermes
- React-jsi
- - React-jsiexecutor
- React-NativeModulesApple
+ - React-RCTFBReactNativeSpec/components (= 0.81.5)
+ - ReactCommon
+ - SocketRocket
+ - React-RCTFBReactNativeSpec/components (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-NativeModulesApple
+ - React-rendererdebug
+ - React-utils
- ReactCommon
- - React-RCTImage (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - Yoga
+ - React-RCTImage (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTImageHeaders
- React-jsi
@@ -1960,66 +2545,107 @@ PODS:
- React-RCTFBReactNativeSpec
- React-RCTNetwork
- ReactCommon
- - React-RCTLinking (0.79.4):
- - React-Core/RCTLinkingHeaders (= 0.79.4)
- - React-jsi (= 0.79.4)
+ - SocketRocket
+ - React-RCTLinking (0.81.5):
+ - React-Core/RCTLinkingHeaders (= 0.81.5)
+ - React-jsi (= 0.81.5)
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - ReactCommon/turbomodule/core (= 0.79.4)
- - React-RCTNetwork (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
+ - ReactCommon/turbomodule/core (= 0.81.5)
+ - React-RCTNetwork (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTNetworkHeaders
+ - React-featureflags
- React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTRuntime (0.79.4):
+ - SocketRocket
+ - React-RCTRuntime (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core
- - React-hermes
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- React-jsitooling
- React-RuntimeApple
- React-RuntimeCore
+ - React-runtimeexecutor
- React-RuntimeHermes
- - React-RCTSettings (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTSettings (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTSettingsHeaders
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTText (0.79.4):
- - React-Core/RCTTextHeaders (= 0.79.4)
+ - SocketRocket
+ - React-RCTText (0.81.5):
+ - React-Core/RCTTextHeaders (= 0.81.5)
- Yoga
- - React-RCTVibration (0.79.4):
- - RCT-Folly (= 2024.11.18.00)
+ - React-RCTVibration (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core/RCTVibrationHeaders
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-rendererconsistency (0.79.4)
- - React-renderercss (0.79.4):
+ - SocketRocket
+ - React-rendererconsistency (0.81.5)
+ - React-renderercss (0.81.5):
- React-debug
- React-utils
- - React-rendererdebug (0.79.4):
+ - React-rendererdebug (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
- - RCT-Folly (= 2024.11.18.00)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-rncore (0.79.4)
- - React-RuntimeApple (0.79.4):
+ - SocketRocket
+ - React-RuntimeApple (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-Core/Default
- React-CoreModules
@@ -2039,14 +2665,19 @@ PODS:
- React-RuntimeHermes
- React-runtimescheduler
- React-utils
- - React-RuntimeCore (0.79.4):
+ - SocketRocket
+ - React-RuntimeCore (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-cxxreact
- React-Fabric
- React-featureflags
- - React-hermes
- React-jserrorhandler
- React-jsi
- React-jsiexecutor
@@ -2056,29 +2687,54 @@ PODS:
- React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - React-runtimeexecutor (0.79.4):
- - React-jsi (= 0.79.4)
- - React-RuntimeHermes (0.79.4):
+ - SocketRocket
+ - React-runtimeexecutor (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-debug
+ - React-featureflags
+ - React-jsi (= 0.81.5)
+ - React-utils
+ - SocketRocket
+ - React-RuntimeHermes (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-hermes
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- React-jsitooling
- React-jsitracing
- React-RuntimeCore
+ - React-runtimeexecutor
- React-utils
- - React-runtimescheduler (0.79.4):
+ - SocketRocket
+ - React-runtimescheduler (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-cxxreact
- React-debug
- React-featureflags
- - React-hermes
- React-jsi
- React-jsinspectortracing
- React-performancetimeline
@@ -2087,21 +2743,32 @@ PODS:
- React-runtimeexecutor
- React-timing
- React-utils
- - React-timing (0.79.4)
- - React-utils (0.79.4):
+ - SocketRocket
+ - React-timing (0.81.5):
+ - React-debug
+ - React-utils (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-hermes
- - React-jsi (= 0.79.4)
- - ReactAppDependencyProvider (0.79.4):
+ - React-jsi (= 0.81.5)
+ - SocketRocket
+ - ReactAppDependencyProvider (0.81.5):
- ReactCodegen
- - ReactCodegen (0.79.4):
+ - ReactCodegen (0.81.5):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2110,7 +2777,6 @@ PODS:
- React-FabricImage
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-NativeModulesApple
@@ -2119,54 +2785,76 @@ PODS:
- React-utils
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - ReactCommon (0.79.4):
- - ReactCommon/turbomodule (= 0.79.4)
- - ReactCommon/turbomodule (0.79.4):
+ - SocketRocket
+ - ReactCommon (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - ReactCommon/turbomodule (= 0.81.5)
+ - SocketRocket
+ - ReactCommon/turbomodule (0.81.5):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.4)
- - React-cxxreact (= 0.79.4)
- - React-jsi (= 0.79.4)
- - React-logger (= 0.79.4)
- - React-perflogger (= 0.79.4)
- - ReactCommon/turbomodule/bridging (= 0.79.4)
- - ReactCommon/turbomodule/core (= 0.79.4)
- - ReactCommon/turbomodule/bridging (0.79.4):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.81.5)
+ - React-cxxreact (= 0.81.5)
+ - React-jsi (= 0.81.5)
+ - React-logger (= 0.81.5)
+ - React-perflogger (= 0.81.5)
+ - ReactCommon/turbomodule/bridging (= 0.81.5)
+ - ReactCommon/turbomodule/core (= 0.81.5)
+ - SocketRocket
+ - ReactCommon/turbomodule/bridging (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.4)
- - React-cxxreact (= 0.79.4)
- - React-jsi (= 0.79.4)
- - React-logger (= 0.79.4)
- - React-perflogger (= 0.79.4)
- - ReactCommon/turbomodule/core (0.79.4):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.81.5)
+ - React-cxxreact (= 0.81.5)
+ - React-jsi (= 0.81.5)
+ - React-logger (= 0.81.5)
+ - React-perflogger (= 0.81.5)
+ - SocketRocket
+ - ReactCommon/turbomodule/core (0.81.5):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.4)
- - React-cxxreact (= 0.79.4)
- - React-debug (= 0.79.4)
- - React-featureflags (= 0.79.4)
- - React-jsi (= 0.79.4)
- - React-logger (= 0.79.4)
- - React-perflogger (= 0.79.4)
- - React-utils (= 0.79.4)
- - RNBootSplash (6.3.8):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.81.5)
+ - React-cxxreact (= 0.81.5)
+ - React-debug (= 0.81.5)
+ - React-featureflags (= 0.81.5)
+ - React-jsi (= 0.81.5)
+ - React-logger (= 0.81.5)
+ - React-perflogger (= 0.81.5)
+ - React-utils (= 0.81.5)
+ - SocketRocket
+ - RNBootSplash (6.3.11):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2174,7 +2862,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2185,12 +2872,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - RNCAsyncStorage (1.22.3):
+ - RNCAsyncStorage (2.2.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2198,7 +2890,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2209,12 +2900,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNCClipboard (1.13.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2222,7 +2918,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2233,16 +2928,47 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - RNCMaskedView (0.3.1):
+ - RNCMaskedView (0.3.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-renderercss
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
- RNConfigReader (1.0.0):
- React
- - RNCPicker (2.11.0):
+ - RNCPicker (2.11.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2250,7 +2976,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2261,12 +2986,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - RNDateTimePicker (8.3.0):
+ - RNDateTimePicker (8.4.4):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2274,7 +3004,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2285,6 +3014,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNDeviceInfo (11.1.0):
- React-Core
@@ -2302,11 +3032,15 @@ PODS:
- RNFBApp
- RNFileViewer (2.1.4):
- React-Core
- - RNGestureHandler (2.24.0):
+ - RNGestureHandler (2.28.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2315,7 +3049,6 @@ PODS:
- React-FabricComponents
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2326,12 +3059,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNImageCropPicker (0.50.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2339,7 +3077,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2352,13 +3089,18 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNImageCropPicker/QBImagePickerController (= 0.50.1)
+ - SocketRocket
- TOCropViewController (~> 2.7.4)
- Yoga
- RNImageCropPicker/QBImagePickerController (0.50.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2366,7 +3108,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2378,15 +3119,22 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- TOCropViewController (~> 2.7.4)
- Yoga
+ - RNKeychain (8.2.0):
+ - React-Core
- RNLocalize (2.1.1):
- React-Core
- - RNReanimated (3.17.1):
+ - RNReanimated (3.19.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2405,14 +3153,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNReanimated/reanimated (= 3.17.1)
- - RNReanimated/worklets (= 3.17.1)
+ - RNReanimated/reanimated (= 3.19.3)
+ - RNReanimated/worklets (= 3.19.3)
+ - SocketRocket
- Yoga
- - RNReanimated/reanimated (3.17.1):
+ - RNReanimated/reanimated (3.19.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2431,13 +3184,18 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNReanimated/reanimated/apple (= 3.17.1)
+ - RNReanimated/reanimated/apple (= 3.19.3)
+ - SocketRocket
- Yoga
- - RNReanimated/reanimated/apple (3.17.1):
+ - RNReanimated/reanimated/apple (3.19.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2456,12 +3214,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - RNReanimated/worklets (3.17.1):
+ - RNReanimated/worklets (3.19.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2480,13 +3243,18 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNReanimated/worklets/apple (= 3.17.1)
+ - RNReanimated/worklets/apple (= 3.19.3)
+ - SocketRocket
- Yoga
- - RNReanimated/worklets/apple (3.17.1):
+ - RNReanimated/worklets/apple (3.19.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2505,12 +3273,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - RNScreens (4.13.1):
+ - RNScreens (4.16.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2518,7 +3291,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2530,13 +3302,18 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNScreens/common (= 4.13.1)
+ - RNScreens/common (= 4.16.0)
+ - SocketRocket
- Yoga
- - RNScreens/common (4.13.1):
+ - RNScreens/common (4.16.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2544,7 +3321,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2556,12 +3332,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNSVG (15.12.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2569,7 +3350,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2581,12 +3361,17 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNSVG/common (= 15.12.1)
+ - SocketRocket
- Yoga
- RNSVG/common (15.12.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2594,7 +3379,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2605,6 +3389,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- SDWebImage (5.21.0):
- SDWebImage/Core (= 5.21.0)
@@ -2662,7 +3447,6 @@ DEPENDENCIES:
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- "MobileCrypto (from `../node_modules/@rocket.chat/mobile-crypto`)"
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
- RCTRequired (from `../node_modules/react-native/Libraries/Required`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
@@ -2688,6 +3472,8 @@ 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-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
+ - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
- React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
- React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
- React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
@@ -2725,7 +3511,6 @@ DEPENDENCIES:
- React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
- React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
- React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
- - React-rncore (from `../node_modules/react-native/ReactCommon`)
- React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
- React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
@@ -2750,11 +3535,13 @@ DEPENDENCIES:
- RNFileViewer (from `../node_modules/react-native-file-viewer`)
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
- RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`)
+ - RNKeychain (from `../node_modules/react-native-keychain`)
- RNLocalize (from `../node_modules/react-native-localize`)
- RNReanimated (from `../node_modules/react-native-reanimated`)
- RNScreens (from `../node_modules/react-native-screens`)
- RNSVG (from `../node_modules/react-native-svg`)
- "simdjson (from `../node_modules/@nozbe/simdjson`)"
+ - SocketRocket (~> 0.7.1)
- "WatermelonDB (from `../node_modules/@nozbe/watermelondb`)"
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
@@ -2845,7 +3632,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-2025-06-04-RNv0.79.3-7f9a871eefeb2c3852365ee80f0b6733ec12ac3b
+ :tag: hermes-2025-07-07-RNv0.81.0-e0fc67142ec0763c6b6153ca2bf96df815539782
MobileCrypto:
:path: "../node_modules/@rocket.chat/mobile-crypto"
RCT-Folly:
@@ -2898,6 +3685,10 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
React-jsinspector:
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
+ React-jsinspectorcdp:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
+ React-jsinspectornetwork:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
React-jsinspectortracing:
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
React-jsitooling:
@@ -2972,8 +3763,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/react/renderer/css"
React-rendererdebug:
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
- React-rncore:
- :path: "../node_modules/react-native/ReactCommon"
React-RuntimeApple:
:path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
React-RuntimeCore:
@@ -3022,6 +3811,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-gesture-handler"
RNImageCropPicker:
:path: "../node_modules/react-native-image-crop-picker"
+ RNKeychain:
+ :path: "../node_modules/react-native-keychain"
RNLocalize:
:path: "../node_modules/react-native-localize"
RNReanimated:
@@ -3039,31 +3830,31 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
- BugsnagReactNative: 8150cc1facb5c69c7a5d27d614fc50b4ed03c2b8
+ BugsnagReactNative: 2078dec76e54db9f6e687743af45dc3673cb32ab
BVLinearGradient: 7815a70ab485b7b155186dd0cc836363e0288cad
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
EXApplication: 1e98d4b1dccdf30627f92917f4b2c5a53c330e5f
- EXAV: 90c33266835bf7e61dc0731fa8d82833d22d286f
- EXConstants: a1112af878fddfe6acc0399473ac56a07ced0f47
+ EXAV: e3fefaca88f14624bca01d9a128562a5f8e738f8
+ EXConstants: 805f35b1b295c542ca6acce836f21a1f9ee104d5
EXNotifications: 7a2975f4e282b827a0bc78bb1d232650cb569bbd
- Expo: bb70dfd014457bcca19f33e8c783afdc18308434
- ExpoAppleAuthentication: b589b71be6bb817decf8f35e92c6281365140289
- ExpoAsset: 3bc9adb7dbbf27ae82c18ca97eb988a3ae7e73b1
- ExpoCamera: 105a9a963c443a3e112c51dd81290d81cd8da94a
+ Expo: f298203cf86d7e0a4e9d8f88f29872558aef0b01
+ ExpoAppleAuthentication: bc9de6e9ff3340604213ab9031d4c4f7f802623e
+ ExpoAsset: f867e55ceb428aab99e1e8c082b5aee7c159ea18
+ ExpoCamera: 2a87c210f8955350ea5c70f1d539520b2fc5d940
ExpoDevice: 6327c3c200816795708885adf540d26ecab83d1a
- ExpoDocumentPicker: 344f16224e6a8a088f2693667a8b713160f8f57b
- ExpoFileSystem: 175267faf2b38511b01ac110243b13754dac57d3
- ExpoFont: abbb91a911eb961652c2b0a22eef801860425ed6
- ExpoHaptics: 0700bdb80e99deb606561698e79041a0d61d724e
- ExpoImage: 785f7673cfecd97045cf333fd6486b57ccab4b71
- ExpoKeepAwake: 213acedecafb6fda8c0ffedad22ee9e2903400c5
- ExpoLocalAuthentication: f69863a1822e42db67a311ce839ecbac70e7fa65
- ExpoModulesCore: b4fdeaceca6a4360d4a75fbae335907427c1df6b
- ExpoSystemUI: 82c970cf8495449698e7343b4f78a0d04bcec9ee
- ExpoVideoThumbnails: 2a448a23eb4eeb860d92ded372fec6e6a7a0cdcb
- ExpoWebBrowser: d81a92137919312afc5628d47951dc7a35554f90
- fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
- FBLazyVector: 15c28682af535aa55b9b31e64deff54b7ed7d453
+ ExpoDocumentPicker: 7cd9e71a0f66fb19eb0a586d6f26eee1284692e0
+ ExpoFileSystem: b79eadbda7b7f285f378f95f959cc9313a1c9c61
+ ExpoFont: cf9d90ec1d3b97c4f513211905724c8171f82961
+ ExpoHaptics: 807476b0c39e9d82b7270349d6487928ce32df84
+ ExpoImage: 9c3428921c536ab29e5c6721d001ad5c1f469566
+ ExpoKeepAwake: 1a2e820692e933c94a565ec3fbbe38ac31658ffe
+ ExpoLocalAuthentication: ea7b9878fefac9ae38dc5766af00b52cac55c51b
+ ExpoModulesCore: a8488fff5569ccab069549dec8680b23b13e42a8
+ ExpoSystemUI: 2761aa6875849af83286364811d46e8ed8ea64c7
+ ExpoVideoThumbnails: cadd91e1e71794cc3be76f815b46db33fa8e2fc6
+ ExpoWebBrowser: b973e1351fdcf5fec0c400997b1851f5a8219ec3
+ fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
+ FBLazyVector: 5beb8028d5a2e75dd9634917f23e23d3a061d2aa
Firebase: 1fe1c0a7d9aaea32efe01fbea5f0ebd8d70e53a2
FirebaseAnalytics: 4e42333f02cf78ed93703a5c36f36dd518aebdef
FirebaseCore: 8344daef5e2661eb004b177488d6f9f0f24251b7
@@ -3071,112 +3862,114 @@ SPEC CHECKSUMS:
FirebaseCoreInternal: ef4505d2afb1d0ebbc33162cb3795382904b5679
FirebaseCrashlytics: 84b073c997235740e6a951b7ee49608932877e5c
FirebaseInstallations: 9980995bdd06ec8081dfb6ab364162bdd64245c3
- FirebaseRemoteConfigInterop: 7c9a9c65eff32cbb0f7bf8d18140612ad57dfcc6
+ FirebaseRemoteConfigInterop: 1c6135e8a094cc6368949f5faeeca7ee8948b8aa
FirebaseSessions: 9b3b30947b97a15370e0902ee7a90f50ef60ead6
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
GoogleAppMeasurement: 36684bfb3ee034e2b42b4321eb19da3a1b81e65d
GoogleDataTransport: aae35b7ea0c09004c3797d53c8c41f66f219d6a7
- GoogleUtilities: 26a3abef001b6533cf678d3eb38fd3f614b7872d
- hermes-engine: 8b5a5eb386b990287d072fd7b6f6ebd9544dd251
+ GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1
+ hermes-engine: 9f4dfe93326146a1c99eb535b1cb0b857a3cd172
libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7
libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f
libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
- MobileCrypto: 60a1e43e26a9d6851ae2aa7294b8041c9e9220b7
+ MobileCrypto: 9657a1cccf06b61efebcaadfb0ac42edca511294
nanopb: fad817b59e0457d11a5dfbde799381cd727c1275
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851
- RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
- RCTDeprecation: 0418ac97b9f53b2e37f473da1663ef3061e46beb
- RCTRequired: b9fde7f981b11aa898f03a70d3d4d36b80f1b16d
- RCTTypeSafety: 397515ea9a8122b62a7a310adf30205f0a5e3bfc
- React: 2c0acddaddd2b9c9ccaa52f357625c283a19187a
- React-callinvoker: edb3b90ce47dd7ffec9caf7024dc3b9d6c52c52d
- React-Core: 6f7a30432fbbcf9bdd703e4f94c479c9fe66e1ad
- React-CoreModules: cdf0deab038609673be7e8705d27cdafaf34bc12
- React-cxxreact: 4ef4ae6b97456b423da5e4de1d67054c13c4f177
- React-debug: fea33bb692beddcdc9fb1e597aafba6ad23f0813
- React-defaultsnativemodule: feeeef93ccd381e53521c9932574d76379963794
- React-domnativemodule: da5f71a7bb29f6856df8854da211bb377fe17d8e
- React-Fabric: a9c51b073f0698c867538c334d5fe4c28927974f
- React-FabricComponents: db4261d72577cb48c14f6ac0dead7da48de0a61c
- React-FabricImage: 272857766358f8b7960cd7e4c1ac764a9ac8800a
- React-featureflags: 4de043c779ef7e243cbf4e57084db1d80f51c359
- React-featureflagsnativemodule: ec9477d2dc421a6de670c535a61f4529c42dd4eb
- React-graphics: 569f0174d01c40c651ff1db721b1a5054faa56dd
- React-hermes: 5199836f00018691c8070b415d4eda537a92dc42
- React-idlecallbacksnativemodule: 77450147b6e5c199441fc1be0fa76d7ed03fa31b
- React-ImageManager: 8b4ab4543a9f183c6da9d57e6abe96e891eba239
- React-jserrorhandler: 43e2c625cebff47bf309515df5ea48fd085354a1
- React-jsi: 77d6dd378ae0bb87168a382cbc12b08a6241d9be
- React-jsiexecutor: c23bece31e6763f32e87e46d5c0ea967ceffa89e
- React-jsinspector: 5976a5f55ed16470a626b91c49ad5b6233b6316a
- React-jsinspectortracing: 68deb3b77800fe4389b147a29146542a57cc49fe
- React-jsitooling: 83f800c52b0b4be679ea8d1e7e7c1d7e941e5b82
- React-jsitracing: a1f5f101b53e81eceed81e0a5f4e51e6d856020a
- React-logger: 694787b12186eeeadccdfdc6769890e9080c1f11
- React-Mapbuffer: 3fc69e6abffd8caed7c78ba1b481dc83ab913f4e
- React-microtasksnativemodule: 44180d1c009908666733364261fabf0613ac77e7
- react-native-a11y-order: 419a0c2849125d884e1c2a5db3a6ed06c8d45b92
+ RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
+ RCTDeprecation: 5eb1d2eeff5fb91151e8a8eef45b6c7658b6c897
+ RCTRequired: cebcf9442fc296c9b89ac791dfd463021d9f6f23
+ RCTTypeSafety: b99aa872829ee18f6e777e0ef55852521c5a6788
+ React: 914f8695f9bf38e6418228c2ffb70021e559f92f
+ React-callinvoker: 23cd4e33928608bd0cc35357597568b8b9a5f068
+ React-Core: 6a0a97598e9455348113bfe4c573fe8edac34469
+ React-CoreModules: a88a6ca48b668401b9780e272e2a607e70f9f955
+ React-cxxreact: 06265fd7e8d5c3b6b49e00d328ef76e5f1ae9c8b
+ React-debug: 29aed758c756956a51b4560223edbd15191ca4c5
+ React-defaultsnativemodule: c406bf7cd78036efffb7dec9df469257a1bca58c
+ React-domnativemodule: 925ea5ff8cb05c68e910057e6349e5898cce00f3
+ React-Fabric: 13130d0a70f17e913865b04673ee64603d6c42fe
+ React-FabricComponents: 1f01ea24a1314bf9abcac4743bb7ad8791336be6
+ React-FabricImage: f364dc54fcf8b0ef77192674a009aa4f65b34d75
+ React-featureflags: 32217ac18a8c216fc571044186fb04164af72772
+ React-featureflagsnativemodule: 9c552bb908a7434baa846002ee1752a77b1a5520
+ React-graphics: 3034a698e46e947f74a443e761f1feef742e9d71
+ React-hermes: a852be3ab9e1f515e46ba3ea9f48c31d4a9df437
+ React-idlecallbacksnativemodule: c43fe1f2221b0548cc366bf15f88efb3b3221bbf
+ React-ImageManager: 7efd7b19cdfaa3a82482e9e6ac0b56606a3ec271
+ React-jserrorhandler: 597057d0b9d158c03e02aa376a4a95f64f46a910
+ React-jsi: 7b53959aea60909ac6bbe4dd0bdec6c10d7dc597
+ React-jsiexecutor: 19938072af05ade148474bac41e0324a2d733f44
+ React-jsinspector: eb6bb244a75cbd56f32767daf2efdb344e2ff10c
+ React-jsinspectorcdp: 727f37537e9c7ab22b6b86c802d879efae5e2757
+ React-jsinspectornetwork: 11d47e644701c58038ef8d7f54a405ddd62b3b16
+ React-jsinspectortracing: 8875637e6c65b3b9a3852b006856562e874e7a78
+ React-jsitooling: b6e6a2551459a6ef9e1529df2ea981fa27ed3a91
+ React-jsitracing: 879e2b2f80dd33d84175989de0a8db5d662505db
+ React-logger: a913317214a26565cd4c045347edf1bcacb80a3f
+ React-Mapbuffer: 017336879e2e0fb7537bbc08c24f34e2384c9260
+ React-microtasksnativemodule: 63ee6730cec233feab9cdcc0c100dc28a12e4165
+ react-native-a11y-order: 20b33ff538af60d8b8a7f7284115a7febc9034d4
react-native-background-timer: 4638ae3bee00320753647900b21260b10587b6f7
- react-native-cameraroll: 23d28040c32ca8b20661e0c41b56ab041779244b
+ react-native-cameraroll: 3c91530ef1e696b6b6bbc4f8ca98c535c0836e8b
react-native-cookies: d648ab7025833b977c0b19e142503034f5f29411
- react-native-keyboard-controller: 9ec7ee23328c30251a399cffd8b54324a00343bf
- react-native-mmkv: ec96a16cd90e0d994d486c3993abf712186f7262
- react-native-netinfo: 2e3c27627db7d49ba412bfab25834e679db41e21
+ react-native-keyboard-controller: c4ca61f44d66c2f8987a7e67e9b78e80dc965c45
+ react-native-mmkv: 7b9c7469fa0a7e463f9411ad3e4fe273bd5ff030
+ react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
react-native-restart: f6f591aeb40194c41b9b5013901f00e6cf7d0f29
- react-native-safe-area-context: 5928d84c879db2f9eb6969ca70e68f58623dbf25
- react-native-slider: 605e731593322c4bb2eb48d7d64e2e4dbf7cbd77
- react-native-webview: 69c118d283fccfbc4fca0cd680e036ff3bf188fa
- React-NativeModulesApple: 5b234860053d0dd11f3442f38b99688ff1c9733b
- React-oscompat: 472a446c740e39ee39cd57cd7bfd32177c763a2b
- React-perflogger: bbca3688c62f4f39e972d6e21969c95fe441fb6c
- React-performancetimeline: 0c6dd996eb4fc9407026559cf9dd600403f99ec6
- React-RCTActionSheet: b70e1e649fb0bce5a3bda6d014f08e66ed4f0182
- React-RCTAnimation: ffa3b39acae2c675437ccf19e868c55570b2b627
- React-RCTAppDelegate: 58ae7b688f2fa079e7ebf6738acce913d0b74444
- React-RCTBlob: 6f3b35f78188d11a84fa76770d36471e3d93c588
- React-RCTFabric: a0b175478423f61030bf2a6aacaa9cb1bf69ebe7
- React-RCTFBReactNativeSpec: faf95122eed239f0713afc91a93d1d886b85cc0e
- React-RCTImage: 017bac77e99afbc52a129b98eee6480d7586fc07
- React-RCTLinking: 998af20d4545589dd36c7281a7c6989bc4035b1e
- React-RCTNetwork: ded3e4d0368cf149677f9524605dc279d7e262a4
- React-RCTRuntime: d634bb2d2bead2da0d882a24339cd34b7b4e4e82
- React-RCTSettings: 75f8539891bcb13764c28cc667cf6bc73d2b441b
- React-RCTText: 7c5bcaea63c64dc08f3a83144722d2448d6b3a34
- React-RCTVibration: 31ca4ab26d1316545561bf79d8832902c67cc63b
- React-rendererconsistency: bd5f8f748ff2114b96227525b3db618314e76016
- React-renderercss: e5a255768d0d9573fcc01794ddc1246324c15cb2
- React-rendererdebug: fd4ecf8ee9896a22e33c3eb0f9da252db58cae47
- React-rncore: 0fdbe68bd176eca8e18199ba9aa0abbc1fd0d16d
- React-RuntimeApple: 52a76e0af9ee5da7e806ccccd37bfb299d10c99e
- React-RuntimeCore: 5dc38281fca9ab2e6ce8abcee2aebe0756d71818
- React-runtimeexecutor: f70d358ec169718a10be67482e898cca0b9a7877
- React-RuntimeHermes: 2e0e0ebbe114fc409824de1f66d6b52cccdec7a4
- React-runtimescheduler: 7575857a922e50d50ad3bcc0e7881e1082fdda33
- React-timing: 2d07431f1c1203c5b0aaa6dc7b5f503704519218
- React-utils: 67cf7dcfc18aa4c56bec19e11886033bb057d9fa
- ReactAppDependencyProvider: bf62814e0fde923f73fc64b7e82d76c63c284da9
- ReactCodegen: 8885059f55a205c667f52d6e35877137631116f2
- ReactCommon: 177fca841e97b2c0e288e86097b8be04c6e7ae36
- RNBootSplash: 1280eeb18d887de0a45bb4923d4fc56f25c8b99c
- RNCAsyncStorage: edb872909c88d8541c0bfade3f86cd7784a7c6b3
- RNCClipboard: 4fd4b093bd9d0be5ad62ea73884eda7745ad23d0
- RNCMaskedView: de80352547bd4f0d607bf6bab363d826822bd126
+ react-native-safe-area-context: 0a3b034bb63a5b684dd2f5fffd3c90ef6ed41ee8
+ react-native-slider: 6201419b3e3f7c6b7cf2068e0c01274fa86a1da5
+ react-native-webview: d73728424a0e24989d71ffdc6fcf15d5f74ff4a2
+ React-NativeModulesApple: cbceb3c4cb726838c461b13802a76cefa6f3476f
+ React-oscompat: eb0626e8ba1a2c61673c991bf9dc21834898475d
+ React-perflogger: 509e1f9a3ee28df71b0a66de806ac515ce951246
+ React-performancetimeline: 9ce28cce1cded27410c293283f99fe62bebdb920
+ React-RCTActionSheet: 30fe8f9f8d86db4a25ff34595a658ecd837485fc
+ React-RCTAnimation: 3126eb1cb8e7a6ca33a52fd833d8018aa9311af1
+ React-RCTAppDelegate: b03981c790aa40cf26e0f78cc0f1f2df8287ead4
+ React-RCTBlob: 53c35e85c85d6bdaa55dc81a0b290d4e78431095
+ React-RCTFabric: 59ad9008775f123019c508efff260594a8509791
+ React-RCTFBReactNativeSpec: 82b605ab4f6f8da0a7ad88641161df5a0bafb1fb
+ React-RCTImage: 074b2faa71a152a456c974e118b60c9eeda94a64
+ React-RCTLinking: e5ca17a4f7ae2ad7b0c0483be77e1b383ecd0a8a
+ React-RCTNetwork: c508d7548c9eceac30a8100a846ea00033a03366
+ React-RCTRuntime: 6979568c0bc276fe785e085894f954fa15e0ec7e
+ React-RCTSettings: dd84c857a4fce42c1e08c1dabcda894e25af4a6e
+ React-RCTText: 6e4b177d047f98bccb90d6fb1ebdd3391cf8b299
+ React-RCTVibration: 9572d4a06a0c92650bcc62913e50eb2a89f19fb6
+ React-rendererconsistency: a7b47f8b186af64ff8509c8caec4114a2f1ae63f
+ React-renderercss: 9845c5063b3a2d0462ed4e4c7fc34219a5d608ed
+ React-rendererdebug: 3905e346c06347b86c6e49d427062cdd638a3044
+ React-RuntimeApple: 97233caf2b635c40819bf5be38d818777f8229ab
+ React-RuntimeCore: dc41f86fcdf1fbb42a5b8388a29bf59dfa56b2f8
+ React-runtimeexecutor: d16d045faaf6cd7de8d1aa8e31a51c13d8db84a4
+ React-RuntimeHermes: 5a9d132554c8d6b416d794cd4ac7d927b2f88f7b
+ React-runtimescheduler: 689d805d43c28b8fb1ab390914e042d10e2ea2ab
+ React-timing: c39eeb992274aeaeb9f4666dc97a36a31d33fe94
+ React-utils: 2f9ba0088251788ad66aa1855ff99ed2424024d2
+ ReactAppDependencyProvider: 1bcd3527ac0390a1c898c114f81ff954be35ed79
+ ReactCodegen: 1954f36cf32a4c2aa2b96bc44c3784b2aa74684e
+ ReactCommon: 6d0fa86a4510730da7c72560e0ced14258292ab9
+ RNBootSplash: 7fcc9a58ae343aeb1a1dd49f9030832fe432c544
+ RNCAsyncStorage: fd44f4b03e007e642e98df6726737bc66e9ba609
+ RNCClipboard: 911ec53dd1b6b1f7f014f307a6559dff50ceeac1
+ RNCMaskedView: d707a83784c67099b54b37d056ababb2767ce15e
RNConfigReader: 151efbfb6f2dddd04dd3c0b00fb292d8c7939215
- RNCPicker: c4e9fdf00bbd0d37c6c4f1df6eae3d4d7d32f1e3
- RNDateTimePicker: 8c6faabd27163a374ee08ea8d64cbc0b104c5d9b
+ RNCPicker: 70fd0622147f0ca1b9c5e1be2069a4fb2e8ec461
+ RNDateTimePicker: ca1dc7e24d0b4839877f0ab619e7bca5db715289
RNDeviceInfo: 900bd20e1fd3bfd894e7384cc4a83880c0341bd3
RNFBAnalytics: 8f000e79ee496f195db63d0ed06ce6c6330d5721
RNFBApp: d10e2aeb95700dc4b6cca7839059d17f9d7d8566
RNFBCrashlytics: 8a49978bb953d3fc052813093fecd4b447bbabf8
RNFileViewer: f9424017fa643c115c1444e11292e84fb16ddd68
- RNGestureHandler: 8ff2b1434b0ff8bab28c8242a656fb842990bbc8
- RNImageCropPicker: b219389d3a300679b396e81d501e8c8169ffa3c0
+ RNGestureHandler: b8d2e75c2e88fc2a1f6be3b3beeeed80b88fa37d
+ RNImageCropPicker: fc56e4ad18e36f6b14df7358cd33ce27d12a9137
+ RNKeychain: bbe2f6d5cc008920324acb49ef86ccc03d3b38e4
RNLocalize: ca86348d88b9a89da0e700af58d428ab3f343c4e
- RNReanimated: f52ccd5ceea2bae48d7421eec89b3f0c10d7b642
- RNScreens: b13e4c45f0406f33986a39c0d8da0324bff94435
- RNSVG: 680e961f640e381aab730a04b2371969686ed9f7
+ RNReanimated: 11699d133e760aed8cb48304120501fbeacb978c
+ RNScreens: 2e9c41cd099b1ca50136af8d57c3594214d0086a
+ RNSVG: 94a1be05fab4043354bcf7104f0f9b0e2231ef05
SDWebImage: f84b0feeb08d2d11e6a9b843cb06d75ebf5b8868
SDWebImageAVIFCoder: 00310d246aab3232ce77f1d8f0076f8c4b021d90
SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c
@@ -3185,7 +3978,7 @@ SPEC CHECKSUMS:
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
TOCropViewController: 80b8985ad794298fb69d3341de183f33d1853654
WatermelonDB: 4c846c8cb94eef3cba90fa034d15310163226703
- Yoga: dfabf1234ccd5ac41d1b1d43179f024366ae9831
+ Yoga: 1e91d83a5286cfd3b725eade59274c92270540d4
ZXingObjC: 8898711ab495761b2dbbdec76d90164a6d7e14c5
PODFILE CHECKSUM: 199f6fbbe6fb415c822cca992e6152000ac55b3e
diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj
index c901848d451..b8e69607e95 100644
--- a/ios/RocketChatRN.xcodeproj/project.pbxproj
+++ b/ios/RocketChatRN.xcodeproj/project.pbxproj
@@ -1277,7 +1277,7 @@
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
1EC6ACF422CB9FC300A41C61 /* Embed App Extensions */,
- 1E1EA8082326CCE300E22452 /* ShellScript */,
+ 1E1EA8082326CCE300E22452 /* [Expo] Configure project */,
1ED0389C2B507B4F00C007D4 /* Embed Watch Content */,
7AAE9EB32891A0D20024F559 /* Upload source maps to Bugsnag */,
407D3EDE3DABEE15D27BD87D /* ShellScript */,
@@ -1557,18 +1557,25 @@
shellPath = /bin/sh;
shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
- 1E1EA8082326CCE300E22452 /* ShellScript */ = {
+ 1E1EA8082326CCE300E22452 /* [Expo] Configure project */ = {
isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
+ "$(SRCROOT)/.xcode.env",
+ "$(SRCROOT)/.xcode.env.local",
+ "$(SRCROOT)/RocketChatRN/RocketChatRN.entitlements",
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-RocketChatRN/expo-configure-project.sh",
);
+ name = "[Expo] Configure project";
outputFileListPaths = (
);
outputPaths = (
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-RocketChatRN/ExpoModulesProvider.swift",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -1617,6 +1624,7 @@
"${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises_Privacy.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises_Privacy.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo/RNDeviceInfoPrivacyInfo.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/RNImageCropPickerPrivacyInfo.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
@@ -1650,6 +1658,7 @@
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FBLPromises_Privacy.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Promises_Privacy.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNDeviceInfoPrivacyInfo.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNImageCropPickerPrivacyInfo.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
@@ -1677,11 +1686,16 @@
inputFileListPaths = (
);
inputPaths = (
+ "$(SRCROOT)/.xcode.env",
+ "$(SRCROOT)/.xcode.env.local",
+ "$(SRCROOT)/RocketChatRN/RocketChatRN.entitlements",
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-RocketChatRN/expo-configure-project.sh",
);
name = "[Expo] Configure project";
outputFileListPaths = (
);
outputPaths = (
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-RocketChatRN/ExpoModulesProvider.swift",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -1835,6 +1849,7 @@
"${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises_Privacy.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises_Privacy.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo/RNDeviceInfoPrivacyInfo.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/RNImageCropPickerPrivacyInfo.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
@@ -1868,6 +1883,7 @@
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FBLPromises_Privacy.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Promises_Privacy.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNDeviceInfoPrivacyInfo.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNImageCropPickerPrivacyInfo.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
@@ -1895,11 +1911,16 @@
inputFileListPaths = (
);
inputPaths = (
+ "$(SRCROOT)/.xcode.env",
+ "$(SRCROOT)/.xcode.env.local",
+ "$(SRCROOT)/RocketChatRN/RocketChatRN.entitlements",
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-Rocket.Chat/expo-configure-project.sh",
);
name = "[Expo] Configure project";
outputFileListPaths = (
);
outputPaths = (
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-Rocket.Chat/ExpoModulesProvider.swift",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -1914,11 +1935,16 @@
inputFileListPaths = (
);
inputPaths = (
+ "$(SRCROOT)/.xcode.env",
+ "$(SRCROOT)/.xcode.env.local",
+ "$(SRCROOT)/NotificationService/NotificationService.entitlements",
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-NotificationService/expo-configure-project.sh",
);
name = "[Expo] Configure project";
outputFileListPaths = (
);
outputPaths = (
+ "$(SRCROOT)/Pods/Target Support Files/Pods-defaults-NotificationService/ExpoModulesProvider.swift",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -1968,6 +1994,7 @@
"${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises_Privacy.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises_Privacy.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo/RNDeviceInfoPrivacyInfo.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/RNImageCropPickerPrivacyInfo.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
@@ -2001,6 +2028,7 @@
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FBLPromises_Privacy.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Promises_Privacy.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNDeviceInfoPrivacyInfo.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNImageCropPickerPrivacyInfo.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
@@ -3259,6 +3287,8 @@
"${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers/platform/ios",
);
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
@@ -3327,6 +3357,8 @@
"${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers/platform/ios",
);
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist
index f3ab43dc2ac..4afb7a17f50 100644
--- a/ios/RocketChatRN/Info.plist
+++ b/ios/RocketChatRN/Info.plist
@@ -2,17 +2,10 @@
- IS_OFFICIAL
-
AppGroup
group.ios.chat.rocket
- bugsnag
-
- apiKey
- apiKeyValue
-
- CADisableMinimumFrameDurationOnPhone
-
+ CADisableMinimumFrameDurationOnPhone
+
CFBundleDevelopmentRegion
en
CFBundleDisplayName
@@ -46,6 +39,8 @@
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
+ IS_OFFICIAL
+
ITSAppUsesNonExemptEncryption
KeychainGroup
@@ -60,13 +55,13 @@
LSRequiresIPhoneOS
- NSAppTransportSecurity
-
- NSAllowsArbitraryLoads
-
- NSAllowsLocalNetworking
-
-
+ NSAppTransportSecurity
+
+ NSAllowsArbitraryLoads
+
+ NSAllowsLocalNetworking
+
+
NSCameraUsageDescription
Take photos to share with other users
NSFaceIDUsageDescription
@@ -77,6 +72,8 @@
Give $(PRODUCT_NAME) permission to save photos
NSPhotoLibraryUsageDescription
Upload photos to share with other users or to change your avatar
+ RCTNewArchEnabled
+
UIAppFonts
custom.ttf
@@ -108,5 +105,10 @@
UIViewControllerBasedStatusBarAppearance
+ bugsnag
+
+ apiKey
+ apiKeyValue
+
diff --git a/ios/ShareRocketChatRN/Info.plist b/ios/ShareRocketChatRN/Info.plist
index 85fb00ae1fb..357208caf19 100644
--- a/ios/ShareRocketChatRN/Info.plist
+++ b/ios/ShareRocketChatRN/Info.plist
@@ -4,13 +4,6 @@
AppGroup
group.ios.chat.rocket
- IS_OFFICIAL
-
- bugsnag
-
- apiKey
- apiKeyValue
-
CFBundleDevelopmentRegion
$(DEVELOPMENT_LANGUAGE)
CFBundleDisplayName
@@ -29,6 +22,8 @@
4.68.0
CFBundleVersion
1
+ IS_OFFICIAL
+
KeychainGroup
$(AppIdentifierPrefix)chat.rocket.reactnative
NSAppTransportSecurity
@@ -67,10 +62,17 @@
NSExtensionPointIdentifier
com.apple.share-services
+ RCTNewArchEnabled
+
UIAppFonts
custom.ttf
Inter.ttf
+ bugsnag
+
+ apiKey
+ apiKeyValue
+
diff --git a/metro.config.js b/metro.config.js
index 234dd67481b..5b1d7cb76a9 100644
--- a/metro.config.js
+++ b/metro.config.js
@@ -1,11 +1,12 @@
const path = require('path');
const withStorybook = require('@storybook/react-native/metro/withStorybook');
-const defaultSourceExts = require('metro-config/src/defaults/defaults').sourceExts;
-// eslint-disable-next-line import/no-unresolved
+
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
const { wrapWithReanimatedMetroConfig } = require('react-native-reanimated/metro-config');
-const sourceExts = [...defaultSourceExts, 'mjs'];
+const defaultConfig = getDefaultConfig(__dirname);
+
+const sourceExts = [...defaultConfig.resolver.sourceExts, 'mjs'];
const config = {
transformer: {
diff --git a/package.json b/package.json
index 2a8e7f22435..670315f7d33 100644
--- a/package.json
+++ b/package.json
@@ -29,20 +29,20 @@
"@expo/vector-icons": "^14.1.0",
"@hookform/resolvers": "^2.9.10",
"@nozbe/watermelondb": "^0.28.1-0",
- "@react-native-async-storage/async-storage": "^1.22.3",
+ "@react-native-async-storage/async-storage": "2.2.0",
"@react-native-camera-roll/camera-roll": "^7.10.0",
"@react-native-clipboard/clipboard": "^1.13.2",
- "@react-native-community/datetimepicker": "^8.3.0",
+ "@react-native-community/datetimepicker": "8.4.4",
"@react-native-community/hooks": "^100.1.0",
- "@react-native-community/netinfo": "^11.3.1",
- "@react-native-community/slider": "^4.5.0",
+ "@react-native-community/netinfo": "11.4.1",
+ "@react-native-community/slider": "5.0.1",
"@react-native-cookies/cookies": "6.2.1",
"@react-native-firebase/analytics": "^21.12.2",
"@react-native-firebase/app": "^21.12.2",
"@react-native-firebase/crashlytics": "^21.12.2",
- "@react-native-masked-view/masked-view": "^0.3.1",
- "@react-native-picker/picker": "^2.11.0",
- "@react-native/codegen": "^0.80.0",
+ "@react-native-masked-view/masked-view": "0.3.2",
+ "@react-native-picker/picker": "2.11.1",
+ "@react-native/codegen": "0.81.5",
"@react-navigation/drawer": "^7.5.5",
"@react-navigation/elements": "^2.6.1",
"@react-navigation/native": "^7.1.16",
@@ -57,23 +57,23 @@
"dequal": "2.0.3",
"ejson": "2.2.3",
"eslint-import-resolver-typescript": "^4.4.4",
- "expo": "53",
- "expo-apple-authentication": "7.2.3",
- "expo-av": "15.1.3",
- "expo-camera": "16.1.5",
+ "expo": "54",
+ "expo-apple-authentication": "~8.0.7",
+ "expo-av": "~16.0.7",
+ "expo-camera": "~17.0.9",
+ "expo-document-picker": "~14.0.7",
+ "expo-file-system": "~19.0.17",
+ "expo-haptics": "~15.0.7",
+ "expo-image": "~3.0.10",
+ "expo-keep-awake": "~15.0.7",
+ "expo-local-authentication": "~17.0.7",
+ "expo-navigation-bar": "~5.0.9",
+ "expo-status-bar": "~3.0.8",
+ "expo-system-ui": "~6.0.8",
+ "expo-video-thumbnails": "~10.0.7",
+ "expo-web-browser": "~15.0.9",
"expo-device": "^8.0.10",
- "expo-document-picker": "13.1.4",
- "expo-file-system": "18.1.7",
- "expo-haptics": "14.1.3",
- "expo-image": "^2.3.2",
- "expo-keep-awake": "14.1.3",
- "expo-local-authentication": "16.0.3",
- "expo-navigation-bar": "^4.2.4",
"expo-notifications": "0.32.11",
- "expo-status-bar": "^2.2.3",
- "expo-system-ui": "^5.0.7",
- "expo-video-thumbnails": "9.1.2",
- "expo-web-browser": "14.1.5",
"hoist-non-react-statics": "3.3.2",
"i18n-js": "3.9.2",
"js-base64": "3.6.1",
@@ -84,23 +84,24 @@
"mitt": "3.0.1",
"pretty-bytes": "5.6.0",
"prop-types": "15.7.2",
- "react": "19.0.0",
+ "react": "19.1.0",
"react-hook-form": "7.34.2",
- "react-native": "0.79.4",
+ "react-native": "0.81.5",
"react-native-a11y-order": "^0.4.0",
"react-native-animatable": "1.3.3",
"react-native-background-timer": "2.4.1",
- "react-native-bootsplash": "^6.3.8",
+ "react-native-bootsplash": "^6.3.10",
"react-native-config-reader": "4.1.1",
"react-native-console-time-polyfill": "1.2.3",
"react-native-device-info": "11.1.0",
"react-native-easy-grid": "0.2.2",
"react-native-easy-toast": "2.3.0",
"react-native-file-viewer": "2.1.4",
- "react-native-gesture-handler": "2.24.0",
+ "react-native-gesture-handler": "~2.28.0",
"react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker#5346870b0be10d300dc53924309dc6adc9946d50",
"react-native-katex": "git+https://github.com/RocketChat/react-native-katex.git",
- "react-native-keyboard-controller": "^1.17.1",
+ "react-native-keyboard-controller": "1.18.5",
+ "react-native-keychain": "^8.2.0",
"react-native-linear-gradient": "2.6.2",
"react-native-localize": "2.1.1",
"react-native-math-view": "3.9.5",
@@ -114,8 +115,8 @@
"react-native-prompt-android": "1.1.0",
"react-native-reanimated": "^3.17.1",
"react-native-restart": "0.0.22",
- "react-native-safe-area-context": "^5.4.0",
- "react-native-screens": "^4.13.1",
+ "react-native-safe-area-context": "~5.6.0",
+ "react-native-screens": "~4.16.0",
"react-native-skeleton-placeholder": "5.2.4",
"react-native-slowlog": "1.0.2",
"react-native-svg": "^15.12.1",
@@ -154,13 +155,13 @@
"@bugsnag/cli": "^3.2.1",
"@bugsnag/source-maps": "^2.3.3",
"@gorhom/bottom-sheet": "^5.1.6",
- "@react-native-community/cli": "18.0.0",
- "@react-native-community/cli-platform-android": "18.0.0",
- "@react-native-community/cli-platform-ios": "18.0.0",
- "@react-native/babel-preset": "0.79.4",
- "@react-native/eslint-config": "0.79.4",
- "@react-native/metro-config": "0.79.4",
- "@react-native/typescript-config": "0.79.4",
+ "@react-native-community/cli": "20.0.0",
+ "@react-native-community/cli-platform-android": "20.0.0",
+ "@react-native-community/cli-platform-ios": "20.0.0",
+ "@react-native/babel-preset": "0.81.5",
+ "@react-native/eslint-config": "0.81.5",
+ "@react-native/metro-config": "0.81.5",
+ "@react-native/typescript-config": "0.81.5",
"@rocket.chat/eslint-config": "^0.4.0",
"@storybook/react": "9.0.9",
"@storybook/react-native": "9.0.9",
@@ -172,7 +173,7 @@
"@types/jest": "^29.5.13",
"@types/jsrsasign": "^10.5.8",
"@types/lodash": "^4.14.188",
- "@types/react": "^19.0.0",
+ "@types/react": "~19.1.10",
"@types/react-native-background-timer": "^2.0.2",
"@types/react-native-config-reader": "^4.1.3",
"@types/react-native-platform-touchable": "^1.1.6",
@@ -186,7 +187,7 @@
"babel-loader": "^9.1.3",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"babel-plugin-transform-remove-console": "^6.9.4",
- "babel-preset-expo": "^12.0.11",
+ "babel-preset-expo": "^54.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
@@ -198,17 +199,17 @@
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
- "jest-expo": "^53.0.5",
+ "jest-expo": "~54.0.13",
"patch-package": "8.0.0",
"prettier": "2.8.8",
- "react-dom": "18.2.0",
+ "react-dom": "19.1.0",
"react-native-dotenv": "3.4.8",
"storybook": "9.0.9",
"typescript": "5.4.3"
},
"snyk": true,
"engines": {
- "node": ">=18"
+ "node": ">=20"
},
"codegenConfig": {
"name": "SSLPinning",
diff --git a/patches/expo-file-system+18.1.7.patch b/patches/expo-file-system+18.1.7.patch
deleted file mode 100644
index d65f9e75da1..00000000000
--- a/patches/expo-file-system+18.1.7.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt b/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt
-index 964df1a..d2be5f8 100644
---- a/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt
-+++ b/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt
-@@ -80,11 +80,20 @@ private fun slashifyFilePath(path: String?): String? {
- open class FileSystemModule : Module() {
- private val context: Context
- get() = appContext.reactContext ?: throw Exceptions.AppContextLost()
-- private var client: OkHttpClient? = null
- private var dirPermissionsRequest: Promise? = null
- private val taskHandlers: MutableMap = HashMap()
- private val moduleCoroutineScope = CoroutineScope(Dispatchers.Default)
-
-+ companion object {
-+ @JvmStatic
-+ var client: OkHttpClient? = null
-+
-+ @JvmStatic
-+ fun setOkHttpClient(okHttpClient: OkHttpClient) {
-+ client = okHttpClient
-+ }
-+ }
-+
- @SuppressLint("WrongConstant", "DiscouragedApi")
- override fun definition() = ModuleDefinition {
- Name("ExponentFileSystem")
diff --git a/patches/expo-file-system+19.0.17.patch b/patches/expo-file-system+19.0.17.patch
new file mode 100644
index 00000000000..d7130e62e44
--- /dev/null
+++ b/patches/expo-file-system+19.0.17.patch
@@ -0,0 +1,32 @@
+diff --git a/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt b/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt
+index a85957a..ac31ea2 100644
+--- a/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt
++++ b/node_modules/expo-file-system/android/src/main/java/expo/modules/filesystem/FileSystemModule.kt
+@@ -27,6 +27,16 @@ class FileSystemModule : Module() {
+ private val context: Context
+ get() = appContext.reactContext ?: throw Exceptions.AppContextLost()
+
++ companion object {
++ @JvmStatic
++ var client: OkHttpClient? = null
++
++ @JvmStatic
++ fun setOkHttpClient(okHttpClient: OkHttpClient) {
++ client = okHttpClient
++ }
++ }
++
+ @RequiresApi(Build.VERSION_CODES.O)
+ @OptIn(EitherType::class)
+ override fun definition() = ModuleDefinition {
+@@ -61,8 +71,8 @@ class FileSystemModule : Module() {
+ }
+
+ val request = requestBuilder.build()
+- val client = OkHttpClient()
+- val response = request.await(client)
++ val okHttpClient = client ?: OkHttpClient()
++ val response = request.await(okHttpClient)
+
+ if (!response.isSuccessful) {
+ throw UnableToDownloadException("response has status: ${response.code}")
diff --git a/patches/expo-image+2.3.2.patch b/patches/expo-image+2.3.2.patch
deleted file mode 100644
index 5030304882e..00000000000
--- a/patches/expo-image+2.3.2.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/node_modules/expo-image/ios/ImageModule.swift b/node_modules/expo-image/ios/ImageModule.swift
-index 361c806..efeea75 100644
---- a/node_modules/expo-image/ios/ImageModule.swift
-+++ b/node_modules/expo-image/ios/ImageModule.swift
-@@ -107,7 +107,7 @@ public final class ImageModule: Module {
- view.autoplay = autoplay ?? true
- }
-
-- Prop("useAppleWebpCodec", true) { (view, useAppleWebpCodec: Bool) in
-+ Prop("useAppleWebpCodec") { (view, useAppleWebpCodec: Bool) in
- view.useAppleWebpCodec = useAppleWebpCodec
- }
-
diff --git a/patches/react-native+0.81.5.patch b/patches/react-native+0.81.5.patch
new file mode 100644
index 00000000000..f91be047f09
--- /dev/null
+++ b/patches/react-native+0.81.5.patch
@@ -0,0 +1,13 @@
+diff --git a/node_modules/react-native/scripts/cocoapods/new_architecture.rb b/node_modules/react-native/scripts/cocoapods/new_architecture.rb
+index 7d8f8e6..d2852a2 100644
+--- a/node_modules/react-native/scripts/cocoapods/new_architecture.rb
++++ b/node_modules/react-native/scripts/cocoapods/new_architecture.rb
+@@ -163,7 +163,7 @@ class NewArchitectureHelper
+ .uniq{ |p| p.path }
+ .map{ |p| p.path }
+
+- excluded_info_plist = ["/Pods", "Tests", "metainternal", ".bundle", "build/", "DerivedData/"]
++ excluded_info_plist = ["/Pods", "Tests", "metainternal", ".bundle", "build/", "DerivedData/", ".xcframework", ".framework"]
+ projectPaths.each do |projectPath|
+ projectFolderPath = File.dirname(projectPath)
+ infoPlistFiles = `find #{projectFolderPath} -name "Info.plist"`
diff --git a/yarn.lock b/yarn.lock
index 5f334cbad37..098778eb58c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -61,6 +61,15 @@
dependencies:
"@babel/highlight" "^7.18.6"
+"@babel/code-frame@^7.20.0", "@babel/code-frame@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
+ integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.27.1"
+ js-tokens "^4.0.0"
+ picocolors "^1.1.1"
+
"@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2":
version "7.24.2"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae"
@@ -78,15 +87,6 @@
js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/code-frame@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
- integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
- dependencies:
- "@babel/helper-validator-identifier" "^7.27.1"
- js-tokens "^4.0.0"
- picocolors "^1.1.1"
-
"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5":
version "7.23.5"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98"
@@ -262,6 +262,17 @@
"@jridgewell/trace-mapping" "^0.3.28"
jsesc "^3.0.2"
+"@babel/generator@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz#712722d5e50f44d07bc7ac9fe84438742dd61298"
+ integrity sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==
+ dependencies:
+ "@babel/parser" "^7.28.5"
+ "@babel/types" "^7.28.5"
+ "@jridgewell/gen-mapping" "^0.3.12"
+ "@jridgewell/trace-mapping" "^0.3.28"
+ jsesc "^3.0.2"
+
"@babel/generator@^7.7.2":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785"
@@ -292,6 +303,13 @@
dependencies:
"@babel/types" "^7.25.9"
+"@babel/helper-annotate-as-pure@^7.27.3":
+ version "7.27.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz#f31fd86b915fc4daf1f3ac6976c59be7084ed9c5"
+ integrity sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==
+ dependencies:
+ "@babel/types" "^7.27.3"
+
"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6":
version "7.23.6"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991"
@@ -396,6 +414,19 @@
"@babel/traverse" "^7.26.9"
semver "^6.3.1"
+"@babel/helper-create-class-features-plugin@^7.27.1", "@babel/helper-create-class-features-plugin@^7.28.3", "@babel/helper-create-class-features-plugin@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz#472d0c28028850968979ad89f173594a6995da46"
+ integrity sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-member-expression-to-functions" "^7.28.5"
+ "@babel/helper-optimise-call-expression" "^7.27.1"
+ "@babel/helper-replace-supers" "^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
+ "@babel/traverse" "^7.28.5"
+ semver "^6.3.1"
+
"@babel/helper-create-regexp-features-plugin@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz#3e35f4e04acbbf25f1b3534a657610a000543d3c"
@@ -422,6 +453,15 @@
regexpu-core "^6.2.0"
semver "^6.3.1"
+"@babel/helper-create-regexp-features-plugin@^7.27.1":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz#7c1ddd64b2065c7f78034b25b43346a7e19ed997"
+ integrity sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ regexpu-core "^6.3.1"
+ semver "^6.3.1"
+
"@babel/helper-define-polyfill-provider@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b"
@@ -510,6 +550,14 @@
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"
+"@babel/helper-member-expression-to-functions@^7.27.1", "@babel/helper-member-expression-to-functions@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz#f3e07a10be37ed7a63461c63e6929575945a6150"
+ integrity sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==
+ dependencies:
+ "@babel/traverse" "^7.28.5"
+ "@babel/types" "^7.28.5"
+
"@babel/helper-module-imports@^7.14.5", "@babel/helper-module-imports@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
@@ -553,7 +601,7 @@
"@babel/helper-validator-identifier" "^7.25.9"
"@babel/traverse" "^7.25.9"
-"@babel/helper-module-transforms@^7.28.3":
+"@babel/helper-module-transforms@^7.27.1", "@babel/helper-module-transforms@^7.28.3":
version "7.28.3"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz#a2b37d3da3b2344fe085dab234426f2b9a2fa5f6"
integrity sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==
@@ -583,7 +631,14 @@
dependencies:
"@babel/types" "^7.25.9"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+"@babel/helper-optimise-call-expression@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz#c65221b61a643f3e62705e5dd2b5f115e35f9200"
+ integrity sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==
+ dependencies:
+ "@babel/types" "^7.27.1"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.8.0":
version "7.24.0"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz#945681931a52f15ce879fd5b86ce2dae6d3d7f2a"
integrity sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==
@@ -608,6 +663,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz#18580d00c9934117ad719392c4f6585c9333cc35"
integrity sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==
+"@babel/helper-plugin-utils@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c"
+ integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==
+
"@babel/helper-remap-async-to-generator@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
@@ -674,6 +734,15 @@
"@babel/helper-optimise-call-expression" "^7.25.9"
"@babel/traverse" "^7.26.5"
+"@babel/helper-replace-supers@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz#b1ed2d634ce3bdb730e4b52de30f8cccfd692bc0"
+ integrity sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.27.1"
+ "@babel/helper-optimise-call-expression" "^7.27.1"
+ "@babel/traverse" "^7.27.1"
+
"@babel/helper-simple-access@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
@@ -696,6 +765,14 @@
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"
+"@babel/helper-skip-transparent-expression-wrappers@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz#62bb91b3abba8c7f1fec0252d9dbea11b3ee7a56"
+ integrity sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==
+ dependencies:
+ "@babel/traverse" "^7.27.1"
+ "@babel/types" "^7.27.1"
+
"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.6":
version "7.22.6"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
@@ -748,6 +825,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
+"@babel/helper-validator-identifier@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
+ integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
+
"@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5":
version "7.23.5"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
@@ -904,6 +986,13 @@
dependencies:
"@babel/types" "^7.26.10"
+"@babel/parser@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
+ integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==
+ dependencies:
+ "@babel/types" "^7.28.5"
+
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz#cc2e53ebf0a0340777fff5ed521943e253b4d8fe"
@@ -1099,13 +1188,6 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-syntax-export-namespace-from@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
- integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.23.3":
version "7.23.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz#084564e0f3cc21ea6c70c44cff984a1c0509729a"
@@ -1162,6 +1244,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
+"@babel/plugin-syntax-jsx@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz#2f9beb5eff30fa507c5532d107daac7b888fa34c"
+ integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
"@babel/plugin-syntax-jsx@^7.7.2":
version "7.24.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10"
@@ -1239,6 +1328,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
+"@babel/plugin-syntax-typescript@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz#5147d29066a793450f220c63fa3a9431b7e6dd18"
+ integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
@@ -1254,7 +1350,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-arrow-functions@^7.0.0-0", "@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.25.9":
+"@babel/plugin-transform-arrow-functions@^7.0.0-0":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz#6e2061067ba3ab0266d834a9f94811196f2aba9a"
+ integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845"
integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==
@@ -1309,7 +1412,15 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-class-properties@^7.0.0-0", "@babel/plugin-transform-class-properties@^7.25.4", "@babel/plugin-transform-class-properties@^7.25.9":
+"@babel/plugin-transform-class-properties@^7.0.0-0":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz#dd40a6a370dfd49d32362ae206ddaf2bb082a925"
+ integrity sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-class-properties@^7.25.4", "@babel/plugin-transform-class-properties@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz#a8ce84fedb9ad512549984101fa84080a9f5f51f"
integrity sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==
@@ -1325,6 +1436,14 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
+"@babel/plugin-transform-class-static-block@^7.27.1":
+ version "7.28.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz#d1b8e69b54c9993bc558203e1f49bfc979bfd852"
+ integrity sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.28.3"
+ "@babel/helper-plugin-utils" "^7.27.1"
+
"@babel/plugin-transform-classes@^7.0.0":
version "7.23.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92"
@@ -1339,7 +1458,19 @@
"@babel/helper-split-export-declaration" "^7.22.6"
globals "^11.1.0"
-"@babel/plugin-transform-classes@^7.0.0-0", "@babel/plugin-transform-classes@^7.25.4", "@babel/plugin-transform-classes@^7.25.9":
+"@babel/plugin-transform-classes@^7.0.0-0":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz#75d66175486788c56728a73424d67cbc7473495c"
+ integrity sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-compilation-targets" "^7.27.2"
+ "@babel/helper-globals" "^7.28.0"
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-replace-supers" "^7.27.1"
+ "@babel/traverse" "^7.28.4"
+
+"@babel/plugin-transform-classes@^7.25.4", "@babel/plugin-transform-classes@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52"
integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==
@@ -1418,14 +1549,6 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-export-namespace-from@^7.22.11":
- version "7.23.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191"
- integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.22.5"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
"@babel/plugin-transform-export-namespace-from@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz#90745fe55053394f554e40584cda81f2c8a402a2"
@@ -1535,6 +1658,14 @@
"@babel/helper-module-transforms" "^7.26.0"
"@babel/helper-plugin-utils" "^7.25.9"
+"@babel/plugin-transform-modules-commonjs@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz#8e44ed37c2787ecc23bdc367f49977476614e832"
+ integrity sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+
"@babel/plugin-transform-modules-systemjs@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz#8bd1b43836269e3d33307151a114bcf3ba6793f8"
@@ -1576,7 +1707,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0", "@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.26.6":
+"@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz#4f9d3153bf6782d73dd42785a9d22d03197bc91d"
+ integrity sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.26.6":
version "7.26.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz#fbf6b3c92cb509e7b319ee46e3da89c5bedd31fe"
integrity sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==
@@ -1590,17 +1728,6 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-object-rest-spread@^7.12.13":
- version "7.24.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.0.tgz#7b836ad0088fdded2420ce96d4e1d3ed78b71df1"
- integrity sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w==
- dependencies:
- "@babel/compat-data" "^7.23.5"
- "@babel/helper-compilation-targets" "^7.23.6"
- "@babel/helper-plugin-utils" "^7.24.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.23.3"
-
"@babel/plugin-transform-object-rest-spread@^7.24.7", "@babel/plugin-transform-object-rest-spread@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18"
@@ -1625,7 +1752,15 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-optional-chaining@^7.0.0-0", "@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.25.9":
+"@babel/plugin-transform-optional-chaining@^7.0.0-0":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz#8238c785f9d5c1c515a90bf196efb50d075a4b26"
+ integrity sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
+
+"@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd"
integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==
@@ -1633,7 +1768,7 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
-"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15", "@babel/plugin-transform-parameters@^7.23.3":
+"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7":
version "7.23.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af"
integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==
@@ -1822,7 +1957,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-shorthand-properties@^7.0.0-0", "@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.25.9":
+"@babel/plugin-transform-shorthand-properties@^7.0.0-0":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz#532abdacdec87bfee1e0ef8e2fcdee543fe32b90"
+ integrity sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2"
integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==
@@ -1859,7 +2001,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-template-literals@^7.0.0-0", "@babel/plugin-transform-template-literals@^7.26.8":
+"@babel/plugin-transform-template-literals@^7.0.0-0":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz#1a0eb35d8bb3e6efc06c9fd40eb0bcef548328b8"
+ integrity sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-template-literals@^7.26.8":
version "7.26.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz#966b15d153a991172a540a69ad5e1845ced990b5"
integrity sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==
@@ -1894,6 +2043,17 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
"@babel/plugin-syntax-typescript" "^7.25.9"
+"@babel/plugin-transform-typescript@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz#441c5f9a4a1315039516c6c612fc66d5f4594e72"
+ integrity sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-create-class-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
+ "@babel/plugin-syntax-typescript" "^7.27.1"
+
"@babel/plugin-transform-unicode-escapes@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz#a75ef3947ce15363fccaa38e2dd9bc70b2788b82"
@@ -1917,7 +2077,15 @@
"@babel/helper-create-regexp-features-plugin" "^7.22.15"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-unicode-regex@^7.0.0-0", "@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.25.9":
+"@babel/plugin-transform-unicode-regex@^7.0.0-0":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz#25948f5c395db15f609028e370667ed8bae9af97"
+ integrity sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1"
integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==
@@ -2049,7 +2217,18 @@
"@babel/plugin-transform-modules-commonjs" "^7.23.3"
"@babel/plugin-transform-typescript" "^7.23.3"
-"@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.23.0":
+"@babel/preset-typescript@^7.16.7":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz#540359efa3028236958466342967522fd8f2a60c"
+ integrity sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-validator-option" "^7.27.1"
+ "@babel/plugin-syntax-jsx" "^7.27.1"
+ "@babel/plugin-transform-modules-commonjs" "^7.27.1"
+ "@babel/plugin-transform-typescript" "^7.28.5"
+
+"@babel/preset-typescript@^7.23.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz#4a570f1b8d104a242d923957ffa1eaff142a106d"
integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==
@@ -2267,6 +2446,19 @@
"@babel/types" "^7.28.4"
debug "^4.3.1"
+"@babel/traverse@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz#450cab9135d21a7a2ca9d2d35aa05c20e68c360b"
+ integrity sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/generator" "^7.28.5"
+ "@babel/helper-globals" "^7.28.0"
+ "@babel/parser" "^7.28.5"
+ "@babel/template" "^7.27.2"
+ "@babel/types" "^7.28.5"
+ debug "^4.3.1"
+
"@babel/types@^7.0.0", "@babel/types@^7.4.4", "@babel/types@^7.8.6":
version "7.9.6"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7"
@@ -2343,6 +2535,14 @@
"@babel/helper-string-parser" "^7.27.1"
"@babel/helper-validator-identifier" "^7.27.1"
+"@babel/types@^7.27.3", "@babel/types@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
+ integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==
+ dependencies:
+ "@babel/helper-string-parser" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.28.5"
+
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -2655,29 +2855,31 @@
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f"
integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
-"@expo/cli@0.24.11":
- version "0.24.11"
- resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.24.11.tgz#a200b5b63c909fe72ded0d3cfcf971f84c0f346a"
- integrity sha512-bQtXdonOgg2OgPjHd7D5IkiPObKyiLs+HVM2A1VFV1pOT/8kc2kF/I4lN/Y5uce03FC8v0VRv6rKrDQPlTVWlg==
+"@expo/cli@54.0.15":
+ version "54.0.15"
+ resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-54.0.15.tgz#63ca51d082fe0d683482c320f9b827c1637c01cb"
+ integrity sha512-tgaKFeYNRjZssPueZMm1+2cRek6mxEsthPoBX6NzQeDlzIzYBBpnAR6xH95UO6A7r0vduBeL2acIAV1Y5aSGJQ==
dependencies:
"@0no-co/graphql.web" "^1.0.8"
- "@babel/runtime" "^7.20.0"
"@expo/code-signing-certificates" "^0.0.5"
- "@expo/config" "~11.0.8"
- "@expo/config-plugins" "~10.0.2"
+ "@expo/config" "~12.0.10"
+ "@expo/config-plugins" "~54.0.2"
"@expo/devcert" "^1.1.2"
- "@expo/env" "~1.0.5"
- "@expo/image-utils" "^0.7.4"
- "@expo/json-file" "^9.1.4"
- "@expo/metro-config" "~0.20.13"
- "@expo/osascript" "^2.2.4"
- "@expo/package-manager" "^1.8.4"
- "@expo/plist" "^0.3.4"
- "@expo/prebuild-config" "^9.0.5"
+ "@expo/env" "~2.0.7"
+ "@expo/image-utils" "^0.8.7"
+ "@expo/json-file" "^10.0.7"
+ "@expo/mcp-tunnel" "~0.1.0"
+ "@expo/metro" "~54.1.0"
+ "@expo/metro-config" "~54.0.8"
+ "@expo/osascript" "^2.3.7"
+ "@expo/package-manager" "^1.9.8"
+ "@expo/plist" "^0.4.7"
+ "@expo/prebuild-config" "^54.0.6"
+ "@expo/schema-utils" "^0.1.7"
"@expo/spawn-async" "^1.7.2"
"@expo/ws-tunnel" "^1.0.1"
"@expo/xcpretty" "^4.3.0"
- "@react-native/dev-middleware" "0.79.2"
+ "@react-native/dev-middleware" "0.81.5"
"@urql/core" "^5.0.6"
"@urql/exchange-retry" "^1.3.0"
accepts "^1.3.8"
@@ -2691,10 +2893,11 @@
connect "^3.7.0"
debug "^4.3.4"
env-editor "^0.4.1"
+ expo-server "^1.0.4"
freeport-async "^2.0.0"
- getenv "^1.0.0"
+ getenv "^2.0.0"
glob "^10.4.2"
- lan-network "^0.1.4"
+ lan-network "^0.1.6"
minimatch "^9.0.0"
node-forge "^1.3.1"
npm-package-arg "^11.0.0"
@@ -2730,7 +2933,7 @@
node-forge "^1.2.1"
nullthrows "^1.1.1"
-"@expo/config-plugins@^9.0.0 || ^10.0.0", "@expo/config-plugins@~10.0.2":
+"@expo/config-plugins@^9.0.0 || ^10.0.0":
version "10.0.2"
resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-10.0.2.tgz#040867991e9c8c527b4f5c13a47bcf040a7479fe"
integrity sha512-TzUn3pPdpwCS0yYaSlZOClgDmCX8N4I2lfgitX5oStqmvpPtB+vqtdyqsVM02fQ2tlJIAqwBW+NHaHqqy8Jv7g==
@@ -2750,6 +2953,26 @@
xcode "^3.0.1"
xml2js "0.6.0"
+"@expo/config-plugins@~54.0.2":
+ version "54.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-54.0.4.tgz#b31cb16f6651342abcdafba600118245ecd9fb00"
+ integrity sha512-g2yXGICdoOw5i3LkQSDxl2Q5AlQCrG7oniu0pCPPO+UxGb7He4AFqSvPSy8HpRUj55io17hT62FTjYRD+d6j3Q==
+ dependencies:
+ "@expo/config-types" "^54.0.10"
+ "@expo/json-file" "~10.0.8"
+ "@expo/plist" "^0.4.8"
+ "@expo/sdk-runtime-versions" "^1.0.0"
+ chalk "^4.1.2"
+ debug "^4.3.5"
+ getenv "^2.0.0"
+ glob "^13.0.0"
+ resolve-from "^5.0.0"
+ semver "^7.5.4"
+ slash "^3.0.0"
+ slugify "^1.6.6"
+ xcode "^3.0.1"
+ xml2js "0.6.0"
+
"@expo/config-plugins@~54.0.3":
version "54.0.3"
resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-54.0.3.tgz#2b9ffd68a48e3b51299cdbe3ee777b9f5163fc03"
@@ -2775,12 +2998,7 @@
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-53.0.3.tgz#d083d9b095972e89eee96c41d085feb5b92d2749"
integrity sha512-V1e6CiM4TXtGxG/W2Msjp/QOx/vikLo5IUGMvEMjgAglBfGYx3PXfqsUb5aZDt6kqA3bDDwFuZoS5vNm/SYwSg==
-"@expo/config-types@^53.0.4":
- version "53.0.4"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-53.0.4.tgz#fe64fac734531ae883d18529b32586c23ffb1ceb"
- integrity sha512-0s+9vFx83WIToEr0Iwy4CcmiUXa5BgwBmEjylBB2eojX5XAMm9mJvw9KpjAb8m7zq2G0Q6bRbeufkzgbipuNQg==
-
-"@expo/config-types@^54.0.10":
+"@expo/config-types@^54.0.10", "@expo/config-types@^54.0.8":
version "54.0.10"
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-54.0.10.tgz#688f4338255d2fdea970f44e2dfd8e8d37dec292"
integrity sha512-/J16SC2an1LdtCZ67xhSkGXpALYUVUNyZws7v+PVsFZxClYehDSoKLqyRaGkpHlYrCc08bS0RF5E0JV6g50psA==
@@ -2790,36 +3008,17 @@
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-54.0.9.tgz#b9279c47fe249b774fbd3358b6abddea08f1bcec"
integrity sha512-Llf4jwcrAnrxgE5WCdAOxtMf8FGwS4Sk0SSgI0NnIaSyCnmOCAm80GPFvsK778Oj19Ub4tSyzdqufPyeQPksWw==
-"@expo/config@~11.0.7", "@expo/config@~11.0.8":
- version "11.0.8"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-11.0.8.tgz#658538d4321cf6edf6741f8b8506fda0046d5e94"
- integrity sha512-udLrpW4SvXUwF+ntJ0RzEjRbFoSS7Tr/rMrvhfISHWGbcZ09+c+QkI0O8y1sEBWQDpI/IlC9REPqGm5b7HweDw==
- dependencies:
- "@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~10.0.2"
- "@expo/config-types" "^53.0.3"
- "@expo/json-file" "^9.1.4"
- deepmerge "^4.3.1"
- getenv "^1.0.0"
- glob "^10.4.2"
- require-from-string "^2.0.2"
- resolve-from "^5.0.0"
- resolve-workspace-root "^2.0.0"
- semver "^7.6.0"
- slugify "^1.3.4"
- sucrase "3.35.0"
-
-"@expo/config@~11.0.9":
- version "11.0.9"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-11.0.9.tgz#0c8d02a1b2b4f9170f81b59cf99a6c57fe4e0e0a"
- integrity sha512-Rm2nnuwvPFBPmK0qlzx1DyGFcDq1KgahvdnYRuCYGDwOxUrf+cqYnj/K7cHijC1sBpp8fw550NVKMoLCsOodjw==
+"@expo/config@~12.0.10":
+ version "12.0.10"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-12.0.10.tgz#18acc0a2d5994dc167d1d4faca3e939de2bb95de"
+ integrity sha512-lJMof5Nqakq1DxGYlghYB/ogSBjmv4Fxn1ovyDmcjlRsQdFCXgu06gEUogkhPtc9wBt9WlTTfqENln5HHyLW6w==
dependencies:
"@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~10.0.2"
- "@expo/config-types" "^53.0.4"
- "@expo/json-file" "^9.1.4"
+ "@expo/config-plugins" "~54.0.2"
+ "@expo/config-types" "^54.0.8"
+ "@expo/json-file" "^10.0.7"
deepmerge "^4.3.1"
- getenv "^1.0.0"
+ getenv "^2.0.0"
glob "^10.4.2"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
@@ -2865,16 +3064,23 @@
tmp "^0.0.33"
tslib "^2.4.0"
-"@expo/env@~1.0.5":
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/@expo/env/-/env-1.0.5.tgz#b3b1aa18ab9838d8f40468e0321affc4c54377a2"
- integrity sha512-dtEZ4CAMaVrFu2+tezhU3FoGWtbzQl50xV+rNJE5lYVRjUflWiZkVHlHkWUlPAwDPifLy4TuissVfScGGPWR5g==
+"@expo/devtools@0.1.7":
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/@expo/devtools/-/devtools-0.1.7.tgz#bf4f552168ebd44c9fe63941bc4806fe2d222899"
+ integrity sha512-dfIa9qMyXN+0RfU6SN4rKeXZyzKWsnz6xBSDccjL4IRiE+fQ0t84zg0yxgN4t/WK2JU5v6v4fby7W7Crv9gJvA==
+ dependencies:
+ chalk "^4.1.2"
+
+"@expo/env@~2.0.7":
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/@expo/env/-/env-2.0.7.tgz#7b30d3ef9f262c131ac01d8e539e37dd04b8f4bd"
+ integrity sha512-BNETbLEohk3HQ2LxwwezpG8pq+h7Fs7/vAMP3eAtFT1BCpprLYoBBFZH7gW4aqGfqOcVP4Lc91j014verrYNGg==
dependencies:
chalk "^4.0.0"
debug "^4.3.4"
dotenv "~16.4.5"
dotenv-expand "~11.0.6"
- getenv "^1.0.0"
+ getenv "^2.0.0"
"@expo/env@~2.0.8":
version "2.0.8"
@@ -2887,38 +3093,24 @@
dotenv-expand "~11.0.6"
getenv "^2.0.0"
-"@expo/fingerprint@0.12.4":
- version "0.12.4"
- resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.12.4.tgz#d4cc4de50e7b6d4e03b0d38850d1e4a136b74c8c"
- integrity sha512-HOJVvjiQYVHIouCOfFf4JRrQvBDIV/12GVG2iwbw1iGwmpQVkPgEXa9lN0f2yuS4J3QXHs73wr9jvuCjMmJlfw==
+"@expo/fingerprint@0.15.3":
+ version "0.15.3"
+ resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.15.3.tgz#26e7231d1ebd69a375c02ba595bba7b06fe882bb"
+ integrity sha512-8YPJpEYlmV171fi+t+cSLMX1nC5ngY9j2FiN70dHldLpd6Ct6ouGhk96svJ4BQZwsqwII2pokwzrDAwqo4Z0FQ==
dependencies:
"@expo/spawn-async" "^1.7.2"
arg "^5.0.2"
chalk "^4.1.2"
debug "^4.3.4"
- find-up "^5.0.0"
- getenv "^1.0.0"
+ getenv "^2.0.0"
+ glob "^10.4.2"
+ ignore "^5.3.1"
minimatch "^9.0.0"
p-limit "^3.1.0"
resolve-from "^5.0.0"
semver "^7.6.0"
-"@expo/image-utils@^0.7.4":
- version "0.7.4"
- resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.7.4.tgz#8f19e53cfc3b66293d9b0749f703e667080895d0"
- integrity sha512-LcZ82EJy/t/a1avwIboeZbO6hlw8CvsIRh2k6SWPcAOvW0RqynyKFzUJsvnjWlhUzfBEn4oI7y/Pu5Xkw3KkkA==
- dependencies:
- "@expo/spawn-async" "^1.7.2"
- chalk "^4.0.0"
- getenv "^1.0.0"
- jimp-compact "0.16.1"
- parse-png "^2.1.0"
- resolve-from "^5.0.0"
- semver "^7.6.0"
- temp-dir "~2.0.0"
- unique-string "~2.0.0"
-
-"@expo/image-utils@^0.8.7":
+"@expo/image-utils@^0.8.7", "@expo/image-utils@^0.8.8":
version "0.8.8"
resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.8.8.tgz#db5d460fd0c7101b10e9d027ffbe42f9cf115248"
integrity sha512-HHHaG4J4nKjTtVa1GG9PCh763xlETScfEyNxxOvfTRr8IKPJckjTyqSLEtdJoFNJ1vqiABEjW7tqGhqGibZLeA==
@@ -2934,7 +3126,7 @@
temp-dir "~2.0.0"
unique-string "~2.0.0"
-"@expo/json-file@^10.0.8", "@expo/json-file@~10.0.7":
+"@expo/json-file@^10.0.7", "@expo/json-file@^10.0.8", "@expo/json-file@~10.0.7", "@expo/json-file@~10.0.8":
version "10.0.8"
resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-10.0.8.tgz#05e524d1ecc0011db0a6d66b525ea2f58cfe6d43"
integrity sha512-9LOTh1PgKizD1VXfGQ88LtDH0lRwq9lsTb4aichWTWSWqy3Ugfkhfm3BhzBIkJJfQQ5iJu3m/BoRlEIjoCGcnQ==
@@ -2942,7 +3134,7 @@
"@babel/code-frame" "~7.10.4"
json5 "^2.2.3"
-"@expo/json-file@^9.1.4", "@expo/json-file@~9.1.4":
+"@expo/json-file@~9.1.4":
version "9.1.4"
resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.1.4.tgz#e719d092c08afb3234643f9285e57c6a24989327"
integrity sha512-7Bv86X27fPERGhw8aJEZvRcH9sk+9BenDnEmrI3ZpywKodYSBgc8lX9Y32faNVQ/p0YbDK9zdJ0BfAKNAOyi0A==
@@ -2950,45 +3142,74 @@
"@babel/code-frame" "~7.10.4"
json5 "^2.2.3"
-"@expo/metro-config@0.20.13", "@expo/metro-config@~0.20.13":
- version "0.20.13"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.20.13.tgz#2de0ee17b7e8b79e57b8115b95ff13e6d55f992b"
- integrity sha512-yyhyBBX2HaqFpuGq8r73d9eB1nJeUWDrNDrPANWuXNwfM/fd5pCT1GXmlRe4CWPQ4dPOlYnBIyrEn5c2FI5J4w==
+"@expo/mcp-tunnel@~0.1.0":
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/@expo/mcp-tunnel/-/mcp-tunnel-0.1.0.tgz#ae4ce4320b2f97a9891783c2316f9936c912d126"
+ integrity sha512-rJ6hl0GnIZj9+ssaJvFsC7fwyrmndcGz+RGFzu+0gnlm78X01957yjtHgjcmnQAgL5hWEOR6pkT0ijY5nU5AWw==
+ dependencies:
+ ws "^8.18.3"
+ zod "^3.25.76"
+ zod-to-json-schema "^3.24.6"
+
+"@expo/metro-config@54.0.8", "@expo/metro-config@~54.0.8":
+ version "54.0.8"
+ resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-54.0.8.tgz#7e5bf551b23e8f4c8ec20504184e0a9988ffa86e"
+ integrity sha512-rCkDQ8IT6sgcGNy48O2cTE4NlazCAgAIsD5qBsNPJLZSS0XbaILvAgGsFt/4nrx0GMGj6iQcOn5ifwV4NssTmw==
dependencies:
+ "@babel/code-frame" "^7.20.0"
"@babel/core" "^7.20.0"
"@babel/generator" "^7.20.5"
- "@babel/parser" "^7.20.0"
- "@babel/types" "^7.20.0"
- "@expo/config" "~11.0.8"
- "@expo/env" "~1.0.5"
- "@expo/json-file" "~9.1.4"
+ "@expo/config" "~12.0.10"
+ "@expo/env" "~2.0.7"
+ "@expo/json-file" "~10.0.7"
+ "@expo/metro" "~54.1.0"
"@expo/spawn-async" "^1.7.2"
+ browserslist "^4.25.0"
chalk "^4.1.0"
debug "^4.3.2"
dotenv "~16.4.5"
dotenv-expand "~11.0.6"
- getenv "^1.0.0"
+ getenv "^2.0.0"
glob "^10.4.2"
+ hermes-parser "^0.29.1"
jsc-safe-url "^0.2.4"
- lightningcss "~1.27.0"
+ lightningcss "^1.30.1"
minimatch "^9.0.0"
postcss "~8.4.32"
resolve-from "^5.0.0"
-"@expo/osascript@^2.2.4":
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.2.4.tgz#4414d97f91e29260a9b361529d20875430dc0af5"
- integrity sha512-Q+Oyj+1pdRiHHpev9YjqfMZzByFH8UhKvSszxa0acTveijjDhQgWrq4e9T/cchBHi0GWZpGczWyiyJkk1wM1dg==
+"@expo/metro@~54.1.0":
+ version "54.1.0"
+ resolved "https://registry.yarnpkg.com/@expo/metro/-/metro-54.1.0.tgz#27765ef2c342c39086a2f5c9f932a375dc2ccad3"
+ integrity sha512-MgdeRNT/LH0v1wcO0TZp9Qn8zEF0X2ACI0wliPtv5kXVbXWI+yK9GyrstwLAiTXlULKVIg3HVSCCvmLu0M3tnw==
+ dependencies:
+ metro "0.83.2"
+ metro-babel-transformer "0.83.2"
+ metro-cache "0.83.2"
+ metro-cache-key "0.83.2"
+ metro-config "0.83.2"
+ metro-core "0.83.2"
+ metro-file-map "0.83.2"
+ metro-resolver "0.83.2"
+ metro-runtime "0.83.2"
+ metro-source-map "0.83.2"
+ metro-transform-plugins "0.83.2"
+ metro-transform-worker "0.83.2"
+
+"@expo/osascript@^2.3.7":
+ version "2.3.7"
+ resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.3.7.tgz#2d53ef06733593405c83767de7420510736e0fa9"
+ integrity sha512-IClSOXxR0YUFxIriUJVqyYki7lLMIHrrzOaP01yxAL1G8pj2DWV5eW1y5jSzIcIfSCNhtGsshGd1tU/AYup5iQ==
dependencies:
"@expo/spawn-async" "^1.7.2"
exec-async "^2.2.0"
-"@expo/package-manager@^1.8.4":
- version "1.8.4"
- resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.8.4.tgz#6126d93b25bbfec515436833e6f6ca5677b7e8bd"
- integrity sha512-8H8tLga/NS3iS7QaX/NneRPqbObnHvVCfMCo0ShudreOFmvmgqhYjRlkZTRstSyFqefai8ONaT4VmnLHneRYYg==
+"@expo/package-manager@^1.9.8":
+ version "1.9.8"
+ resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.9.8.tgz#8f6b46a2f5f4bf4f2c78507b1a7a368e0c2e2126"
+ integrity sha512-4/I6OWquKXYnzo38pkISHCOCOXxfeEmu4uDoERq1Ei/9Ur/s9y3kLbAamEkitUkDC7gHk1INxRWEfFNzGbmOrA==
dependencies:
- "@expo/json-file" "^9.1.4"
+ "@expo/json-file" "^10.0.7"
"@expo/spawn-async" "^1.7.2"
chalk "^4.0.0"
npm-package-arg "^11.0.0"
@@ -3004,7 +3225,7 @@
base64-js "^1.2.3"
xmlbuilder "^15.1.1"
-"@expo/plist@^0.4.7":
+"@expo/plist@^0.4.7", "@expo/plist@^0.4.8":
version "0.4.8"
resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.4.8.tgz#e014511a4a5008cf2b832b91caa8e9f2704127cc"
integrity sha512-pfNtErGGzzRwHP+5+RqswzPDKkZrx+Cli0mzjQaus1ZWFsog5ibL+nVT3NcporW51o8ggnt7x813vtRbPiyOrQ==
@@ -3013,22 +3234,27 @@
base64-js "^1.2.3"
xmlbuilder "^15.1.1"
-"@expo/prebuild-config@^9.0.5":
- version "9.0.5"
- resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-9.0.5.tgz#b8b864b5e19489a1f66442ae30d5d7295f658297"
- integrity sha512-oiSVU5ePu9lsOvn5p4xplqjzPlcZHzKYwzuonTa9GCH1GxcOEIBsvMVQiHBXHtqvgV2dztjm34kdXV//+9jtCA==
+"@expo/prebuild-config@^54.0.6":
+ version "54.0.6"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-54.0.6.tgz#0f0daed0195efbb33d91a730052b208507f94eed"
+ integrity sha512-xowuMmyPNy+WTNq+YX0m0EFO/Knc68swjThk4dKivgZa8zI1UjvFXOBIOp8RX4ljCXLzwxQJM5oBBTvyn+59ZA==
dependencies:
- "@expo/config" "~11.0.7"
- "@expo/config-plugins" "~10.0.2"
- "@expo/config-types" "^53.0.3"
- "@expo/image-utils" "^0.7.4"
- "@expo/json-file" "^9.1.4"
- "@react-native/normalize-colors" "0.79.2"
+ "@expo/config" "~12.0.10"
+ "@expo/config-plugins" "~54.0.2"
+ "@expo/config-types" "^54.0.8"
+ "@expo/image-utils" "^0.8.7"
+ "@expo/json-file" "^10.0.7"
+ "@react-native/normalize-colors" "0.81.5"
debug "^4.3.1"
resolve-from "^5.0.0"
semver "^7.6.0"
xml2js "0.6.0"
+"@expo/schema-utils@^0.1.7":
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/@expo/schema-utils/-/schema-utils-0.1.7.tgz#38baa0effa0823cd4eca3f05e5eee3bde311da12"
+ integrity sha512-jWHoSuwRb5ZczjahrychMJ3GWZu54jK9ulNdh1d4OzAEq672K9E5yOlnlBsfIHWHGzUAT+0CL7Yt1INiXTz68g==
+
"@expo/sdk-runtime-versions@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz#d7ebd21b19f1c6b0395e50d78da4416941c57f7c"
@@ -3041,16 +3267,16 @@
dependencies:
cross-spawn "^7.0.3"
-"@expo/vector-icons@^14.0.0":
- version "14.0.0"
- resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-14.0.0.tgz#48ce0aa5c05873b07c0c78bfe16c870388f4de9a"
- integrity sha512-5orm59pdnBQlovhU9k4DbjMUZBHNlku7IRgFY56f7pcaaCnXq9yaLJoOQl9sMwNdFzf4gnkTyHmR5uN10mI9rA==
-
"@expo/vector-icons@^14.1.0":
version "14.1.0"
resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-14.1.0.tgz#d3dddad8b6ea60502e0fe5485b86751827606ce4"
integrity sha512-7T09UE9h8QDTsUeMGymB4i+iqvtEeaO5VvUjryFB4tugDTG/bkzViWA74hm5pfjjDEhYMXWaX112mcvhccmIwQ==
+"@expo/vector-icons@^15.0.3":
+ version "15.0.3"
+ resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-15.0.3.tgz#12c38d4e6cc927dd0500e4591ac00672a8909748"
+ integrity sha512-SBUyYKphmlfUBqxSfDdJ3jAdEVSALS2VUPOUyqn48oZmb2TL/O7t7/PQm5v4NQujYEPLPMTLn9KVw6H7twwbTA==
+
"@expo/ws-tunnel@^1.0.1":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@expo/ws-tunnel/-/ws-tunnel-1.0.6.tgz#92b70e7264ad42ea07f28a20f2f540b91d07bdd9"
@@ -4016,10 +4242,10 @@
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
-"@react-native-async-storage/async-storage@^1.22.3":
- version "1.22.3"
- resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.22.3.tgz#ad490236a9eda8ac68cffc12c738f20b1815464e"
- integrity sha512-Ov3wjuqxHd62tLYfgTjxj77YRYWra3A4Fi8uICIPcePgNO2WkS5B0ADXt9e/JLzSCNqVlXCq4Fir/gHmZTU9ww==
+"@react-native-async-storage/async-storage@2.2.0":
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-2.2.0.tgz#a3aa565253e46286655560172f4e366e8969f5ad"
+ integrity sha512-gvRvjR5JAaUZF8tv2Kcq/Gbt3JHwbKFYfmb445rhOj6NUMx3qPLixmDx5pZAyb9at1bYvJ4/eTUipU5aki45xw==
dependencies:
merge-options "^3.0.4"
@@ -4042,17 +4268,27 @@
chalk "^4.1.2"
execa "^5.0.0"
-"@react-native-community/cli-clean@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-18.0.0.tgz#cdb414c069e0f6d2c1bca02cb48ec3c0f9686e3e"
- integrity sha512-+k64EnJaMI5U8iNDF9AftHBJW+pO/isAhncEXuKRc6IjRtIh6yoaUIIf5+C98fgjfux7CNRZAMQIkPbZodv2Gw==
+"@react-native-community/cli-clean@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-20.0.0.tgz#e685f5404195ded69c81d1394e8c5eb332b780bc"
+ integrity sha512-YmdNRcT+Dp8lC7CfxSDIfPMbVPEXVFzBH62VZNbYGxjyakqAvoQUFTYPgM2AyFusAr4wDFbDOsEv88gCDwR3ig==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
fast-glob "^3.3.2"
-"@react-native-community/cli-config-android@18.0.0", "@react-native-community/cli-config-android@^18.0.0":
+"@react-native-community/cli-config-android@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-android/-/cli-config-android-20.0.0.tgz#756bd8f2d5c47023964551612cc48a1fecc9a7e4"
+ integrity sha512-asv60qYCnL1v0QFWcG9r1zckeFlKG+14GGNyPXY72Eea7RX5Cxdx8Pb6fIPKroWH1HEWjYH9KKHksMSnf9FMKw==
+ dependencies:
+ "@react-native-community/cli-tools" "20.0.0"
+ chalk "^4.1.2"
+ fast-glob "^3.3.2"
+ fast-xml-parser "^4.4.1"
+
+"@react-native-community/cli-config-android@^18.0.0":
version "18.0.0"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-android/-/cli-config-android-18.0.0.tgz#9f154a05142d881f9f4950246f1d9bcd2ae2b8d0"
integrity sha512-pgnhEO2cmOeb+bBFEBZFYjeFjDTqWoV0JTorTiugj9bb4RQRCl8cr35baVlBGhxAuaio3722CsJ9GRF1oHjP8w==
@@ -4062,7 +4298,17 @@
fast-glob "^3.3.2"
fast-xml-parser "^4.4.1"
-"@react-native-community/cli-config-apple@18.0.0", "@react-native-community/cli-config-apple@^18.0.0":
+"@react-native-community/cli-config-apple@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-apple/-/cli-config-apple-20.0.0.tgz#eaef1db689a4f205cf665306c04e4d717c5d7d46"
+ integrity sha512-PS1gNOdpeQ6w7dVu1zi++E+ix2D0ZkGC2SQP6Y/Qp002wG4se56esLXItYiiLrJkhH21P28fXdmYvTEkjSm9/Q==
+ dependencies:
+ "@react-native-community/cli-tools" "20.0.0"
+ chalk "^4.1.2"
+ execa "^5.0.0"
+ fast-glob "^3.3.2"
+
+"@react-native-community/cli-config-apple@^18.0.0":
version "18.0.0"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-apple/-/cli-config-apple-18.0.0.tgz#ab7ea261e51e3ebe0bacce93bfa010fadd3e2ac2"
integrity sha512-6edjTt3mlNMFBuB/Xd6u0O7GEkhJiKvQgmcoBH18FsNy5cpiHDwQsG8EWM5cHeINp1gMK845qq9fFsTko6gqyQ==
@@ -4084,12 +4330,12 @@
glob "^7.1.3"
joi "^17.2.1"
-"@react-native-community/cli-config@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-18.0.0.tgz#95252f881b7c9abbffe7bc87b911de2a3ed9a68f"
- integrity sha512-GUGvyek06JRF4mfd9zXao9YQW4+H8ny69HznqNXVRtVSIIekFyjOpKQeSEzdcyqJEEa5gej22GOz1JCHMKBccg==
+"@react-native-community/cli-config@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-20.0.0.tgz#890e3cdb7779f936bd50f2fe2601f0fdd917b3e6"
+ integrity sha512-5Ky9ceYuDqG62VIIpbOmkg8Lybj2fUjf/5wK4UO107uRqejBgNgKsbGnIZgEhREcaSEOkujWrroJ9gweueLfBg==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
cosmiconfig "^9.0.0"
deepmerge "^4.3.0"
@@ -4125,16 +4371,16 @@
wcwidth "^1.0.1"
yaml "^2.2.1"
-"@react-native-community/cli-doctor@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-18.0.0.tgz#5d1f90e355b8b9ca7c7d860acef147b8979495ec"
- integrity sha512-cD3LJfu2h2QSFmZai+fl7RrORKodd5XHSuB7Y9oF1zkebpRYN720vaUtK+GsepqBOElwKk5gl8uVolJ3j+xm8A==
+"@react-native-community/cli-doctor@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-20.0.0.tgz#4d19108dafffc4727654dc4fc17f8f170519f130"
+ integrity sha512-cPHspi59+Fy41FDVxt62ZWoicCZ1o34k8LAl64NVSY0lwPl+CEi78jipXJhtfkVqSTetloA8zexa/vSAcJy57Q==
dependencies:
- "@react-native-community/cli-config" "18.0.0"
- "@react-native-community/cli-platform-android" "18.0.0"
- "@react-native-community/cli-platform-apple" "18.0.0"
- "@react-native-community/cli-platform-ios" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-config" "20.0.0"
+ "@react-native-community/cli-platform-android" "20.0.0"
+ "@react-native-community/cli-platform-apple" "20.0.0"
+ "@react-native-community/cli-platform-ios" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
command-exists "^1.2.8"
deepmerge "^4.3.0"
@@ -4168,24 +4414,24 @@
glob "^7.1.3"
logkitty "^0.7.1"
-"@react-native-community/cli-platform-android@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-18.0.0.tgz#6bc69b0cccaa8d8138d31eb9b449e17528cd8f63"
- integrity sha512-3Y3RleN/des1C3oRS6s6fDvFYKN0KwsLrYFRpVx9vzdDnH1OGyFJOy4DbrruSPtdNiHUpvvHnOOxeLMj0+/tmw==
+"@react-native-community/cli-platform-android@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-20.0.0.tgz#f2f6c666e8c878abf39bde1f3281198ba6e3d5b3"
+ integrity sha512-th3ji1GRcV6ACelgC0wJtt9daDZ+63/52KTwL39xXGoqczFjml4qERK90/ppcXU0Ilgq55ANF8Pr+UotQ2AB/A==
dependencies:
- "@react-native-community/cli-config-android" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-config-android" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
logkitty "^0.7.1"
-"@react-native-community/cli-platform-apple@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-18.0.0.tgz#044b5a57ec81960f5bdbcf44f18f2fe7931fa5f7"
- integrity sha512-zD18gdP5Wr8BSLJ79xtHuPYcg2Vi/nL+WsGsPm7TZjzR5ZU2WbY/tZ+qTGVTQYhQaah+92sU+Dam7gStMrF/fA==
+"@react-native-community/cli-platform-apple@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-20.0.0.tgz#976f535278b6671703fce5dc91833cedd45a1040"
+ integrity sha512-rZZCnAjUHN1XBgiWTAMwEKpbVTO4IHBSecdd1VxJFeTZ7WjmstqA6L/HXcnueBgxrzTCRqvkRIyEQXxC1OfhGw==
dependencies:
- "@react-native-community/cli-config-apple" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-config-apple" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
fast-xml-parser "^4.4.1"
@@ -4202,12 +4448,12 @@
glob "^7.1.3"
ora "^5.4.1"
-"@react-native-community/cli-platform-ios@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-18.0.0.tgz#75ccaddf974d5e3ca65a9d7ace0b4cafe7df4a44"
- integrity sha512-05Nvkkre/4Gao1TYqyP1wGet8td1dAH0CLJKqLNl9Te6ihnrQ8/8OhjIna5xw0iEFr9An8VdLfaPu1Dgv2qAnQ==
+"@react-native-community/cli-platform-ios@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-20.0.0.tgz#382c1781c352ef5d4c8a6357e552a2e51a722f75"
+ integrity sha512-Z35M+4gUJgtS4WqgpKU9/XYur70nmj3Q65c9USyTq6v/7YJ4VmBkmhC9BticPs6wuQ9Jcv0NyVCY0Wmh6kMMYw==
dependencies:
- "@react-native-community/cli-platform-apple" "18.0.0"
+ "@react-native-community/cli-platform-apple" "20.0.0"
"@react-native-community/cli-plugin-metro@12.3.6":
version "12.3.6"
@@ -4229,19 +4475,19 @@
serve-static "^1.13.1"
ws "^7.5.1"
-"@react-native-community/cli-server-api@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-18.0.0.tgz#172df67c473361e060689a50d7aed93efeae4456"
- integrity sha512-tdmGV7ZntYmzrXWheZNpAy6dVI2yrsX4sQH+xAzU7lCfKHk6J8GucxedduXnB5qBB4JgSrrbzg2RLNxv5v0S/Q==
+"@react-native-community/cli-server-api@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-20.0.0.tgz#67399e213341449f1785476a35753c58bae8a260"
+ integrity sha512-Ves21bXtjUK3tQbtqw/NdzpMW1vR2HvYCkUQ/MXKrJcPjgJnXQpSnTqHXz6ZdBlMbbwLJXOhSPiYzxb5/v4CDg==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
body-parser "^1.20.3"
compression "^1.7.1"
connect "^3.6.5"
errorhandler "^1.5.1"
nocache "^3.0.1"
open "^6.2.0"
- pretty-format "^26.6.2"
+ pretty-format "^29.7.0"
serve-static "^1.13.1"
ws "^6.2.3"
@@ -4277,6 +4523,22 @@
prompts "^2.4.2"
semver "^7.5.2"
+"@react-native-community/cli-tools@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-20.0.0.tgz#a20a80e58da07dd0cc02c897e8dada21bd289bea"
+ integrity sha512-akSZGxr1IajJ8n0YCwQoA3DI0HttJ0WB7M3nVpb0lOM+rJpsBN7WG5Ft+8ozb6HyIPX+O+lLeYazxn5VNG/Xhw==
+ dependencies:
+ "@vscode/sudo-prompt" "^9.0.0"
+ appdirsjs "^1.2.4"
+ chalk "^4.1.2"
+ execa "^5.0.0"
+ find-up "^5.0.0"
+ launch-editor "^2.9.1"
+ mime "^2.4.1"
+ ora "^5.4.1"
+ prompts "^2.4.2"
+ semver "^7.5.2"
+
"@react-native-community/cli-types@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-12.3.6.tgz#239de348800fe1ffba3eb1fe0edbeb9306981e57"
@@ -4284,10 +4546,10 @@
dependencies:
joi "^17.2.1"
-"@react-native-community/cli-types@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-18.0.0.tgz#225159de80c0b6a39f993fa003030c2eca2add00"
- integrity sha512-J84+4IRXl8WlVdoe1maTD5skYZZO9CbQ6LNXEHx1kaZcFmvPZKfjsaxuyQ+8BsSqZnM2izOw8dEWnAp/Zuwb0w==
+"@react-native-community/cli-types@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-20.0.0.tgz#f38988d21538a0537757782e3e44f088e6715708"
+ integrity sha512-7J4hzGWOPTBV1d30Pf2NidV+bfCWpjfCOiGO3HUhz1fH4MvBM0FbbBmE9LE5NnMz7M8XSRSi68ZGYQXgLBB2Qw==
dependencies:
joi "^17.2.1"
@@ -4315,17 +4577,17 @@
prompts "^2.4.2"
semver "^7.5.2"
-"@react-native-community/cli@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-18.0.0.tgz#27d0160b7c0a44b1bcc0f45d736bbc6b7d2d5ca6"
- integrity sha512-DyKptlG78XPFo7tDod+we5a3R+U9qjyhaVFbOPvH4pFNu5Dehewtol/srl44K6Cszq0aEMlAJZ3juk0W4WnOJA==
- dependencies:
- "@react-native-community/cli-clean" "18.0.0"
- "@react-native-community/cli-config" "18.0.0"
- "@react-native-community/cli-doctor" "18.0.0"
- "@react-native-community/cli-server-api" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
- "@react-native-community/cli-types" "18.0.0"
+"@react-native-community/cli@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-20.0.0.tgz#a9155bd63e0cf45aafb4cc49c390ceb3bde64c74"
+ integrity sha512-/cMnGl5V1rqnbElY1Fvga1vfw0d3bnqiJLx2+2oh7l9ulnXfVRWb5tU2kgBqiMxuDOKA+DQoifC9q/tvkj5K2w==
+ dependencies:
+ "@react-native-community/cli-clean" "20.0.0"
+ "@react-native-community/cli-config" "20.0.0"
+ "@react-native-community/cli-doctor" "20.0.0"
+ "@react-native-community/cli-server-api" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
+ "@react-native-community/cli-types" "20.0.0"
chalk "^4.1.2"
commander "^9.4.1"
deepmerge "^4.3.0"
@@ -4336,10 +4598,10 @@
prompts "^2.4.2"
semver "^7.5.2"
-"@react-native-community/datetimepicker@^8.3.0":
- version "8.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/datetimepicker/-/datetimepicker-8.3.0.tgz#d734a77ae5fdf9585ea2eba0d2b5cf47404c0a09"
- integrity sha512-K/KgaJbLtjMpx4PaG4efrVIcSe6+DbLufeX1lwPB5YY8i3sq9dOh6WcAcMTLbaRTUpurebQTkl7puHPFm9GalA==
+"@react-native-community/datetimepicker@8.4.4":
+ version "8.4.4"
+ resolved "https://registry.yarnpkg.com/@react-native-community/datetimepicker/-/datetimepicker-8.4.4.tgz#2160a808b596e85240cee2415be2eb2bd80d2e92"
+ integrity sha512-bc4ZixEHxZC9/qf5gbdYvIJiLZ5CLmEsC3j+Yhe1D1KC/3QhaIfGDVdUcid0PdlSoGOSEq4VlB93AWyetEyBSQ==
dependencies:
invariant "^2.2.4"
@@ -4348,15 +4610,15 @@
resolved "https://registry.yarnpkg.com/@react-native-community/hooks/-/hooks-100.1.0.tgz#34cfa9e986b84a8babfe667dc3ec497954aef8f1"
integrity sha512-aXESGr6WcnwyeIl+SiCLNFpbApzTmupyYzm2OkGjMuwHr42+a3G65xxTxN/xHuNdTVWO0dXbOwyLgEkQ0i/qZg==
-"@react-native-community/netinfo@^11.3.1":
- version "11.3.1"
- resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-11.3.1.tgz#4539371a2f4bd402d932031be82c2449ed63a1a5"
- integrity sha512-UBnJxyV0b7i9Moa97Av+HKho1ByzX0DtbJXzUQS5E3xhQs6P2D/Os0iw3ouy7joY1TVd6uIhplPbr7l1SJNaNQ==
+"@react-native-community/netinfo@11.4.1":
+ version "11.4.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-11.4.1.tgz#a3c247aceab35f75dd0aa4bfa85d2be5a4508688"
+ integrity sha512-B0BYAkghz3Q2V09BF88RA601XursIEA111tnc2JOaN7axJWmNefmfjZqw/KdSxKZp7CZUuPpjBmz/WCR9uaHYg==
-"@react-native-community/slider@^4.5.0":
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/slider/-/slider-4.5.0.tgz#5c55488ee30060cd87100fb746b9d8655dbab04e"
- integrity sha512-pyUvNTvu5IfCI5abzqRfO/dd3A009RC66RXZE6t0gyOwI/j0QDlq9VZRv3rjkpuIvNTnsYj+m5BHlh0DkSYUyA==
+"@react-native-community/slider@5.0.1":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/slider/-/slider-5.0.1.tgz#478789e526af31e0660c6f49fa5c5429d8d4287b"
+ integrity sha512-K3JRWkIW4wQ79YJ6+BPZzp1SamoikxfPRw7Yw4B4PElEQmqZFrmH9M5LxvIo460/3QSrZF/wCgi3qizJt7g/iw==
"@react-native-cookies/cookies@6.2.1":
version "6.2.1"
@@ -4386,25 +4648,25 @@
dependencies:
stacktrace-js "^2.0.2"
-"@react-native-masked-view/masked-view@^0.3.1":
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.1.tgz#5bd76f17004a6ccbcec03856893777ee91f23d29"
- integrity sha512-uVm8U6nwFIlUd1iDIB5cS+lDadApKR+l8k4k84d9hn+GN4lzAIJhUZ9syYX7c022MxNgAlbxoFLt0pqKoyaAGg==
+"@react-native-masked-view/masked-view@0.3.2":
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.2.tgz#7064533a573e3539ec912f59c1f457371bf49dd9"
+ integrity sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ==
-"@react-native-picker/picker@^2.11.0":
- version "2.11.0"
- resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-2.11.0.tgz#4587fbce6a382adedad74311e96ee10bb2b2d63a"
- integrity sha512-QuZU6gbxmOID5zZgd/H90NgBnbJ3VV6qVzp6c7/dDrmWdX8S0X5YFYgDcQFjE3dRen9wB9FWnj2VVdPU64adSg==
+"@react-native-picker/picker@2.11.1":
+ version "2.11.1"
+ resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-2.11.1.tgz#d8884440abc5f75579d82f9888e50ca047c9ec14"
+ integrity sha512-ThklnkK4fV3yynnIIRBkxxjxR4IFbdMNJVF6tlLdOJ/zEFUEFUEdXY0KmH0iYzMwY8W4/InWsLiA7AkpAbnexA==
"@react-native/assets-registry@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.73.1.tgz#e2a6b73b16c183a270f338dc69c36039b3946e85"
integrity sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==
-"@react-native/assets-registry@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.79.4.tgz#6b1f6c843ae7b6e6e6804f897c182301c0f03d8c"
- integrity sha512-7PjHNRtYlc36B7P1PHme8ZV0ZJ/xsA/LvMoXe6EX++t7tSPJ8iYCMBryZhcdnztgce73b94Hfx6TTGbLF+xtUg==
+"@react-native/assets-registry@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.81.5.tgz#d22c924fa6f6d4a463c5af34ce91f38756c0fa7d"
+ integrity sha512-705B6x/5Kxm1RKRvSv0ADYWm5JOnoiQ1ufW7h8uu2E6G9Of/eE6hP/Ivw3U5jI16ERqZxiKQwk34VJbB0niX9w==
"@react-native/babel-plugin-codegen@0.73.4":
version "0.73.4"
@@ -4413,28 +4675,13 @@
dependencies:
"@react-native/codegen" "0.73.3"
-"@react-native/babel-plugin-codegen@0.76.9":
- version "0.76.9"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.76.9.tgz#56c4bc21d08ea522e7266ffcec7d5a52e9092a0e"
- integrity sha512-vxL/vtDEIYHfWKm5oTaEmwcnNGsua/i9OjIxBDBFiJDu5i5RU3bpmDiXQm/bJxrJNPRp5lW0I0kpGihVhnMAIQ==
- dependencies:
- "@react-native/codegen" "0.76.9"
-
-"@react-native/babel-plugin-codegen@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.2.tgz#f3f86766a01487aaaa623ec62514af4c84400953"
- integrity sha512-d+NB7Uosn2ZWd4O4+7ZkB6q1a+0z2opD/4+Bzhk/Tv6fc5FrSftK2Noqxvo3/bhbdGFVPxf0yvLE8et4W17x/Q==
- dependencies:
- "@babel/traverse" "^7.25.3"
- "@react-native/codegen" "0.79.2"
-
-"@react-native/babel-plugin-codegen@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.4.tgz#d7a3068deb6ed924ba52c909a7b1885f8378ca65"
- integrity sha512-quhytIlDedR3ircRwifa22CaWVUVnkxccrrgztroCZaemSJM+HLurKJrjKWm0J5jV9ed+d+9Qyb1YB0syTHDjg==
+"@react-native/babel-plugin-codegen@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.81.5.tgz#328d03f42c32b5a8cc2dee1aa84a7c48dddc5f18"
+ integrity sha512-oF71cIH6je3fSLi6VPjjC3Sgyyn57JLHXs+mHWc9MoCiJJcM4nqsS5J38zv1XQ8d3zOW2JtHro+LF0tagj2bfQ==
dependencies:
"@babel/traverse" "^7.25.3"
- "@react-native/codegen" "0.79.4"
+ "@react-native/codegen" "0.81.5"
"@react-native/babel-preset@0.73.21":
version "0.73.21"
@@ -4470,126 +4717,24 @@
"@babel/plugin-transform-private-methods" "^7.22.5"
"@babel/plugin-transform-private-property-in-object" "^7.22.11"
"@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.0.0"
- "@babel/plugin-transform-react-jsx-self" "^7.0.0"
- "@babel/plugin-transform-react-jsx-source" "^7.0.0"
- "@babel/plugin-transform-runtime" "^7.0.0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0"
- "@babel/plugin-transform-spread" "^7.0.0"
- "@babel/plugin-transform-sticky-regex" "^7.0.0"
- "@babel/plugin-transform-typescript" "^7.5.0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0"
- "@babel/template" "^7.0.0"
- "@react-native/babel-plugin-codegen" "0.73.4"
- babel-plugin-transform-flow-enums "^0.0.2"
- react-refresh "^0.14.0"
-
-"@react-native/babel-preset@0.76.9":
- version "0.76.9"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.76.9.tgz#08bc4198c67a0d07905dcc48cb4105b8d0f6ecd9"
- integrity sha512-TbSeCplCM6WhL3hR2MjC/E1a9cRnMLz7i767T7mP90oWkklEjyPxWl+0GGoVGnJ8FC/jLUupg/HvREKjjif6lw==
- dependencies:
- "@babel/core" "^7.25.2"
- "@babel/plugin-proposal-export-default-from" "^7.24.7"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-default-from" "^7.24.7"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-transform-arrow-functions" "^7.24.7"
- "@babel/plugin-transform-async-generator-functions" "^7.25.4"
- "@babel/plugin-transform-async-to-generator" "^7.24.7"
- "@babel/plugin-transform-block-scoping" "^7.25.0"
- "@babel/plugin-transform-class-properties" "^7.25.4"
- "@babel/plugin-transform-classes" "^7.25.4"
- "@babel/plugin-transform-computed-properties" "^7.24.7"
- "@babel/plugin-transform-destructuring" "^7.24.8"
- "@babel/plugin-transform-flow-strip-types" "^7.25.2"
- "@babel/plugin-transform-for-of" "^7.24.7"
- "@babel/plugin-transform-function-name" "^7.25.1"
- "@babel/plugin-transform-literals" "^7.25.2"
- "@babel/plugin-transform-logical-assignment-operators" "^7.24.7"
- "@babel/plugin-transform-modules-commonjs" "^7.24.8"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7"
- "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7"
- "@babel/plugin-transform-numeric-separator" "^7.24.7"
- "@babel/plugin-transform-object-rest-spread" "^7.24.7"
- "@babel/plugin-transform-optional-catch-binding" "^7.24.7"
- "@babel/plugin-transform-optional-chaining" "^7.24.8"
- "@babel/plugin-transform-parameters" "^7.24.7"
- "@babel/plugin-transform-private-methods" "^7.24.7"
- "@babel/plugin-transform-private-property-in-object" "^7.24.7"
- "@babel/plugin-transform-react-display-name" "^7.24.7"
- "@babel/plugin-transform-react-jsx" "^7.25.2"
- "@babel/plugin-transform-react-jsx-self" "^7.24.7"
- "@babel/plugin-transform-react-jsx-source" "^7.24.7"
- "@babel/plugin-transform-regenerator" "^7.24.7"
- "@babel/plugin-transform-runtime" "^7.24.7"
- "@babel/plugin-transform-shorthand-properties" "^7.24.7"
- "@babel/plugin-transform-spread" "^7.24.7"
- "@babel/plugin-transform-sticky-regex" "^7.24.7"
- "@babel/plugin-transform-typescript" "^7.25.2"
- "@babel/plugin-transform-unicode-regex" "^7.24.7"
- "@babel/template" "^7.25.0"
- "@react-native/babel-plugin-codegen" "0.76.9"
- babel-plugin-syntax-hermes-parser "^0.25.1"
- babel-plugin-transform-flow-enums "^0.0.2"
- react-refresh "^0.14.0"
-
-"@react-native/babel-preset@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.79.2.tgz#5a683a6efeea357a326f70c84a881be2bafbeae3"
- integrity sha512-/HNu869oUq4FUXizpiNWrIhucsYZqu0/0spudJEzk9SEKar0EjVDP7zkg/sKK+KccNypDQGW7nFXT8onzvQ3og==
- dependencies:
- "@babel/core" "^7.25.2"
- "@babel/plugin-proposal-export-default-from" "^7.24.7"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-default-from" "^7.24.7"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-transform-arrow-functions" "^7.24.7"
- "@babel/plugin-transform-async-generator-functions" "^7.25.4"
- "@babel/plugin-transform-async-to-generator" "^7.24.7"
- "@babel/plugin-transform-block-scoping" "^7.25.0"
- "@babel/plugin-transform-class-properties" "^7.25.4"
- "@babel/plugin-transform-classes" "^7.25.4"
- "@babel/plugin-transform-computed-properties" "^7.24.7"
- "@babel/plugin-transform-destructuring" "^7.24.8"
- "@babel/plugin-transform-flow-strip-types" "^7.25.2"
- "@babel/plugin-transform-for-of" "^7.24.7"
- "@babel/plugin-transform-function-name" "^7.25.1"
- "@babel/plugin-transform-literals" "^7.25.2"
- "@babel/plugin-transform-logical-assignment-operators" "^7.24.7"
- "@babel/plugin-transform-modules-commonjs" "^7.24.8"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7"
- "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7"
- "@babel/plugin-transform-numeric-separator" "^7.24.7"
- "@babel/plugin-transform-object-rest-spread" "^7.24.7"
- "@babel/plugin-transform-optional-catch-binding" "^7.24.7"
- "@babel/plugin-transform-optional-chaining" "^7.24.8"
- "@babel/plugin-transform-parameters" "^7.24.7"
- "@babel/plugin-transform-private-methods" "^7.24.7"
- "@babel/plugin-transform-private-property-in-object" "^7.24.7"
- "@babel/plugin-transform-react-display-name" "^7.24.7"
- "@babel/plugin-transform-react-jsx" "^7.25.2"
- "@babel/plugin-transform-react-jsx-self" "^7.24.7"
- "@babel/plugin-transform-react-jsx-source" "^7.24.7"
- "@babel/plugin-transform-regenerator" "^7.24.7"
- "@babel/plugin-transform-runtime" "^7.24.7"
- "@babel/plugin-transform-shorthand-properties" "^7.24.7"
- "@babel/plugin-transform-spread" "^7.24.7"
- "@babel/plugin-transform-sticky-regex" "^7.24.7"
- "@babel/plugin-transform-typescript" "^7.25.2"
- "@babel/plugin-transform-unicode-regex" "^7.24.7"
- "@babel/template" "^7.25.0"
- "@react-native/babel-plugin-codegen" "0.79.2"
- babel-plugin-syntax-hermes-parser "0.25.1"
+ "@babel/plugin-transform-react-jsx" "^7.0.0"
+ "@babel/plugin-transform-react-jsx-self" "^7.0.0"
+ "@babel/plugin-transform-react-jsx-source" "^7.0.0"
+ "@babel/plugin-transform-runtime" "^7.0.0"
+ "@babel/plugin-transform-shorthand-properties" "^7.0.0"
+ "@babel/plugin-transform-spread" "^7.0.0"
+ "@babel/plugin-transform-sticky-regex" "^7.0.0"
+ "@babel/plugin-transform-typescript" "^7.5.0"
+ "@babel/plugin-transform-unicode-regex" "^7.0.0"
+ "@babel/template" "^7.0.0"
+ "@react-native/babel-plugin-codegen" "0.73.4"
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
-"@react-native/babel-preset@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.79.4.tgz#bfc6ccbaf5258967cc2233b2f674b891c4b68e91"
- integrity sha512-El9JvYKiNfnkQ3qR7zJvvRdP3DX2i4BGYlIricWQishI3gWAfm88FQYFC2CcGoMQWJQEPN4jnDMpoISAJDEN4g==
+"@react-native/babel-preset@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.81.5.tgz#e8b7969d21f87ef4e41e603248e8a70c44b4a5bb"
+ integrity sha512-UoI/x/5tCmi+pZ3c1+Ypr1DaRMDLI3y+Q70pVLLVgrnC3DHsHRIbHcCHIeG/IJvoeFqFM2sTdhSOLJrf8lOPrA==
dependencies:
"@babel/core" "^7.25.2"
"@babel/plugin-proposal-export-default-from" "^7.24.7"
@@ -4632,8 +4777,8 @@
"@babel/plugin-transform-typescript" "^7.25.2"
"@babel/plugin-transform-unicode-regex" "^7.24.7"
"@babel/template" "^7.25.0"
- "@react-native/babel-plugin-codegen" "0.79.4"
- babel-plugin-syntax-hermes-parser "0.25.1"
+ "@react-native/babel-plugin-codegen" "0.81.5"
+ babel-plugin-syntax-hermes-parser "0.29.1"
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
@@ -4650,49 +4795,15 @@
mkdirp "^0.5.1"
nullthrows "^1.1.1"
-"@react-native/codegen@0.76.9":
- version "0.76.9"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.76.9.tgz#b386fae4d893e5e7ffba19833c7d31a330a2f559"
- integrity sha512-AzlCHMTKrAVC2709V4ZGtBXmGVtWTpWm3Ruv5vXcd3/anH4mGucfJ4rjbWKdaYQJMpXa3ytGomQrsIsT/s8kgA==
+"@react-native/codegen@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.81.5.tgz#d4dec668c94b9d58a5c2dbdbf026db331e1b6b27"
+ integrity sha512-a2TDA03Up8lpSa9sh5VRGCQDXgCTOyDOFH+aqyinxp1HChG8uk89/G+nkJ9FPd0rqgi25eCTR16TWdS3b+fA6g==
dependencies:
+ "@babel/core" "^7.25.2"
"@babel/parser" "^7.25.3"
glob "^7.1.1"
- hermes-parser "0.23.1"
- invariant "^2.2.4"
- jscodeshift "^0.14.0"
- mkdirp "^0.5.1"
- nullthrows "^1.1.1"
- yargs "^17.6.2"
-
-"@react-native/codegen@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.79.2.tgz#75270d8162e78c02b0272396a3c6942e39e8703d"
- integrity sha512-8JTlGLuLi1p8Jx2N/enwwEd7/2CfrqJpv90Cp77QLRX3VHF2hdyavRIxAmXMwN95k+Me7CUuPtqn2X3IBXOWYg==
- dependencies:
- glob "^7.1.1"
- hermes-parser "0.25.1"
- invariant "^2.2.4"
- nullthrows "^1.1.1"
- yargs "^17.6.2"
-
-"@react-native/codegen@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.79.4.tgz#47275691bf5f29de9495ffa8e6a847897aa04eab"
- integrity sha512-K0moZDTJtqZqSs+u9tnDPSxNsdxi5irq8Nu4mzzOYlJTVNGy5H9BiIDg/NeKGfjAdo43yTDoaPSbUCvVV8cgIw==
- dependencies:
- glob "^7.1.1"
- hermes-parser "0.25.1"
- invariant "^2.2.4"
- nullthrows "^1.1.1"
- yargs "^17.6.2"
-
-"@react-native/codegen@^0.80.0":
- version "0.80.1"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.80.1.tgz#dc98039da45828abfc0fa974719e5d0ff0aa0a86"
- integrity sha512-CFhOYkXmExOeZDZnd0UJCK9A4AOSAyFBoVgmFZsf+fv8JqnwIx/SD6RxY1+Jzz9EWPQcH2v+WgwPP/4qVmjtKw==
- dependencies:
- glob "^7.1.1"
- hermes-parser "0.28.1"
+ hermes-parser "0.29.1"
invariant "^2.2.4"
nullthrows "^1.1.1"
yargs "^17.6.2"
@@ -4714,18 +4825,17 @@
node-fetch "^2.2.0"
readline "^1.3.0"
-"@react-native/community-cli-plugin@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.79.4.tgz#f6b0222107a227b512c2f9374c7aa75af26e2f1d"
- integrity sha512-lx1RXEJwU9Tcs2B2uiDZBa6yghU6m6STvwYqHbJlFZyNN1k3JRa9j0/CDu+0fCFacIn7rEfZpb4UWi5YhsHpQg==
+"@react-native/community-cli-plugin@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.81.5.tgz#617789cda4da419d03dda00e2a78c36188b4391e"
+ integrity sha512-yWRlmEOtcyvSZ4+OvqPabt+NS36vg0K/WADTQLhrYrm9qdZSuXmq8PmdJWz/68wAqKQ+4KTILiq2kjRQwnyhQw==
dependencies:
- "@react-native/dev-middleware" "0.79.4"
- chalk "^4.0.0"
- debug "^2.2.0"
+ "@react-native/dev-middleware" "0.81.5"
+ debug "^4.4.0"
invariant "^2.2.4"
- metro "^0.82.0"
- metro-config "^0.82.0"
- metro-core "^0.82.0"
+ metro "^0.83.1"
+ metro-config "^0.83.1"
+ metro-core "^0.83.1"
semver "^7.1.3"
"@react-native/debugger-frontend@0.73.3":
@@ -4733,15 +4843,10 @@
resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz#033757614d2ada994c68a1deae78c1dd2ad33c2b"
integrity sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==
-"@react-native/debugger-frontend@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.79.2.tgz#1377de6d9cabe5455bf332e06408167da5f60c19"
- integrity sha512-cGmC7X6kju76DopSBNc+PRAEetbd7TWF9J9o84hOp/xL3ahxR2kuxJy0oJX8Eg8oehhGGEXTuMKHzNa3rDBeSg==
-
-"@react-native/debugger-frontend@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.79.4.tgz#d4c6f0d88ac0f646f8bd7fffaaa6c2dcdfddd008"
- integrity sha512-Gg4LhxHIK86Bi2RiT1rbFAB6fuwANRsaZJ1sFZ1OZEMQEx6stEnzaIrmfgzcv4z0bTQdQ8lzCrpsz0qtdaD4eA==
+"@react-native/debugger-frontend@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.81.5.tgz#82ece0181e9a7a3dcbdfa86cf9decd654e13f81f"
+ integrity sha512-bnd9FSdWKx2ncklOetCgrlwqSGhMHP2zOxObJbOWXoj7GHEmih4MKarBo5/a8gX8EfA1EwRATdfNBQ81DY+h+w==
"@react-native/dev-middleware@0.73.8":
version "0.73.8"
@@ -4760,48 +4865,31 @@
temp-dir "^2.0.0"
ws "^6.2.2"
-"@react-native/dev-middleware@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.79.2.tgz#f09f1a75b4cd0b56dfd82a07bf41157a9c45619c"
- integrity sha512-9q4CpkklsAs1L0Bw8XYCoqqyBSrfRALGEw4/r0EkR38Y/6fVfNfdsjSns0pTLO6h0VpxswK34L/hm4uK3MoLHw==
- dependencies:
- "@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "0.79.2"
- chrome-launcher "^0.15.2"
- chromium-edge-launcher "^0.2.0"
- connect "^3.6.5"
- debug "^2.2.0"
- invariant "^2.2.4"
- nullthrows "^1.1.1"
- open "^7.0.3"
- serve-static "^1.16.2"
- ws "^6.2.3"
-
-"@react-native/dev-middleware@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.79.4.tgz#f094e688c0803a985968ee835283d14bd891bc69"
- integrity sha512-OWRDNkgrFEo+OSC5QKfiiBmGXKoU8gmIABK8rj2PkgwisFQ/22p7MzE5b6oB2lxWaeJT7jBX5KVniNqO46VhHA==
+"@react-native/dev-middleware@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.81.5.tgz#81e8ac545d7736ef6ebb2e59fdbaebc5cf9aedec"
+ integrity sha512-WfPfZzboYgo/TUtysuD5xyANzzfka8Ebni6RIb2wDxhb56ERi7qDrE4xGhtPsjCL4pQBXSVxyIlCy0d8I6EgGA==
dependencies:
"@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "0.79.4"
+ "@react-native/debugger-frontend" "0.81.5"
chrome-launcher "^0.15.2"
chromium-edge-launcher "^0.2.0"
connect "^3.6.5"
- debug "^2.2.0"
+ debug "^4.4.0"
invariant "^2.2.4"
nullthrows "^1.1.1"
open "^7.0.3"
serve-static "^1.16.2"
ws "^6.2.3"
-"@react-native/eslint-config@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.79.4.tgz#f2ecac9de435b1fc493bed63c855201585913ecc"
- integrity sha512-CPHskdEEV765O0M9jgSCeF2rcTrwJb/wyA8sUyT+EQWOX5oWsQzNKN4sWJHB/qAY/1D0sPxZk/YneqHPxnBIUw==
+"@react-native/eslint-config@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.81.5.tgz#c3624e546b0ade02c9576dc5cf9988e03da4a590"
+ integrity sha512-6MAn0ZjWQrWMqW09pEWTQAhLZ3WWB+zDRAZ/D1xj1Wyaz2qQH5KYfZMgnanhYIYuX7sxTS50ACMr/IOptMS1Og==
dependencies:
"@babel/core" "^7.25.2"
"@babel/eslint-parser" "^7.25.1"
- "@react-native/eslint-plugin" "0.79.4"
+ "@react-native/eslint-plugin" "0.81.5"
"@typescript-eslint/eslint-plugin" "^7.1.1"
"@typescript-eslint/parser" "^7.1.1"
eslint-config-prettier "^8.5.0"
@@ -4809,33 +4897,33 @@
eslint-plugin-ft-flow "^2.0.1"
eslint-plugin-jest "^27.9.0"
eslint-plugin-react "^7.30.1"
- eslint-plugin-react-hooks "^4.6.0"
+ eslint-plugin-react-hooks "^5.2.0"
eslint-plugin-react-native "^4.0.0"
-"@react-native/eslint-plugin@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.79.4.tgz#410743f52b825898c3eb569896fec487a1057b1e"
- integrity sha512-vp2eJQmutSsqhiBda3j0OJ5jXd5KXX7fDcr/1EdOzWf2st+dvKl140Rxx/E85eQSx8RTo8OpAzSw+wnq307/zA==
+"@react-native/eslint-plugin@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.81.5.tgz#f3de8893c4490eb0f611a9e45a04c6da2a43cf9b"
+ integrity sha512-PyI+Xal1gBGKmcM595nxxXdCK12nXpEMwkg67POurC2t1J3jT9v8Dq3wiNsoBLXnRo8VdOME+BLwQQBeGedoTA==
"@react-native/gradle-plugin@0.73.4":
version "0.73.4"
resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.73.4.tgz#aa55784a8c2b471aa89934db38c090d331baf23b"
integrity sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==
-"@react-native/gradle-plugin@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.79.4.tgz#487d5dfc19411caf60cf1365c38bacd809407d69"
- integrity sha512-Gv5ryy23k7Sib2xVgqw65GTryg9YTij6URcMul5cI7LRcW0Aa1/FPb26l388P4oeNGNdDoAkkS+CuCWNunRuWg==
+"@react-native/gradle-plugin@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.81.5.tgz#a58830f38789f6254b64449a17fe57455b589d00"
+ integrity sha512-hORRlNBj+ReNMLo9jme3yQ6JQf4GZpVEBLxmTXGGlIL78MAezDZr5/uq9dwElSbcGmLEgeiax6e174Fie6qPLg==
"@react-native/js-polyfills@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz#730b0a7aaab947ae6f8e5aa9d995e788977191ed"
integrity sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==
-"@react-native/js-polyfills@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.79.4.tgz#bec8d29b2c0e283b7fe0a78180839889455f970b"
- integrity sha512-VyKPo/l9zP4+oXpQHrJq4vNOtxF7F5IMdQmceNzTnRpybRvGGgO/9jYu9mdmdKRO2KpQEc5dB4W2rYhVKdGNKg==
+"@react-native/js-polyfills@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.81.5.tgz#2ca68188c8fff9b951f507b1dec7efe928848274"
+ integrity sha512-fB7M1CMOCIUudTRuj7kzxIBTVw2KXnsgbQ6+4cbqSxo8NmRRhA0Ul4ZUzZj3rFd3VznTL4Brmocv1oiN0bWZ8w==
"@react-native/metro-babel-transformer@0.73.15":
version "0.73.15"
@@ -4847,25 +4935,25 @@
hermes-parser "0.15.0"
nullthrows "^1.1.1"
-"@react-native/metro-babel-transformer@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.79.4.tgz#8c33b5b367979dc1504c09ba54f0a863a8530573"
- integrity sha512-GzfFBMeUtybd+bNpVsHX3+deRkyKklD4f5xMzexe+RGn8yKR4biwFvaUeHLT2RVZPAyHzTYm2rGClxzATpIJxA==
+"@react-native/metro-babel-transformer@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.81.5.tgz#758b18bcb9b62996e828a48f400b5b9d80a8735e"
+ integrity sha512-Vwm6gJ3VlP+QKAEU98v1dwZKqbUcIYP47K614SktA9dYDOtw+rEBjyzvNf69S4YG5JRvDmzw36E9zxtcg6ABOw==
dependencies:
"@babel/core" "^7.25.2"
- "@react-native/babel-preset" "0.79.4"
- hermes-parser "0.25.1"
+ "@react-native/babel-preset" "0.81.5"
+ hermes-parser "0.29.1"
nullthrows "^1.1.1"
-"@react-native/metro-config@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.79.4.tgz#6c29e96a97999e445c19b4349e1f7b475c32e8b8"
- integrity sha512-iKynCOo71HVKYzWKdrF1K5zMVwHfadCO9qkekCOjdsP5t9yJ0SaGXCkEo8qt50sL7mQ6TbfvJEl/lAAJqBwBOQ==
+"@react-native/metro-config@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.81.5.tgz#a9d25e2ce409647241823e0ab2cebafcbc468b26"
+ integrity sha512-3Q0jQt5Zcen4+udkE0XQIS8VmI+vx3sWl5R2o36vHkg8eXpiQjvz/jY0sZmC8ahailiEWEscFklQzhTmizhdPQ==
dependencies:
- "@react-native/js-polyfills" "0.79.4"
- "@react-native/metro-babel-transformer" "0.79.4"
- metro-config "^0.82.0"
- metro-runtime "^0.82.0"
+ "@react-native/js-polyfills" "0.81.5"
+ "@react-native/metro-babel-transformer" "0.81.5"
+ metro-config "^0.83.1"
+ metro-runtime "^0.83.1"
"@react-native/normalize-color@*":
version "2.1.0"
@@ -4877,20 +4965,15 @@
resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz#cc8e48fbae2bbfff53e12f209369e8d2e4cf34ec"
integrity sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==
-"@react-native/normalize-colors@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.79.2.tgz#9ab70ca257c7411e4ab74cf7f91332c27d39cc6f"
- integrity sha512-+b+GNrupWrWw1okHnEENz63j7NSMqhKeFMOyzYLBwKcprG8fqJQhDIGXfizKdxeIa5NnGSAevKL1Ev1zJ56X8w==
+"@react-native/normalize-colors@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.81.5.tgz#1ca6cb6772bb7324df2b11aab35227eacd6bdfe7"
+ integrity sha512-0HuJ8YtqlTVRXGZuGeBejLE04wSQsibpTI+RGOyVqxZvgtlLLC/Ssw0UmbHhT4lYMp2fhdtvKZSs5emWB1zR/g==
-"@react-native/normalize-colors@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.79.4.tgz#97af253630af34be61d0b03225027b7400463c68"
- integrity sha512-247/8pHghbYY2wKjJpUsY6ZNbWcdUa5j5517LZMn6pXrbSSgWuj3JA4OYibNnocCHBaVrt+3R8XC3VEJqLlHFg==
-
-"@react-native/typescript-config@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.79.4.tgz#726b05391455dc59b966b26d7d2a264a11893764"
- integrity sha512-sgtWypxWibkc+J8MDQ8qxfJadzVo9CEAbLBFGwqsmzwe5n/mu3qEIpi1hIGqUuNrPYe2yfUauDx1Yn0UNdI8EA==
+"@react-native/typescript-config@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.81.5.tgz#ed28e9d2ab9ce9a534a12e9b51c035665983cd1c"
+ integrity sha512-NeCecPmlW+fcwFKzDzT1GcEQmJSE6tLz9Fg6wGjKL1l7pqUzpQIQg1iF3OovHOlyfPiB98+XRHnIBvlTSJ5R0w==
"@react-native/virtualized-lists@0.73.4":
version "0.73.4"
@@ -4900,10 +4983,10 @@
invariant "^2.2.4"
nullthrows "^1.1.1"
-"@react-native/virtualized-lists@0.79.4":
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.79.4.tgz#a530e2ee00c86a5364bee67145b163be8413d5db"
- integrity sha512-0Mdcox6e5PTonuM1WIo3ks7MBAa3IDzj0pKnE5xAwSgQ0DJW2P5dYf+KjWmpkE+Yb0w41ZbtXPhKq+U2JJ6C/Q==
+"@react-native/virtualized-lists@0.81.5":
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.81.5.tgz#24123fded16992d7e46ecc4ccd473be939ea8c1b"
+ integrity sha512-UVXgV/db25OPIvwZySeToXD/9sKKhOdkcWmmf4Jh8iBZuyfML+/5CasaZ1E7Lqg6g3uqVQq75NqIwkYmORJMPw==
dependencies:
invariant "^2.2.4"
nullthrows "^1.1.1"
@@ -5425,10 +5508,10 @@
"@types/scheduler" "^0.16"
csstype "^3.0.2"
-"@types/react@^19.0.0":
- version "19.1.2"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-19.1.2.tgz#11df86f66f188f212c90ecb537327ec68bfd593f"
- integrity sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==
+"@types/react@~19.1.10":
+ version "19.1.17"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-19.1.17.tgz#8be0b9c546cede389b930a98eb3fad1897f209c3"
+ integrity sha512-Qec1E3mhALmaspIrhWt9jkQMNdw6bReVu64mjvhbhq2NFPftLPVr+l1SZgmw/66WwBNpDh7ao5AT6gF5v41PFA==
dependencies:
csstype "^3.0.2"
@@ -5714,6 +5797,11 @@
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
+"@ungap/structured-clone@^1.3.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8"
+ integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==
+
"@unrs/resolver-binding-android-arm-eabi@1.11.1":
version "1.11.1"
resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz#9f5b04503088e6a354295e8ea8fe3cb99e43af81"
@@ -6418,6 +6506,13 @@ babel-plugin-polyfill-regenerator@^0.6.1:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.6.1"
+babel-plugin-react-compiler@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-compiler/-/babel-plugin-react-compiler-1.0.0.tgz#bdf7360a23a4d5ebfca090255da3893efd07425f"
+ integrity sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==
+ dependencies:
+ "@babel/types" "^7.26.0"
+
babel-plugin-react-compiler@^19.1.0-rc.3:
version "19.1.0-rc.3"
resolved "https://registry.yarnpkg.com/babel-plugin-react-compiler/-/babel-plugin-react-compiler-19.1.0-rc.3.tgz#45e5a282a2460b3701971e5eb8310a90a7919022"
@@ -6425,17 +6520,17 @@ babel-plugin-react-compiler@^19.1.0-rc.3:
dependencies:
"@babel/types" "^7.26.0"
-babel-plugin-react-native-web@~0.19.13:
- version "0.19.13"
- resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz#bf919bd6f18c4689dd1a528a82bda507363b953d"
- integrity sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==
+babel-plugin-react-native-web@~0.21.0:
+ version "0.21.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.21.2.tgz#d2f7fd673278da82577aa583457edb55d9cccbe0"
+ integrity sha512-SPD0J6qjJn8231i0HZhlAGH6NORe+QvRSQM2mwQEzJ2Fb3E4ruWTiiicPlHjmeWShDXLcvoorOCXjeR7k/lyWA==
-babel-plugin-syntax-hermes-parser@0.25.1, babel-plugin-syntax-hermes-parser@^0.25.1:
- version "0.25.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz#58b539df973427fcfbb5176a3aec7e5dee793cb0"
- integrity sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==
+babel-plugin-syntax-hermes-parser@0.29.1, babel-plugin-syntax-hermes-parser@^0.29.1:
+ version "0.29.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.29.1.tgz#09ca9ecb0330eba1ef939b6d3f1f55bb06a9dc33"
+ integrity sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==
dependencies:
- hermes-parser "0.25.1"
+ hermes-parser "0.29.1"
babel-plugin-transform-flow-enums@^0.0.2:
version "0.0.2"
@@ -6467,30 +6562,16 @@ babel-preset-current-node-syntax@^1.0.0:
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-top-level-await" "^7.8.3"
-babel-preset-expo@^12.0.11:
- version "12.0.11"
- resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-12.0.11.tgz#3bbac54f269ae0cc94d198260e26d5020d146127"
- integrity sha512-4m6D92nKEieg+7DXa8uSvpr0GjfuRfM/G0t0I/Q5hF8HleEv5ms3z4dJ+p52qXSJsm760tMqLdO93Ywuoi7cCQ==
- dependencies:
- "@babel/plugin-proposal-decorators" "^7.12.9"
- "@babel/plugin-transform-export-namespace-from" "^7.22.11"
- "@babel/plugin-transform-object-rest-spread" "^7.12.13"
- "@babel/plugin-transform-parameters" "^7.22.15"
- "@babel/preset-react" "^7.22.15"
- "@babel/preset-typescript" "^7.23.0"
- "@react-native/babel-preset" "0.76.9"
- babel-plugin-react-native-web "~0.19.13"
- react-refresh "^0.14.2"
-
-babel-preset-expo@~13.1.11:
- version "13.1.11"
- resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-13.1.11.tgz#de81e6a621c9f40dcb1e0bf5f1fe111f82c10496"
- integrity sha512-jigWjvhRVdm9UTPJ1wjLYJ0OJvD5vLZ8YYkEknEl6+9S1JWORO/y3xtHr/hNj5n34nOilZqdXrmNFcqKc8YTsg==
+babel-preset-expo@^54.0.6, babel-preset-expo@~54.0.6:
+ version "54.0.6"
+ resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-54.0.6.tgz#a0158c7a4eb7f52c8830d6e2bfdfa329043eaee2"
+ integrity sha512-GxJfwnuOPQJbzDe5WASJZdNQiukLw7i9z+Lh6JQWkUHXsShHyQrqgiKE55MD/KaP9VqJ70yZm7bYqOu8zwcWqQ==
dependencies:
"@babel/helper-module-imports" "^7.25.9"
"@babel/plugin-proposal-decorators" "^7.12.9"
"@babel/plugin-proposal-export-default-from" "^7.24.7"
"@babel/plugin-syntax-export-default-from" "^7.24.7"
+ "@babel/plugin-transform-class-static-block" "^7.27.1"
"@babel/plugin-transform-export-namespace-from" "^7.25.9"
"@babel/plugin-transform-flow-strip-types" "^7.25.2"
"@babel/plugin-transform-modules-commonjs" "^7.24.8"
@@ -6501,12 +6582,12 @@ babel-preset-expo@~13.1.11:
"@babel/plugin-transform-runtime" "^7.24.7"
"@babel/preset-react" "^7.22.15"
"@babel/preset-typescript" "^7.23.0"
- "@react-native/babel-preset" "0.79.2"
- babel-plugin-react-native-web "~0.19.13"
- babel-plugin-syntax-hermes-parser "^0.25.1"
+ "@react-native/babel-preset" "0.81.5"
+ babel-plugin-react-compiler "^1.0.0"
+ babel-plugin-react-native-web "~0.21.0"
+ babel-plugin-syntax-hermes-parser "^0.29.1"
babel-plugin-transform-flow-enums "^0.0.2"
debug "^4.3.4"
- react-refresh "^0.14.2"
resolve-from "^5.0.0"
babel-preset-jest@^29.6.3:
@@ -6559,6 +6640,11 @@ base64-js@^1.2.3, base64-js@^1.3.1, base64-js@^1.5.1:
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+baseline-browser-mapping@^2.8.19:
+ version "2.8.25"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.25.tgz#947dc6f81778e0fa0424a2ab9ea09a3033e71109"
+ integrity sha512-2NovHVesVF5TXefsGX1yzx1xgr7+m9JQenvz6FQY3qd+YXkKkYiv+vTCc7OriP9mcDZpTC5mAOYN4ocd29+erA==
+
better-opn@^3.0.2, better-opn@~3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-3.0.2.tgz#f96f35deaaf8f34144a4102651babcf00d1d8817"
@@ -6666,6 +6752,17 @@ browserslist@^4.24.0, browserslist@^4.24.4:
node-releases "^2.0.19"
update-browserslist-db "^1.1.1"
+browserslist@^4.25.0:
+ version "4.27.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz#755654744feae978fbb123718b2f139bc0fa6697"
+ integrity sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==
+ dependencies:
+ baseline-browser-mapping "^2.8.19"
+ caniuse-lite "^1.0.30001751"
+ electron-to-chromium "^1.5.238"
+ node-releases "^2.0.26"
+ update-browserslist-db "^1.1.4"
+
bser@2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
@@ -6784,6 +6881,11 @@ caniuse-lite@^1.0.30001688:
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001705.tgz#dc3510bcdef261444ca944b7be9c8d0bb7fafeef"
integrity sha512-S0uyMMiYvA7CxNgomYBwwwPUnWzFD83f3B1ce5jHUfHTH//QL6hHsreI8RVC5606R4ssqravelYO5TU6t8sEyg==
+caniuse-lite@^1.0.30001751:
+ version "1.0.30001754"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001754.tgz#7758299d9a72cce4e6b038788a15b12b44002759"
+ integrity sha512-x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==
+
chai@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/chai/-/chai-5.2.0.tgz#1358ee106763624114addf84ab02697e411c9c05"
@@ -7556,16 +7658,16 @@ detect-indent@^6.1.0:
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6"
integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==
-detect-libc@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
- integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
-
detect-libc@^2.0.0, detect-libc@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d"
integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==
+detect-libc@^2.0.3:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad"
+ integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==
+
detect-newline@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
@@ -7685,6 +7787,11 @@ electron-to-chromium@^1.4.668:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.708.tgz#d54d3b47cb44ae6b190067439c42135456907893"
integrity sha512-iWgEEvREL4GTXXHKohhh33+6Y8XkPI5eHihDmm8zUk5Zo7HICEW+wI/j5kJ2tbuNUCXJ/sNXa03ajW635DiJXA==
+electron-to-chromium@^1.5.238:
+ version "1.5.245"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.245.tgz#81aea81adf1e06b6f703b4b35ac6d543421d0fd9"
+ integrity sha512-rdmGfW47ZhL/oWEJAY4qxRtdly2B98ooTJ0pdEI4jhVLZ6tNf8fPtov2wS1IRKwFJT92le3x4Knxiwzl7cPPpQ==
+
electron-to-chromium@^1.5.73:
version "1.5.119"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.119.tgz#4e105e419209b33e1c44b4d1b5fc6fb27fac0209"
@@ -8176,10 +8283,10 @@ eslint-plugin-jsx-a11y@^6.8.0:
object.entries "^1.1.7"
object.fromentries "^2.0.7"
-eslint-plugin-react-hooks@^4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
- integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
+eslint-plugin-react-hooks@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz#1be0080901e6ac31ce7971beed3d3ec0a423d9e3"
+ integrity sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==
eslint-plugin-react-hooks@^7.0.0:
version "7.0.0"
@@ -8433,45 +8540,45 @@ expect@^29.0.0, expect@^29.7.0:
jest-message-util "^29.7.0"
jest-util "^29.7.0"
-expo-apple-authentication@7.2.3:
- version "7.2.3"
- resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-7.2.3.tgz#524817c1b2c0b165343039d183ee91c4674be5fe"
- integrity sha512-2izNn8qhUUM/gXMxA2byOn4AymUpmhaZlnGZy1vpndT0dMXd3T/Wk8j67rEB0+JhQY11iEQGXBG8cfro7LV0dA==
+expo-apple-authentication@~8.0.7:
+ version "8.0.7"
+ resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-8.0.7.tgz#8918f66229ae003177ca5048b9edc97f9f780db1"
+ integrity sha512-KHLKecxwlPm42W/JYEefcFcXu5BW88wlgKSoikOFwRoWpzzryJxsNacMJRqrzAP3lFecPAK+ATgyJYvFkp10kw==
expo-application@~7.0.7:
version "7.0.8"
resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-7.0.8.tgz#320af0d6c39b331456d3bc833b25763c702d23db"
integrity sha512-qFGyxk7VJbrNOQWBbE09XUuGuvkOgFS9QfToaK2FdagM2aQ+x3CvGV2DuVgl/l4ZxPgIf3b/MNh9xHpwSwn74Q==
-expo-asset@~11.1.5:
- version "11.1.5"
- resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-11.1.5.tgz#5cad3d781c9d0edec31b9b3adbba574eb4d5dd3e"
- integrity sha512-GEQDCqC25uDBoXHEnXeBuwpeXvI+3fRGvtzwwt0ZKKzWaN+TgeF8H7c76p3Zi4DfBMFDcduM0CmOvJX+yCCLUQ==
+expo-asset@~12.0.9:
+ version "12.0.12"
+ resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-12.0.12.tgz#15eb7d92cd43cc81c37149e5bbcdc3091875a85b"
+ integrity sha512-CsXFCQbx2fElSMn0lyTdRIyKlSXOal6ilLJd+yeZ6xaC7I9AICQgscY5nj0QcwgA+KYYCCEQEBndMsmj7drOWQ==
dependencies:
- "@expo/image-utils" "^0.7.4"
- expo-constants "~17.1.5"
+ "@expo/image-utils" "^0.8.8"
+ expo-constants "~18.0.12"
-expo-av@15.1.3:
- version "15.1.3"
- resolved "https://registry.yarnpkg.com/expo-av/-/expo-av-15.1.3.tgz#ce6e714f0d468b27306b488ce4bebd17dad6c2b3"
- integrity sha512-yixS8y2xlvOzXHVKGX0i7nIt+XgE59eghsZ5umBBPPheppkwDh9Uk/oF1SPWTffxFb1wDIZQCazBRLyX9G5GgA==
+expo-av@~16.0.7:
+ version "16.0.7"
+ resolved "https://registry.yarnpkg.com/expo-av/-/expo-av-16.0.7.tgz#51668b335e3a460ca712a281d7138341119ebe26"
+ integrity sha512-QReef6/RYuZ4GekTcZZw5zY26pcPOmHqK6LMgFlPhnsT0ga97HJrgMc63pvIiojDP+q4oIv24g+QPD8ljZu4XQ==
-expo-camera@16.1.5:
- version "16.1.5"
- resolved "https://registry.yarnpkg.com/expo-camera/-/expo-camera-16.1.5.tgz#2171940acfa8b69e504fe86f7e30022983664b43"
- integrity sha512-yoYgmI1PcHOI/9AN5mBNqOdMPi+nldGdld12aiRPp2c/xUhI8W9kalcIitppcBSUpgl0SZsGLb0IPCegXuN8pg==
+expo-camera@~17.0.9:
+ version "17.0.9"
+ resolved "https://registry.yarnpkg.com/expo-camera/-/expo-camera-17.0.9.tgz#4447e63960c9b4485869e2f1fac0ef083c38669a"
+ integrity sha512-KgticPGurqEsaPBIwbG0T6mzAVnqZasDdM/6OoJt5zPh6tWB09+th6cBF1WafIBMPy8AWbfyUQSqQXqOrNJClg==
dependencies:
invariant "^2.2.4"
-expo-constants@~17.1.5:
- version "17.1.5"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-17.1.5.tgz#7c39c0208a8401217cc2bb44c21b9d354dbc6c4f"
- integrity sha512-9kjfQjVG6RgBQjFOo7LewxuZgTnYufXPuqpF00Ju5q2dAFW9Eh1SyJpFxbt7KoN+Wwu0hcIr/nQ0lPQugkg07Q==
+expo-constants@~18.0.10:
+ version "18.0.10"
+ resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-18.0.10.tgz#92d4490d51193fc94bd40590453ce9cab4faf6fb"
+ integrity sha512-Rhtv+X974k0Cahmvx6p7ER5+pNhBC0XbP1lRviL2J1Xl4sT2FBaIuIxF/0I0CbhOsySf0ksqc5caFweAy9Ewiw==
dependencies:
- "@expo/config" "~11.0.7"
- "@expo/env" "~1.0.5"
+ "@expo/config" "~12.0.10"
+ "@expo/env" "~2.0.7"
-expo-constants@~18.0.8:
+expo-constants@~18.0.12, expo-constants@~18.0.8:
version "18.0.12"
resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-18.0.12.tgz#3e67f7109ffd03eaa5514c19875a767c39f5a2ca"
integrity sha512-WzcKYMVNRRu4NcSzfIVRD5aUQFnSpTZgXFrlWmm19xJoDa4S3/PQNi6PNTBRc49xz9h8FT7HMxRKaC8lr0gflA==
@@ -8486,84 +8593,71 @@ expo-device@^8.0.10:
dependencies:
ua-parser-js "^0.7.33"
-expo-document-picker@13.1.4:
- version "13.1.4"
- resolved "https://registry.yarnpkg.com/expo-document-picker/-/expo-document-picker-13.1.4.tgz#f78a91e31dfac8ff26ea065bdc015ce4938eb1cc"
- integrity sha512-VCjSRSuwwMGx8BAafq5X5XZhLu/Tviu9NMzrzQxEE/ZStd+/ZivLlcCSNmLRpCcdpRJGegahtI/C6kdKW0Jb4Q==
+expo-document-picker@~14.0.7:
+ version "14.0.8"
+ resolved "https://registry.yarnpkg.com/expo-document-picker/-/expo-document-picker-14.0.8.tgz#ca1d99cc432c48e69a6390eb035f3301557e3699"
+ integrity sha512-3tyQKpPqWWFlI8p9RiMX1+T1Zge5mEKeBuXWp1h8PEItFMUDSiOJbQ112sfdC6Hxt8wSxreV9bCRl/NgBdt+fA==
-expo-file-system@18.1.7:
- version "18.1.7"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-18.1.7.tgz#fe364c502d7339e1858062b5b46db10e822f7689"
- integrity sha512-22JuZrJY26O+rjl5TFfwhb778XJTGIAzDlT+If7xBOwStYg2RP7pTEGeylPWeb2cL7Lpssu/tsRwPpxMzXffoA==
+expo-file-system@~19.0.17:
+ version "19.0.17"
+ resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-19.0.17.tgz#2555c05c26a19038d005f281b11dbda9722d0c0d"
+ integrity sha512-WwaS01SUFrxBnExn87pg0sCTJjZpf2KAOzfImG0o8yhkU7fbYpihpl/oocXBEsNbj58a8hVt1Y4CVV5c1tzu/g==
-expo-file-system@~18.1.9:
- version "18.1.9"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-18.1.9.tgz#0fa1f6bd491ef820abfb00dd9d5fac9c2dc7c4b0"
- integrity sha512-2i8IpaXpLVSI/dmT6TBfvRkl1+YkbWI07NCsQX1Myh33AF8xaJ4jv3Hz6WK1JArqDagCmrQUB2mW9SYnWYqLHg==
-
-expo-font@~13.3.1:
- version "13.3.1"
- resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-13.3.1.tgz#ed69ae14f263a4c447efb2615b60d9e045372e68"
- integrity sha512-d+xrHYvSM9WB42wj8vP9OOFWyxed5R1evphfDb6zYBmC1dA9Hf89FpT7TNFtj2Bk3clTnpmVqQTCYbbA2P3CLg==
+expo-font@~14.0.9:
+ version "14.0.9"
+ resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-14.0.9.tgz#552d66afc8c6efa8839f5f4063c2e0226b3edad1"
+ integrity sha512-xCoQbR/36qqB6tew/LQ6GWICpaBmHLhg/Loix5Rku/0ZtNaXMJv08M9o1AcrdiGTn/Xf/BnLu6DgS45cWQEHZg==
dependencies:
fontfaceobserver "^2.1.0"
-expo-haptics@14.1.3:
- version "14.1.3"
- resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-14.1.3.tgz#d0d195b7a96d063f1f4d152a191596d2e03a24d9"
- integrity sha512-463Frhn8Lf3qG7I05MjPWRTo0EmcE7GXVzXzv+Mg/pPMo7QQCzzYheSYbrpFzJLfvDIKVqwnHZMauoVMD9/X0A==
-
-expo-image@^2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/expo-image/-/expo-image-2.3.2.tgz#7c6e4854ee8ed6a5809f36f0c37a6f979730552c"
- integrity sha512-TOp7UR1mzeCxzs3c/6MV2Wy7jBfJpKq8aVC06gkLfxHsCVMeGqCXc+6GMrGIVrjG938LEub4dwnrE0OuSE2Qwg==
+expo-haptics@~15.0.7:
+ version "15.0.7"
+ resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-15.0.7.tgz#384bb873d7eca7b141f85e4f300b75eab68ebfe9"
+ integrity sha512-7flWsYPrwjJxZ8x82RiJtzsnk1Xp9ahnbd9PhCy3NnsemyMApoWIEUr4waPqFr80DtiLZfhD9VMLL1CKa8AImQ==
-expo-keep-awake@14.1.3:
- version "14.1.3"
- resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-14.1.3.tgz#94c2b0b3bd7201a1e819e343c96e9aa2cd41d035"
- integrity sha512-uKfxXx1JADO75SoaK5hVWQEcFNKUGcaUjYFbBagt6hGtfloco6Hj89Fqv77t9HMAravRw8WPWXzxK1R/MzAEPQ==
+expo-image@~3.0.10:
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/expo-image/-/expo-image-3.0.10.tgz#a589098c3688d76c6e238ae90e1efc06ac4902b0"
+ integrity sha512-i4qNCEf9Ur7vDqdfDdFfWnNCAF2efDTdahuDy9iELPS2nzMKBLeeGA2KxYEPuRylGCS96Rwm+SOZJu6INc2ADQ==
-expo-keep-awake@~14.1.4:
- version "14.1.4"
- resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-14.1.4.tgz#80197728563e0e17523e5a606fbd6fbed9639503"
- integrity sha512-wU9qOnosy4+U4z/o4h8W9PjPvcFMfZXrlUoKTMBW7F4pLqhkkP/5G4EviPZixv4XWFMjn1ExQ5rV6BX8GwJsWA==
+expo-keep-awake@~15.0.7:
+ version "15.0.7"
+ resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-15.0.7.tgz#4eada556e1cca6c9c2e5aa39478fd01816cd0bc9"
+ integrity sha512-CgBNcWVPnrIVII5G54QDqoE125l+zmqR4HR8q+MQaCfHet+dYpS5vX5zii/RMayzGN4jPgA4XYIQ28ePKFjHoA==
-expo-local-authentication@16.0.3:
- version "16.0.3"
- resolved "https://registry.yarnpkg.com/expo-local-authentication/-/expo-local-authentication-16.0.3.tgz#ff1da059ddb864e5f0b6ae193331251f078b02c3"
- integrity sha512-ZuoJpTj0cp+aM54wOIjXAL2/SSRTTUvbCsmF+VnkNfD8xMbwjdpoFihLfK4UgxxV2dTmeereVayzcZRFO2hUGg==
+expo-local-authentication@~17.0.7:
+ version "17.0.7"
+ resolved "https://registry.yarnpkg.com/expo-local-authentication/-/expo-local-authentication-17.0.7.tgz#799239fc817cf8a16ea047c96425ff05ed1e502a"
+ integrity sha512-yRWcgYn/OIwxEDEk7cM7tRjQSHaTp5hpKwzq+g9NmSMJ1etzUzt0yGzkDiOjObj3YqFo0ucyDJ8WfanLhZDtMw==
dependencies:
invariant "^2.2.4"
-expo-modules-autolinking@2.1.9:
- version "2.1.9"
- resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-2.1.9.tgz#7bf8338d4b7a1b6e8eccab51634de9b339e90c04"
- integrity sha512-54InfnWy1BR54IDZoawqdFAaF2lyLHe9J+2dZ7y91/36jVpBtAval39ZKt2IISFJZ7TVglsojl4P5BDcDGcvjQ==
+expo-modules-autolinking@3.0.20:
+ version "3.0.20"
+ resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-3.0.20.tgz#d29fc6d642d98649ea1f0a2a971d60152986851d"
+ integrity sha512-W4XFE/A2ijrqvXYrwXug+cUQl6ALYKtsrGnd+xdnoZ+yC7HZag45CJ9mXR0qfLpwXxuBu0HDFh/a+a1MD0Ppdg==
dependencies:
"@expo/spawn-async" "^1.7.2"
chalk "^4.1.0"
commander "^7.2.0"
- find-up "^5.0.0"
- glob "^10.4.2"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
-expo-modules-core@2.3.12:
- version "2.3.12"
- resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-2.3.12.tgz#1c06402564c02b32f192adfe6946e671d8a95e79"
- integrity sha512-bOm83mskw1S7xuDX50DlLdx68u0doQ6BZHSU2qTv8P1/5QYeAae3pCgFLq2hoptUNeMF7W+68ShJFTOHAe68BQ==
+expo-modules-core@3.0.24:
+ version "3.0.24"
+ resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-3.0.24.tgz#9e078938a9c081c87d827898a723ecf9016e2635"
+ integrity sha512-wmL0R3WVM2WEs0UJcq/rF1FKXbSrPmXozgzhCUujrb+crkW8p7Y/qKyPBAQwdwcqipuWYaFOgO49AdQ36jmvkA==
dependencies:
invariant "^2.2.4"
-expo-navigation-bar@^4.2.4:
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/expo-navigation-bar/-/expo-navigation-bar-4.2.4.tgz#54c79d8d75b1da8e3887ca5d44c4f937f033cc7c"
- integrity sha512-aagtBaGtqeFT9GbxTBU0sUrwupZO6OLbKYJgvmZ54KSMQa5QfwNk1qScPTy5VzHs9lwAGUkBkzC1QKrnsXtj0w==
+expo-navigation-bar@~5.0.9:
+ version "5.0.9"
+ resolved "https://registry.yarnpkg.com/expo-navigation-bar/-/expo-navigation-bar-5.0.9.tgz#9a089360e6fa096ce9222d4ca19da0dce05e20c3"
+ integrity sha512-xqry+MW12atuzYLtvck4fBCv0vqmo8q2Xap1ZeQRdjEm6m6Z35S6A09kRMY4NT7Y5Iaw+FI8YrUTNWSKvSXaDw==
dependencies:
- "@react-native/normalize-colors" "0.79.2"
+ "@react-native/normalize-colors" "0.81.5"
debug "^4.3.2"
- react-native-edge-to-edge "1.6.0"
- react-native-is-edge-to-edge "^1.1.6"
+ react-native-is-edge-to-edge "^1.2.1"
expo-notifications@0.32.11:
version "0.32.11"
@@ -8578,53 +8672,61 @@ expo-notifications@0.32.11:
expo-application "~7.0.7"
expo-constants "~18.0.8"
-expo-status-bar@^2.2.3:
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-2.2.3.tgz#09385a866732328e0af3b4588c4f349a15fd7cd0"
- integrity sha512-+c8R3AESBoduunxTJ8353SqKAKpxL6DvcD8VKBuh81zzJyUUbfB4CVjr1GufSJEKsMzNPXZU+HJwXx7Xh7lx8Q==
+expo-server@^1.0.4:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/expo-server/-/expo-server-1.0.5.tgz#2d52002199a2af99c2c8771d0657916004345ca9"
+ integrity sha512-IGR++flYH70rhLyeXF0Phle56/k4cee87WeQ4mamS+MkVAVP+dDlOHf2nN06Z9Y2KhU0Gp1k+y61KkghF7HdhA==
+
+expo-status-bar@~3.0.8:
+ version "3.0.9"
+ resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-3.0.9.tgz#87cfc803fa614f09a985b8e75e3dd7abd51ce2cb"
+ integrity sha512-xyYyVg6V1/SSOZWh4Ni3U129XHCnFHBTcUo0dhWtFDrZbNp/duw5AGsQfb2sVeU0gxWHXSY1+5F0jnKYC7WuOw==
dependencies:
- react-native-edge-to-edge "1.6.0"
- react-native-is-edge-to-edge "^1.1.6"
+ react-native-is-edge-to-edge "^1.2.1"
-expo-system-ui@^5.0.7:
- version "5.0.7"
- resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-5.0.7.tgz#ccf047a689ab488d9bcda375afd063419578f494"
- integrity sha512-ijSnSFA4VfuQc84N6WyCUNsKKTIyQb6QuC8q2zGvYC/sBXTMrOtZg0zrisQGzCRW+WhritQTiVqHlp3Ix9xDmQ==
+expo-system-ui@~6.0.8:
+ version "6.0.8"
+ resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-6.0.8.tgz#283930826719c67118722669d7e31b3a334465f5"
+ integrity sha512-DzJYqG2fibBSLzPDL4BybGCiilYOtnI1OWhcYFwoM4k0pnEzMBt1Vj8Z67bXglDDuz2HCQPGNtB3tQft5saKqQ==
dependencies:
- "@react-native/normalize-colors" "0.79.2"
+ "@react-native/normalize-colors" "0.81.5"
debug "^4.3.2"
-expo-video-thumbnails@9.1.2:
- version "9.1.2"
- resolved "https://registry.yarnpkg.com/expo-video-thumbnails/-/expo-video-thumbnails-9.1.2.tgz#43b2b5f972da68be958f961544186e7593e713fc"
- integrity sha512-4D/cu4uM80nO6lOvf4w4VuBHX7gvzbSiRM/mEcGRIe4L18b1ASeDp2jkXSphpk/5rerARa7+y8wq1YQcsiDF7A==
+expo-video-thumbnails@~10.0.7:
+ version "10.0.7"
+ resolved "https://registry.yarnpkg.com/expo-video-thumbnails/-/expo-video-thumbnails-10.0.7.tgz#709c0a04588a08e5ae7591c4b926993d04c9dea5"
+ integrity sha512-pPZr2xq2DALWwZC/7M/OlIfVTAXXIFtEVvtE6BLqrtnDvlFNFvitItmsQ+Y483KS0LyMEAVrHVFVP4cIvVb9UQ==
-expo-web-browser@14.1.5:
- version "14.1.5"
- resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-14.1.5.tgz#1f36c3c6d89a51cb669e4597231dc3490cb81dbd"
- integrity sha512-SNKjWwLzpXLH+JwGyUI0FX5kIdn0vS+taJafRtRIWuFz3lPjQ8xaCI6AXVPhDne8Eb32++RxCZZCKX1dTuM+CA==
+expo-web-browser@~15.0.9:
+ version "15.0.9"
+ resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-15.0.9.tgz#248b8de8f901e68e89944c85a46ee40205190f59"
+ integrity sha512-Dj8kNFO+oXsxqCDNlUT/GhOrJnm10kAElH++3RplLydogFm5jTzXYWDEeNIDmV+F+BzGYs+sIhxiBf7RyaxXZg==
-expo@53:
- version "53.0.7"
- resolved "https://registry.yarnpkg.com/expo/-/expo-53.0.7.tgz#7bdb537a8f87e89228a2a8eb65291005b070657b"
- integrity sha512-ghX529ZG/PnDtSQTzcl3qtt6/i9ktW1Ie8BE5u936MWCiPMwydxzZ/bilM3XlckLqKEsGsqmmpA1eVcWxkm1Ow==
+expo@54:
+ version "54.0.22"
+ resolved "https://registry.yarnpkg.com/expo/-/expo-54.0.22.tgz#1615f35b2b46ca2bc9109482f1bd6e64eab30858"
+ integrity sha512-w8J89M9BdVwo6urwvPeV4nAUwykv9si1UHUfZvSVWQ/b2aGs0Ci/a5RZ550rdEBgJXZAapIAhdW2M28Ojw+oGg==
dependencies:
"@babel/runtime" "^7.20.0"
- "@expo/cli" "0.24.11"
- "@expo/config" "~11.0.8"
- "@expo/config-plugins" "~10.0.2"
- "@expo/fingerprint" "0.12.4"
- "@expo/metro-config" "0.20.13"
- "@expo/vector-icons" "^14.0.0"
- babel-preset-expo "~13.1.11"
- expo-asset "~11.1.5"
- expo-constants "~17.1.5"
- expo-file-system "~18.1.9"
- expo-font "~13.3.1"
- expo-keep-awake "~14.1.4"
- expo-modules-autolinking "2.1.9"
- expo-modules-core "2.3.12"
- react-native-edge-to-edge "1.6.0"
+ "@expo/cli" "54.0.15"
+ "@expo/config" "~12.0.10"
+ "@expo/config-plugins" "~54.0.2"
+ "@expo/devtools" "0.1.7"
+ "@expo/fingerprint" "0.15.3"
+ "@expo/metro" "~54.1.0"
+ "@expo/metro-config" "54.0.8"
+ "@expo/vector-icons" "^15.0.3"
+ "@ungap/structured-clone" "^1.3.0"
+ babel-preset-expo "~54.0.6"
+ expo-asset "~12.0.9"
+ expo-constants "~18.0.10"
+ expo-file-system "~19.0.17"
+ expo-font "~14.0.9"
+ expo-keep-awake "~15.0.7"
+ expo-modules-autolinking "3.0.20"
+ expo-modules-core "3.0.24"
+ pretty-format "^29.7.0"
+ react-refresh "^0.14.2"
whatwg-url-without-unicode "8.0.0-3"
exponential-backoff@^3.1.1:
@@ -9307,20 +9409,20 @@ hermes-estree@0.19.1:
resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.19.1.tgz#d5924f5fac2bf0532547ae9f506d6db8f3c96392"
integrity sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==
-hermes-estree@0.23.1:
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.23.1.tgz#d0bac369a030188120ee7024926aabe5a9f84fdb"
- integrity sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==
-
hermes-estree@0.25.1:
version "0.25.1"
resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.25.1.tgz#6aeec17d1983b4eabf69721f3aa3eb705b17f480"
integrity sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==
-hermes-estree@0.28.1:
- version "0.28.1"
- resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.28.1.tgz#631e6db146b06e62fc1c630939acf4a3c77d1b24"
- integrity sha512-w3nxl/RGM7LBae0v8LH2o36+8VqwOZGv9rX1wyoWT6YaKZLqpJZ0YQ5P0LVr3tuRpf7vCx0iIG4i/VmBJejxTQ==
+hermes-estree@0.29.1:
+ version "0.29.1"
+ resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.29.1.tgz#043c7db076e0e8ef8c5f6ed23828d1ba463ebcc5"
+ integrity sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==
+
+hermes-estree@0.32.0:
+ version "0.32.0"
+ resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.32.0.tgz#bb7da6613ab8e67e334a1854ea1e209f487d307b"
+ integrity sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==
hermes-parser@0.15.0:
version "0.15.0"
@@ -9336,27 +9438,27 @@ hermes-parser@0.19.1:
dependencies:
hermes-estree "0.19.1"
-hermes-parser@0.23.1:
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.23.1.tgz#e5de648e664f3b3d84d01b48fc7ab164f4b68205"
- integrity sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==
+hermes-parser@0.29.1, hermes-parser@^0.29.1:
+ version "0.29.1"
+ resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.29.1.tgz#436b24bcd7bb1e71f92a04c396ccc0716c288d56"
+ integrity sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==
+ dependencies:
+ hermes-estree "0.29.1"
+
+hermes-parser@0.32.0:
+ version "0.32.0"
+ resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.32.0.tgz#7916984ef6fdce62e7415d354cf35392061cd303"
+ integrity sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==
dependencies:
- hermes-estree "0.23.1"
+ hermes-estree "0.32.0"
-hermes-parser@0.25.1, hermes-parser@^0.25.1:
+hermes-parser@^0.25.1:
version "0.25.1"
resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.25.1.tgz#5be0e487b2090886c62bd8a11724cd766d5f54d1"
integrity sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==
dependencies:
hermes-estree "0.25.1"
-hermes-parser@0.28.1:
- version "0.28.1"
- resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.28.1.tgz#17b9e6377f334b6870a1f6da2e123fdcd0b605ac"
- integrity sha512-nf8o+hE8g7UJWParnccljHumE9Vlq8F7MqIdeahl+4x0tvCUJYRrT0L7h0MMg/X9YJmkNwsfbaNNrzPtFXOscg==
- dependencies:
- hermes-estree "0.28.1"
-
hermes-profile-transformer@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b"
@@ -10128,17 +10230,16 @@ jest-environment-node@^29.6.3, jest-environment-node@^29.7.0:
jest-mock "^29.7.0"
jest-util "^29.7.0"
-jest-expo@^53.0.5:
- version "53.0.5"
- resolved "https://registry.yarnpkg.com/jest-expo/-/jest-expo-53.0.5.tgz#5e1b16bd6b3c780196eb891e54a947d55c70cd3d"
- integrity sha512-kRQbgU5SJvx27seV20i+PXjkqOladWnrCi7gFsfGV217lSHm+7ZN8jm7o8DAuTJ/AtuudsxZh3+xUgbsxiKTvg==
+jest-expo@~54.0.13:
+ version "54.0.13"
+ resolved "https://registry.yarnpkg.com/jest-expo/-/jest-expo-54.0.13.tgz#d9a632cc2cc54e1e034aac1f9dcdbcbaa2bb1f76"
+ integrity sha512-V0xefV7VJ9RD6v6Jo64I8RzQCchgEWVn6ip5r+u4TlgsGau0DA8CAqzitn4ShoSKlmjmpuaMqcGxeCz1p9Cfvg==
dependencies:
- "@expo/config" "~11.0.9"
- "@expo/json-file" "^9.1.4"
+ "@expo/config" "~12.0.10"
+ "@expo/json-file" "^10.0.7"
"@jest/create-cache-key-function" "^29.2.1"
"@jest/globals" "^29.2.1"
babel-jest "^29.2.1"
- find-up "^5.0.0"
jest-environment-jsdom "^29.2.1"
jest-snapshot "^29.2.1"
jest-watch-select-projects "^2.0.0"
@@ -10146,7 +10247,7 @@ jest-expo@^53.0.5:
json5 "^2.2.3"
lodash "^4.17.19"
react-server-dom-webpack "~19.0.0"
- react-test-renderer "19.0.0"
+ react-test-renderer "19.1.0"
server-only "^0.0.1"
stacktrace-js "^2.0.2"
@@ -10533,7 +10634,7 @@ jsesc@^2.5.1:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-jsesc@^3.0.2:
+jsesc@^3.0.2, jsesc@~3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d"
integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==
@@ -10673,10 +10774,10 @@ kleur@^3.0.3:
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-lan-network@^0.1.4:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/lan-network/-/lan-network-0.1.5.tgz#e781889b7bd4dbedd9126fff3ceddd809a83c3ff"
- integrity sha512-CV3k7l8jW0Z1b+G41tB7JInVyJEKQzh/YPl2v9uXpZMusp0aa+rh3OqG77xWuX7+eVBa8PsdTuMznTAssF4qwg==
+lan-network@^0.1.6:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/lan-network/-/lan-network-0.1.7.tgz#9fcb9967c6d951f10b2f9a9ffabe4a312d63f69d"
+ integrity sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==
language-subtag-registry@^0.3.20:
version "0.3.22"
@@ -10719,73 +10820,79 @@ lighthouse-logger@^1.0.0:
debug "^2.6.9"
marky "^1.2.2"
-lightningcss-darwin-arm64@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz#565bd610533941cba648a70e105987578d82f996"
- integrity sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==
-
-lightningcss-darwin-x64@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz#c906a267237b1c7fe08bff6c5ac032c099bc9482"
- integrity sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==
-
-lightningcss-freebsd-x64@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz#a7c3c4d6ee18dffeb8fa69f14f8f9267f7dc0c34"
- integrity sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==
-
-lightningcss-linux-arm-gnueabihf@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz#c7c16432a571ec877bf734fe500e4a43d48c2814"
- integrity sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==
-
-lightningcss-linux-arm64-gnu@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz#cfd9e18df1cd65131da286ddacfa3aee6862a752"
- integrity sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==
-
-lightningcss-linux-arm64-musl@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz#6682ff6b9165acef9a6796bd9127a8e1247bb0ed"
- integrity sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==
-
-lightningcss-linux-x64-gnu@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz#714221212ad184ddfe974bbb7dbe9300dfde4bc0"
- integrity sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==
-
-lightningcss-linux-x64-musl@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz#247958daf622a030a6dc2285afa16b7184bdf21e"
- integrity sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==
-
-lightningcss-win32-arm64-msvc@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz#64cfe473c264ef5dc275a4d57a516d77fcac6bc9"
- integrity sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==
-
-lightningcss-win32-x64-msvc@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz#237d0dc87d9cdc9cf82536bcbc07426fa9f3f422"
- integrity sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==
-
-lightningcss@~1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.27.0.tgz#d4608e63044343836dd9769f6c8b5d607867649a"
- integrity sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==
- dependencies:
- detect-libc "^1.0.3"
+lightningcss-android-arm64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz#6966b7024d39c94994008b548b71ab360eb3a307"
+ integrity sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==
+
+lightningcss-darwin-arm64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz#a5fa946d27c029e48c7ff929e6e724a7de46eb2c"
+ integrity sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==
+
+lightningcss-darwin-x64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz#5ce87e9cd7c4f2dcc1b713f5e8ee185c88d9b7cd"
+ integrity sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==
+
+lightningcss-freebsd-x64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz#6ae1d5e773c97961df5cff57b851807ef33692a5"
+ integrity sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==
+
+lightningcss-linux-arm-gnueabihf@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz#62c489610c0424151a6121fa99d77731536cdaeb"
+ integrity sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==
+
+lightningcss-linux-arm64-gnu@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz#2a3661b56fe95a0cafae90be026fe0590d089298"
+ integrity sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==
+
+lightningcss-linux-arm64-musl@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz#d7ddd6b26959245e026bc1ad9eb6aa983aa90e6b"
+ integrity sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==
+
+lightningcss-linux-x64-gnu@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz#5a89814c8e63213a5965c3d166dff83c36152b1a"
+ integrity sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==
+
+lightningcss-linux-x64-musl@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz#808c2e91ce0bf5d0af0e867c6152e5378c049728"
+ integrity sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==
+
+lightningcss-win32-arm64-msvc@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz#ab4a8a8a2e6a82a4531e8bbb6bf0ff161ee6625a"
+ integrity sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==
+
+lightningcss-win32-x64-msvc@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz#f01f382c8e0a27e1c018b0bee316d210eac43b6e"
+ integrity sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==
+
+lightningcss@^1.30.1:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.30.2.tgz#4ade295f25d140f487d37256f4cd40dc607696d0"
+ integrity sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==
+ dependencies:
+ detect-libc "^2.0.3"
optionalDependencies:
- lightningcss-darwin-arm64 "1.27.0"
- lightningcss-darwin-x64 "1.27.0"
- lightningcss-freebsd-x64 "1.27.0"
- lightningcss-linux-arm-gnueabihf "1.27.0"
- lightningcss-linux-arm64-gnu "1.27.0"
- lightningcss-linux-arm64-musl "1.27.0"
- lightningcss-linux-x64-gnu "1.27.0"
- lightningcss-linux-x64-musl "1.27.0"
- lightningcss-win32-arm64-msvc "1.27.0"
- lightningcss-win32-x64-msvc "1.27.0"
+ lightningcss-android-arm64 "1.30.2"
+ lightningcss-darwin-arm64 "1.30.2"
+ lightningcss-darwin-x64 "1.30.2"
+ lightningcss-freebsd-x64 "1.30.2"
+ lightningcss-linux-arm-gnueabihf "1.30.2"
+ lightningcss-linux-arm64-gnu "1.30.2"
+ lightningcss-linux-arm64-musl "1.30.2"
+ lightningcss-linux-x64-gnu "1.30.2"
+ lightningcss-linux-x64-musl "1.30.2"
+ lightningcss-win32-arm64-msvc "1.30.2"
+ lightningcss-win32-x64-msvc "1.30.2"
lines-and-columns@^1.1.6:
version "1.2.4"
@@ -11100,14 +11207,24 @@ metro-babel-transformer@0.80.6:
hermes-parser "0.19.1"
nullthrows "^1.1.1"
-metro-babel-transformer@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.82.2.tgz#acb89a300a070b685cadbfdc3aa3f809b52de9fc"
- integrity sha512-c2gesA7/B4dovPmmYC2HziNXb4XFG3YkQ9FjEzwRnR6KH2hT7nJn6mkcri1h85r3sMttpnmoBuZ8WDz980Zhlw==
+metro-babel-transformer@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.83.2.tgz#d3885f2a266f01e43f16bdcfb786b1d8f1598f56"
+ integrity sha512-rirY1QMFlA1uxH3ZiNauBninwTioOgwChnRdDcbB4tgRZ+bGX9DiXoh9QdpppiaVKXdJsII932OwWXGGV4+Nlw==
+ dependencies:
+ "@babel/core" "^7.25.2"
+ flow-enums-runtime "^0.0.6"
+ hermes-parser "0.32.0"
+ nullthrows "^1.1.1"
+
+metro-babel-transformer@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.83.3.tgz#d8c134615530c9ee61364526d44ca4bb0c5343ea"
+ integrity sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==
dependencies:
"@babel/core" "^7.25.2"
flow-enums-runtime "^0.0.6"
- hermes-parser "0.28.1"
+ hermes-parser "0.32.0"
nullthrows "^1.1.1"
metro-cache-key@0.80.6:
@@ -11115,10 +11232,17 @@ metro-cache-key@0.80.6:
resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.80.6.tgz#48fe84477f6408478a33c363a8f5eaceea5cf853"
integrity sha512-DFmjQacC8m/S3HpELklLMWkPGP/fZPX3BSgjd0xQvwIvWyFwk8Nn/lfp/uWdEVDtDSIr64/anXU5uWohGwlWXw==
-metro-cache-key@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.82.2.tgz#d1b73cd4849e9ed3984aeb2386e5b198f8f59fad"
- integrity sha512-lfjC9zzSri+rS7lkoCh04LniFga8JQVUqSuscD9KraIm9zRzwIwvaMx8V6Oogiezs+FAJUOSnVNhHcHc9l8H2Q==
+metro-cache-key@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.83.2.tgz#b34427fdafe551d567ac312f8a3c7e334a20f796"
+ integrity sha512-3EMG/GkGKYoTaf5RqguGLSWRqGTwO7NQ0qXKmNBjr0y6qD9s3VBXYlwB+MszGtmOKsqE9q3FPrE5Nd9Ipv7rZw==
+ dependencies:
+ flow-enums-runtime "^0.0.6"
+
+metro-cache-key@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.83.3.tgz#ae6c5d4eb1ad8d06a92bf7294ca730a8d880b573"
+ integrity sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==
dependencies:
flow-enums-runtime "^0.0.6"
@@ -11130,15 +11254,25 @@ metro-cache@0.80.6:
metro-core "0.80.6"
rimraf "^3.0.2"
-metro-cache@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.82.2.tgz#2d5427164a8bf9f15c6fb96484666cd1187eda6b"
- integrity sha512-MxY4xvPKuE68NYpKJjH8YvVVugDL2QcuTracHsV5/30ZIaRr0v1QuAX5vt45OCQDQQWeh1rDv3E4JB6AbIvnZQ==
+metro-cache@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.83.2.tgz#d647d9253312801b19c4930be586c60976244540"
+ integrity sha512-Z43IodutUZeIS7OTH+yQFjc59QlFJ6s5OvM8p2AP9alr0+F8UKr8ADzFzoGKoHefZSKGa4bJx7MZJLF6GwPDHQ==
+ dependencies:
+ exponential-backoff "^3.1.1"
+ flow-enums-runtime "^0.0.6"
+ https-proxy-agent "^7.0.5"
+ metro-core "0.83.2"
+
+metro-cache@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.83.3.tgz#f1245cc48570c47d8944495e61d67f0228f10172"
+ integrity sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==
dependencies:
exponential-backoff "^3.1.1"
flow-enums-runtime "^0.0.6"
https-proxy-agent "^7.0.5"
- metro-core "0.82.2"
+ metro-core "0.83.3"
metro-config@0.80.6, metro-config@^0.80.3:
version "0.80.6"
@@ -11153,19 +11287,33 @@ metro-config@0.80.6, metro-config@^0.80.3:
metro-core "0.80.6"
metro-runtime "0.80.6"
-metro-config@0.82.2, metro-config@^0.82.0:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.82.2.tgz#0766d13f9707d60367a824f506fdd5144f7cb53b"
- integrity sha512-0dG3qCFLoE3ddNexAxSLJ7FbGjEbwUjDNOgYeCLoPSkKB01k5itvvr2HFfl2HisOCfLcpjpVzF5NtB/O71lxfA==
+metro-config@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.83.2.tgz#5ab5eba754c7affd0f3e44be98543aea37c9fab7"
+ integrity sha512-1FjCcdBe3e3D08gSSiU9u3Vtxd7alGH3x/DNFqWDFf5NouX4kLgbVloDDClr1UrLz62c0fHh2Vfr9ecmrOZp+g==
+ dependencies:
+ connect "^3.6.5"
+ flow-enums-runtime "^0.0.6"
+ jest-validate "^29.7.0"
+ metro "0.83.2"
+ metro-cache "0.83.2"
+ metro-core "0.83.2"
+ metro-runtime "0.83.2"
+ yaml "^2.6.1"
+
+metro-config@0.83.3, metro-config@^0.83.1:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.83.3.tgz#a30e7a69b5cf8c4ac4c4b68b1b4c33649ae129a2"
+ integrity sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==
dependencies:
connect "^3.6.5"
- cosmiconfig "^5.0.5"
flow-enums-runtime "^0.0.6"
jest-validate "^29.7.0"
- metro "0.82.2"
- metro-cache "0.82.2"
- metro-core "0.82.2"
- metro-runtime "0.82.2"
+ metro "0.83.3"
+ metro-cache "0.83.3"
+ metro-core "0.83.3"
+ metro-runtime "0.83.3"
+ yaml "^2.6.1"
metro-core@0.80.6, metro-core@^0.80.3:
version "0.80.6"
@@ -11175,14 +11323,23 @@ metro-core@0.80.6, metro-core@^0.80.3:
lodash.throttle "^4.1.1"
metro-resolver "0.80.6"
-metro-core@0.82.2, metro-core@^0.82.0:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.82.2.tgz#8c95128a247848f750835c184c29ca23905892ab"
- integrity sha512-d2XMkWbRh6PdPV1OZ8OyUyDWrtEbQ1m5ASpKtemLPbujfoE4RlwFZdl4ljfBNVVZ1s0z7tgsSFwKMyTeXgjtSg==
+metro-core@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.83.2.tgz#8b6292482c8cd88bae5f56c5f4903ef7ee292631"
+ integrity sha512-8DRb0O82Br0IW77cNgKMLYWUkx48lWxUkvNUxVISyMkcNwE/9ywf1MYQUE88HaKwSrqne6kFgCSA/UWZoUT0Iw==
+ dependencies:
+ flow-enums-runtime "^0.0.6"
+ lodash.throttle "^4.1.1"
+ metro-resolver "0.83.2"
+
+metro-core@0.83.3, metro-core@^0.83.1:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.83.3.tgz#007e93f7d1983777da8988dfb103ad897c9835b8"
+ integrity sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==
dependencies:
flow-enums-runtime "^0.0.6"
lodash.throttle "^4.1.1"
- metro-resolver "0.82.2"
+ metro-resolver "0.83.3"
metro-file-map@0.80.6:
version "0.80.6"
@@ -11202,10 +11359,25 @@ metro-file-map@0.80.6:
optionalDependencies:
fsevents "^2.3.2"
-metro-file-map@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.82.2.tgz#acb98d73701373e12f1294f1998b983749e4c7cb"
- integrity sha512-pax0WA80eRH096YO0kwox+ZD5im3V0Vswr2x1YqdMcZVWlr6uwXgQdo9q+mpcvJ1k77J+hmY5HIg71bqrUptVg==
+metro-file-map@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.83.2.tgz#8f943d608f27216fde8dd91787294b5a9409752e"
+ integrity sha512-cMSWnEqZrp/dzZIEd7DEDdk72PXz6w5NOKriJoDN9p1TDQ5nAYrY2lHi8d6mwbcGLoSlWmpPyny9HZYFfPWcGQ==
+ dependencies:
+ debug "^4.4.0"
+ fb-watchman "^2.0.0"
+ flow-enums-runtime "^0.0.6"
+ graceful-fs "^4.2.4"
+ invariant "^2.2.4"
+ jest-worker "^29.7.0"
+ micromatch "^4.0.4"
+ nullthrows "^1.1.1"
+ walker "^1.0.7"
+
+metro-file-map@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.83.3.tgz#3d79fbb1d379ab178dd895ce54cb5ecb183d74a2"
+ integrity sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==
dependencies:
debug "^4.4.0"
fb-watchman "^2.0.0"
@@ -11224,10 +11396,18 @@ metro-minify-terser@0.80.6:
dependencies:
terser "^5.15.0"
-metro-minify-terser@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.82.2.tgz#9afd1d486357065edfd01b5e9a9f1e18a93018e9"
- integrity sha512-+nveaEdQUvsoi0OSr4Cp+btevZsg2DKsu8kUJsvyLIcRRFPUw9CwzF3V2cA5b55DY5LcIJyAcZf4D9ARKfoilQ==
+metro-minify-terser@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.83.2.tgz#17ea8aef987970f8505ed8f890ab00c47c419608"
+ integrity sha512-zvIxnh7U0JQ7vT4quasKsijId3dOAWgq+ip2jF/8TMrPUqQabGrs04L2dd0haQJ+PA+d4VvK/bPOY8X/vL2PWw==
+ dependencies:
+ flow-enums-runtime "^0.0.6"
+ terser "^5.15.0"
+
+metro-minify-terser@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.83.3.tgz#c1c70929c86b14c8bf03e6321b4f9310bc8dbe87"
+ integrity sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==
dependencies:
flow-enums-runtime "^0.0.6"
terser "^5.15.0"
@@ -11237,10 +11417,17 @@ metro-resolver@0.80.6:
resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.80.6.tgz#b648b8c661bc4cf091efd11affa010dd11f58bec"
integrity sha512-R7trfglG4zY4X9XyM9cvuffAhQ9W1reWoahr1jdEWa6rOI8PyM0qXjcsb8l+fsOQhdSiVlkKcYAmkyrs1S/zrA==
-metro-resolver@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.82.2.tgz#994ebdbf23970fc460c50e47d39bf74db3b87e57"
- integrity sha512-Who2hGzq2aCGSsBaQBU0L3SADiy/kj/gv0coujNWziRY4SKq7ECKzWqtVk1JlEF7IGXDDRDxEgFuLmPV6mZGVQ==
+metro-resolver@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.83.2.tgz#d4a40a602615baacfb94d8a773e8b93eaac70d0f"
+ integrity sha512-Yf5mjyuiRE/Y+KvqfsZxrbHDA15NZxyfg8pIk0qg47LfAJhpMVEX+36e6ZRBq7KVBqy6VDX5Sq55iHGM4xSm7Q==
+ dependencies:
+ flow-enums-runtime "^0.0.6"
+
+metro-resolver@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.83.3.tgz#06207bdddc280b9335722a8c992aeec017413942"
+ integrity sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==
dependencies:
flow-enums-runtime "^0.0.6"
@@ -11251,10 +11438,18 @@ metro-runtime@0.80.6, metro-runtime@^0.80.3:
dependencies:
"@babel/runtime" "^7.0.0"
-metro-runtime@0.82.2, metro-runtime@^0.82.0:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.82.2.tgz#4a86e48cdb124dd5f53fa42befadfd0838c58fdb"
- integrity sha512-gEcb2AfDs3GRs2SFjtEmG0k61B/cZEVCbh6cSmkjJpyHr+VRjw77MnDpX9AUcJYa4bCT63E7IEySOMM0Z8p87g==
+metro-runtime@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.83.2.tgz#77c9715483fd3d449407435c1c160f7410c588d7"
+ integrity sha512-nnsPtgRvFbNKwemqs0FuyFDzXLl+ezuFsUXDbX8o0SXOfsOPijqiQrf3kuafO1Zx1aUWf4NOrKJMAQP5EEHg9A==
+ dependencies:
+ "@babel/runtime" "^7.25.0"
+ flow-enums-runtime "^0.0.6"
+
+metro-runtime@0.83.3, metro-runtime@^0.83.1:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.83.3.tgz#ff504df5d93f38b1af396715b327e589ba8d184d"
+ integrity sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==
dependencies:
"@babel/runtime" "^7.25.0"
flow-enums-runtime "^0.0.6"
@@ -11273,19 +11468,35 @@ metro-source-map@0.80.6, metro-source-map@^0.80.3:
source-map "^0.5.6"
vlq "^1.0.0"
-metro-source-map@0.82.2, metro-source-map@^0.82.0:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.82.2.tgz#19c1cb06e462a9f19ff76dfc3827c2561cbebf63"
- integrity sha512-S26xPdz1/EeAY0HqaPXfny8CeiY0Dvl4sBLQiXGXhoES4gUDAuMhA1tioKrv5F+x68Sod8cp8Js6EGqbMXeqMA==
+metro-source-map@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.83.2.tgz#5688eeb3fc85a1ca0f5f5efede2257a872e2b9fe"
+ integrity sha512-5FL/6BSQvshIKjXOennt9upFngq2lFvDakZn5LfauIVq8+L4sxXewIlSTcxAtzbtjAIaXeOSVMtCJ5DdfCt9AA==
dependencies:
"@babel/traverse" "^7.25.3"
"@babel/traverse--for-generate-function-map" "npm:@babel/traverse@^7.25.3"
"@babel/types" "^7.25.2"
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
- metro-symbolicate "0.82.2"
+ metro-symbolicate "0.83.2"
nullthrows "^1.1.1"
- ob1 "0.82.2"
+ ob1 "0.83.2"
+ source-map "^0.5.6"
+ vlq "^1.0.0"
+
+metro-source-map@0.83.3, metro-source-map@^0.83.1:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.83.3.tgz#04bb464f7928ea48bcdfd18912c8607cf317c898"
+ integrity sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==
+ dependencies:
+ "@babel/traverse" "^7.25.3"
+ "@babel/traverse--for-generate-function-map" "npm:@babel/traverse@^7.25.3"
+ "@babel/types" "^7.25.2"
+ flow-enums-runtime "^0.0.6"
+ invariant "^2.2.4"
+ metro-symbolicate "0.83.3"
+ nullthrows "^1.1.1"
+ ob1 "0.83.3"
source-map "^0.5.6"
vlq "^1.0.0"
@@ -11301,14 +11512,26 @@ metro-symbolicate@0.80.6:
through2 "^2.0.1"
vlq "^1.0.0"
-metro-symbolicate@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.82.2.tgz#1e16d60fb9b96e7067527cfb2257f2b46406a4f6"
- integrity sha512-iheanMnOMned6gjt6sKSfU5AoNyV6pJyQAWydwuHcjhGpa/kiAM0kKmw23qHejELK89Yw8HDZ3Fd/5l1jxpFVA==
+metro-symbolicate@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.83.2.tgz#63a5f31cdb6db17371a00d259890643d84a75549"
+ integrity sha512-KoU9BLwxxED6n33KYuQQuc5bXkIxF3fSwlc3ouxrrdLWwhu64muYZNQrukkWzhVKRNFIXW7X2iM8JXpi2heIPw==
+ dependencies:
+ flow-enums-runtime "^0.0.6"
+ invariant "^2.2.4"
+ metro-source-map "0.83.2"
+ nullthrows "^1.1.1"
+ source-map "^0.5.6"
+ vlq "^1.0.0"
+
+metro-symbolicate@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.83.3.tgz#67af03950f0dfe19a7c059e3983e39a31e95d03a"
+ integrity sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==
dependencies:
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
- metro-source-map "0.82.2"
+ metro-source-map "0.83.3"
nullthrows "^1.1.1"
source-map "^0.5.6"
vlq "^1.0.0"
@@ -11324,10 +11547,22 @@ metro-transform-plugins@0.80.6:
"@babel/traverse" "^7.20.0"
nullthrows "^1.1.1"
-metro-transform-plugins@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.82.2.tgz#2948a012ef40b36ad272fc986920fd7e9b552be4"
- integrity sha512-kEveuEVxghTEXkDiyY0MT5QRqei092KJG46nduo0VghFgI6QFodbAjFit1ULyWsn2VOTGSUDJ3VgHBMy7MaccA==
+metro-transform-plugins@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.83.2.tgz#c4353147212cad1c76dcea8fd93c7f0c7b09b3a4"
+ integrity sha512-5WlW25WKPkiJk2yA9d8bMuZrgW7vfA4f4MBb9ZeHbTB3eIAoNN8vS8NENgG/X/90vpTB06X66OBvxhT3nHwP6A==
+ dependencies:
+ "@babel/core" "^7.25.2"
+ "@babel/generator" "^7.25.0"
+ "@babel/template" "^7.25.0"
+ "@babel/traverse" "^7.25.3"
+ flow-enums-runtime "^0.0.6"
+ nullthrows "^1.1.1"
+
+metro-transform-plugins@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.83.3.tgz#2c59ba841e269363cf3acb13138cb992f0c75013"
+ integrity sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==
dependencies:
"@babel/core" "^7.25.2"
"@babel/generator" "^7.25.0"
@@ -11354,23 +11589,42 @@ metro-transform-worker@0.80.6:
metro-transform-plugins "0.80.6"
nullthrows "^1.1.1"
-metro-transform-worker@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.82.2.tgz#4eb09c95c2d9cda1cf0e8e201bd899c0da5b0a0c"
- integrity sha512-MJQNz6cGjqewCRqFmPrsHu6Oe93v2B6zgHkrNxQ6XdPMJz5VHD33m8q+8UsNJOH8wUMoRu5JmYtuUTIVIFxh2A==
+metro-transform-worker@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.83.2.tgz#f97367b6384be87ea216a97072810705c19c3775"
+ integrity sha512-G5DsIg+cMZ2KNfrdLnWMvtppb3+Rp1GMyj7Bvd9GgYc/8gRmvq1XVEF9XuO87Shhb03kFhGqMTgZerz3hZ1v4Q==
+ dependencies:
+ "@babel/core" "^7.25.2"
+ "@babel/generator" "^7.25.0"
+ "@babel/parser" "^7.25.3"
+ "@babel/types" "^7.25.2"
+ flow-enums-runtime "^0.0.6"
+ metro "0.83.2"
+ metro-babel-transformer "0.83.2"
+ metro-cache "0.83.2"
+ metro-cache-key "0.83.2"
+ metro-minify-terser "0.83.2"
+ metro-source-map "0.83.2"
+ metro-transform-plugins "0.83.2"
+ nullthrows "^1.1.1"
+
+metro-transform-worker@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.83.3.tgz#ca6ae4a02b0f61b33299e6e56bacaba32dcd607f"
+ integrity sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==
dependencies:
"@babel/core" "^7.25.2"
"@babel/generator" "^7.25.0"
"@babel/parser" "^7.25.3"
"@babel/types" "^7.25.2"
flow-enums-runtime "^0.0.6"
- metro "0.82.2"
- metro-babel-transformer "0.82.2"
- metro-cache "0.82.2"
- metro-cache-key "0.82.2"
- metro-minify-terser "0.82.2"
- metro-source-map "0.82.2"
- metro-transform-plugins "0.82.2"
+ metro "0.83.3"
+ metro-babel-transformer "0.83.3"
+ metro-cache "0.83.3"
+ metro-cache-key "0.83.3"
+ metro-minify-terser "0.83.3"
+ metro-source-map "0.83.3"
+ metro-transform-plugins "0.83.3"
nullthrows "^1.1.1"
metro@0.80.6, metro@^0.80.3:
@@ -11422,10 +11676,56 @@ metro@0.80.6, metro@^0.80.3:
ws "^7.5.1"
yargs "^17.6.2"
-metro@0.82.2, metro@^0.82.0:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/metro/-/metro-0.82.2.tgz#3fdf2eb2558d930ba9f156967e861dee8b026081"
- integrity sha512-hOBd4O4Cn/tLf3jz7IjSgD/A66MqMzgZuyF1I/pmNwYcY3q3j2vbh7Fa09KIbvUq5Yz7BewU356XboaEtEXPgA==
+metro@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/metro/-/metro-0.83.2.tgz#a56d31a604819951c8b9cf19d570897341e29b07"
+ integrity sha512-HQgs9H1FyVbRptNSMy/ImchTTE5vS2MSqLoOo7hbDoBq6hPPZokwJvBMwrYSxdjQZmLXz2JFZtdvS+ZfgTc9yw==
+ dependencies:
+ "@babel/code-frame" "^7.24.7"
+ "@babel/core" "^7.25.2"
+ "@babel/generator" "^7.25.0"
+ "@babel/parser" "^7.25.3"
+ "@babel/template" "^7.25.0"
+ "@babel/traverse" "^7.25.3"
+ "@babel/types" "^7.25.2"
+ accepts "^1.3.7"
+ chalk "^4.0.0"
+ ci-info "^2.0.0"
+ connect "^3.6.5"
+ debug "^4.4.0"
+ error-stack-parser "^2.0.6"
+ flow-enums-runtime "^0.0.6"
+ graceful-fs "^4.2.4"
+ hermes-parser "0.32.0"
+ image-size "^1.0.2"
+ invariant "^2.2.4"
+ jest-worker "^29.7.0"
+ jsc-safe-url "^0.2.2"
+ lodash.throttle "^4.1.1"
+ metro-babel-transformer "0.83.2"
+ metro-cache "0.83.2"
+ metro-cache-key "0.83.2"
+ metro-config "0.83.2"
+ metro-core "0.83.2"
+ metro-file-map "0.83.2"
+ metro-resolver "0.83.2"
+ metro-runtime "0.83.2"
+ metro-source-map "0.83.2"
+ metro-symbolicate "0.83.2"
+ metro-transform-plugins "0.83.2"
+ metro-transform-worker "0.83.2"
+ mime-types "^2.1.27"
+ nullthrows "^1.1.1"
+ serialize-error "^2.1.0"
+ source-map "^0.5.6"
+ throat "^5.0.0"
+ ws "^7.5.10"
+ yargs "^17.6.2"
+
+metro@0.83.3, metro@^0.83.1:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro/-/metro-0.83.3.tgz#1e7e04c15519af746f8932c7f9c553d92c39e922"
+ integrity sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==
dependencies:
"@babel/code-frame" "^7.24.7"
"@babel/core" "^7.25.2"
@@ -11442,24 +11742,24 @@ metro@0.82.2, metro@^0.82.0:
error-stack-parser "^2.0.6"
flow-enums-runtime "^0.0.6"
graceful-fs "^4.2.4"
- hermes-parser "0.28.1"
+ hermes-parser "0.32.0"
image-size "^1.0.2"
invariant "^2.2.4"
jest-worker "^29.7.0"
jsc-safe-url "^0.2.2"
lodash.throttle "^4.1.1"
- metro-babel-transformer "0.82.2"
- metro-cache "0.82.2"
- metro-cache-key "0.82.2"
- metro-config "0.82.2"
- metro-core "0.82.2"
- metro-file-map "0.82.2"
- metro-resolver "0.82.2"
- metro-runtime "0.82.2"
- metro-source-map "0.82.2"
- metro-symbolicate "0.82.2"
- metro-transform-plugins "0.82.2"
- metro-transform-worker "0.82.2"
+ metro-babel-transformer "0.83.3"
+ metro-cache "0.83.3"
+ metro-cache-key "0.83.3"
+ metro-config "0.83.3"
+ metro-core "0.83.3"
+ metro-file-map "0.83.3"
+ metro-resolver "0.83.3"
+ metro-runtime "0.83.3"
+ metro-source-map "0.83.3"
+ metro-symbolicate "0.83.3"
+ metro-transform-plugins "0.83.3"
+ metro-transform-worker "0.83.3"
mime-types "^2.1.27"
nullthrows "^1.1.1"
serialize-error "^2.1.0"
@@ -11753,6 +12053,11 @@ node-releases@^2.0.19:
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314"
integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
+node-releases@^2.0.26:
+ version "2.0.27"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz#eedca519205cf20f650f61d56b070db111231e4e"
+ integrity sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==
+
node-stream-zip@^1.9.1:
version "1.15.0"
resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea"
@@ -11812,10 +12117,17 @@ ob1@0.80.6:
resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.80.6.tgz#61d7881f458333ed2a73b90cea4aa62f8ca9e045"
integrity sha512-nlLGZPMQ/kbmkdIb5yvVzep1jKUII2x6ehNsHpgy71jpnJMW7V+KsB3AjYI2Ajb7UqMAMNjlssg6FUodrEMYzg==
-ob1@0.82.2:
- version "0.82.2"
- resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.82.2.tgz#ca2478f9cd904a4a91381fbfa729996c40ed567b"
- integrity sha512-sfUaYpjkAdHgu8cXLAyWXO98jW1EUOStTDNslfC9eb3tBLExe67PRqh09J0xdD6AlFKHFGTvXPbuHGvlrZNJNA==
+ob1@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.83.2.tgz#23c2e58b7d542fb01e627049710334d14c287cf8"
+ integrity sha512-XlK3w4M+dwd1g1gvHzVbxiXEbUllRONEgcF2uEO0zm4nxa0eKlh41c6N65q1xbiDOeKKda1tvNOAD33fNjyvCg==
+ dependencies:
+ flow-enums-runtime "^0.0.6"
+
+ob1@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.83.3.tgz#2208e20c9070e9beff3ad067f2db458fa6b07014"
+ integrity sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==
dependencies:
flow-enums-runtime "^0.0.6"
@@ -12552,21 +12864,20 @@ react-devtools-core@^4.27.7:
shell-quote "^1.6.1"
ws "^7"
-react-devtools-core@^6.1.1:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-6.1.1.tgz#7dac74773d039273134c360f8b65cf4f6c795c49"
- integrity sha512-TFo1MEnkqE6hzAbaztnyR5uLTMoz6wnEWwWBsCUzNt+sVXJycuRJdDqvL078M4/h65BI/YO5XWTaxZDWVsW0fw==
+react-devtools-core@^6.1.5:
+ version "6.1.5"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-6.1.5.tgz#c5eca79209dab853a03b2158c034c5166975feee"
+ integrity sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==
dependencies:
shell-quote "^1.6.1"
ws "^7"
-react-dom@18.2.0:
- version "18.2.0"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
- integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
+react-dom@19.1.0:
+ version "19.1.0"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.1.0.tgz#133558deca37fa1d682708df8904b25186793623"
+ integrity sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==
dependencies:
- loose-envify "^1.1.0"
- scheduler "^0.23.0"
+ scheduler "^0.26.0"
react-freeze@^1.0.0:
version "1.0.4"
@@ -12593,7 +12904,7 @@ react-is@^17.0.1:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
-react-is@^19.0.0, react-is@^19.1.0:
+react-is@^19.1.0:
version "19.1.0"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.1.0.tgz#805bce321546b7e14c084989c77022351bbdd11b"
integrity sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==
@@ -12615,10 +12926,10 @@ react-native-background-timer@2.4.1:
resolved "https://registry.yarnpkg.com/react-native-background-timer/-/react-native-background-timer-2.4.1.tgz#a3bc1cafa8c1e3aeefd0611de120298b67978a0f"
integrity sha512-TE4Kiy7jUyv+hugxDxitzu38sW1NqjCk4uE5IgU2WevLv7sZacaBc6PZKOShNRPGirLl1NWkaG3LDEkdb9Um5g==
-react-native-bootsplash@^6.3.8:
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/react-native-bootsplash/-/react-native-bootsplash-6.3.8.tgz#9d9883993f397daa18a69bd1ac23f90f3643fc0b"
- integrity sha512-EvkNWta0tBSPf87JpHAG1aKilma0TVsToMPhy4L8sev70wVewpiuNfhFqvLvp8U7pnE5hi6ld6S8sA0Zhtrs/g==
+react-native-bootsplash@^6.3.10:
+ version "6.3.11"
+ resolved "https://registry.yarnpkg.com/react-native-bootsplash/-/react-native-bootsplash-6.3.11.tgz#5ed543e5273d7d75912dbfc56c5b0a66bb4ee924"
+ integrity sha512-VA102LDBPyqMJzRtIb5H6MWsKSSpjzW49e34E2kpOivmkYllLlOpkpB/Q6Yvrt4u3EbkgOxB5gerJERhvcO4Tg==
dependencies:
"@expo/config-plugins" "^9.0.0 || ^10.0.0"
"@react-native-community/cli-config-android" "^18.0.0"
@@ -12630,7 +12941,7 @@ react-native-bootsplash@^6.3.8:
node-html-parser "^7.0.1"
picocolors "^1.1.1"
prettier "^3.5.3"
- react-native-is-edge-to-edge "^1.1.7"
+ react-native-is-edge-to-edge "^1.2.1"
sharp "^0.32.6"
ts-dedent "^2.2.0"
xml-formatter "^3.6.5"
@@ -12679,20 +12990,15 @@ react-native-easy-toast@2.3.0:
deprecated-react-native-prop-types "^2.3.0"
prop-types "^15.6.0"
-react-native-edge-to-edge@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/react-native-edge-to-edge/-/react-native-edge-to-edge-1.6.0.tgz#2ba63b941704a7f713e298185c26cde4d9e4b973"
- integrity sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og==
-
react-native-file-viewer@2.1.4:
version "2.1.4"
resolved "https://registry.yarnpkg.com/react-native-file-viewer/-/react-native-file-viewer-2.1.4.tgz#987b2902f0f0ac87b42f3ac3d3037c8ae98f17a6"
integrity sha512-G3ko9lmqxT+lWhsDNy2K3Jes6xSMsUvlYwuwnRCNk2wC6hgYMeoeaiwDt8R3CdON781hB6Ej1eu3ir1QATtHXg==
-react-native-gesture-handler@2.24.0:
- version "2.24.0"
- resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.24.0.tgz#b6e1f13ec9bf8dfa5f4911854b6e0d73d882a81a"
- integrity sha512-ZdWyOd1C8axKJHIfYxjJKCcxjWEpUtUWgTOVY2wynbiveSQDm8X/PDyAKXSer/GOtIpjudUbACOndZXCN3vHsw==
+react-native-gesture-handler@~2.28.0:
+ version "2.28.0"
+ resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.28.0.tgz#07fb4f5eae72f810aac3019b060d26c1835bfd0c"
+ integrity sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
@@ -12702,12 +13008,7 @@ react-native-image-crop-picker@RocketChat/react-native-image-crop-picker#5346870
version "0.50.1"
resolved "https://codeload.github.com/RocketChat/react-native-image-crop-picker/tar.gz/5346870b0be10d300dc53924309dc6adc9946d50"
-react-native-is-edge-to-edge@1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/react-native-is-edge-to-edge/-/react-native-is-edge-to-edge-1.1.6.tgz#69ec13f70d76e9245e275eed4140d0873a78f902"
- integrity sha512-1pHnFTlBahins6UAajXUqeCOHew9l9C2C8tErnpGC3IyLJzvxD+TpYAixnCbrVS52f7+NvMttbiSI290XfwN0w==
-
-react-native-is-edge-to-edge@^1.1.6, react-native-is-edge-to-edge@^1.1.7:
+react-native-is-edge-to-edge@1.1.7:
version "1.1.7"
resolved "https://registry.yarnpkg.com/react-native-is-edge-to-edge/-/react-native-is-edge-to-edge-1.1.7.tgz#28947688f9fafd584e73a4f935ea9603bd9b1939"
integrity sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==
@@ -12721,12 +13022,17 @@ react-native-is-edge-to-edge@^1.2.1:
version "1.3.0"
resolved "git+https://github.com/RocketChat/react-native-katex.git#37e579804fe238732d8a4b06dec073610ab062b1"
-react-native-keyboard-controller@^1.17.1:
- version "1.17.1"
- resolved "https://registry.yarnpkg.com/react-native-keyboard-controller/-/react-native-keyboard-controller-1.17.1.tgz#46efe148c1bdd0ee22094dcb2660f70f81e6544e"
- integrity sha512-YM3GYvtkuWimCKkZFURn5hIb1WiKOQqi2DijdwZSF5QSSzGqfqwzEEC3bm1xCN8HGHAEIXAaWIBUsc3Xp5L+Ng==
+react-native-keyboard-controller@1.18.5:
+ version "1.18.5"
+ resolved "https://registry.yarnpkg.com/react-native-keyboard-controller/-/react-native-keyboard-controller-1.18.5.tgz#ae12131f2019c574178479d2c55784f55e08bb68"
+ integrity sha512-wbYN6Tcu3G5a05dhRYBgjgd74KqoYWuUmroLpigRg9cXy5uYo7prTMIvMgvLtARQtUF7BOtFggUnzgoBOgk0TQ==
dependencies:
- react-native-is-edge-to-edge "^1.1.6"
+ react-native-is-edge-to-edge "^1.2.1"
+
+react-native-keychain@^8.2.0:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/react-native-keychain/-/react-native-keychain-8.2.0.tgz#aea82df37aacbb04f8b567a8e0e6d7292025610a"
+ integrity sha512-SkRtd9McIl1Ss2XSWNLorG+KMEbgeVqX+gV+t3u1EAAqT8q2/OpRmRbxpneT2vnb/dMhiU7g6K/pf3nxLUXRvA==
react-native-linear-gradient@2.6.2:
version "2.6.2"
@@ -12799,9 +13105,9 @@ react-native-prompt-android@1.1.0:
integrity sha512-4JoyEaT2ZnK9IH+tDFpbTiQBgva8UIFGQf4/Uw/tnEVWBERlVlzcs5B82T9BkeEhEqXhp89JaiSBnLWj30lciw==
react-native-reanimated@^3.17.1:
- version "3.17.1"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.17.1.tgz#42bed044ad046f09efcc00a80fabcc6eb18c7073"
- integrity sha512-ECzLhLxMKLifv34a8799/MHqIazQZV9fLMNSMdixXQlzX71RyL3/ah3cz/h3ERoyhJAYRC2ySLLZho6pXSqMFQ==
+ version "3.19.3"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.19.3.tgz#cf41a458127fe528ba3c0a89c451d23a268dead0"
+ integrity sha512-96ZSE6VRpBAAkrLcnbtCRHvjCqF+jtJCA+in6BN/fu0XUquJAxJHZr8kCt4aHMv6Aqxo6cm9sQEkjMj68JJnZg==
dependencies:
"@babel/plugin-transform-arrow-functions" "^7.0.0-0"
"@babel/plugin-transform-class-properties" "^7.0.0-0"
@@ -12814,22 +13120,22 @@ react-native-reanimated@^3.17.1:
"@babel/preset-typescript" "^7.16.7"
convert-source-map "^2.0.0"
invariant "^2.2.4"
- react-native-is-edge-to-edge "1.1.6"
+ react-native-is-edge-to-edge "1.1.7"
react-native-restart@0.0.22:
version "0.0.22"
resolved "https://registry.yarnpkg.com/react-native-restart/-/react-native-restart-0.0.22.tgz#81fcb7f31e35951d85410c68b9556acf3ab88705"
integrity sha512-XwCqAMAKsO8yCM3xACPFKvkDQZe41lcavOuO0gUEu803IuTLtciualCq/qs83ryRDCDh1jkXYRqFjsGjLMCN3Q==
-react-native-safe-area-context@^5.4.0:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-5.4.0.tgz#04b51940408c114f75628a12a93569d30c525454"
- integrity sha512-JaEThVyJcLhA+vU0NU8bZ0a1ih6GiF4faZ+ArZLqpYbL6j7R3caRqj+mE3lEtKCuHgwjLg3bCxLL1GPUJZVqUA==
+react-native-safe-area-context@~5.6.0:
+ version "5.6.2"
+ resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-5.6.2.tgz#283e006f5b434fb247fcb4be0971ad7473d5c560"
+ integrity sha512-4XGqMNj5qjUTYywJqpdWZ9IG8jgkS3h06sfVjfw5yZQZfWnRFXczi0GnYyFyCc2EBps/qFmoCH8fez//WumdVg==
-react-native-screens@^4.13.1:
- version "4.13.1"
- resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-4.13.1.tgz#bf19f09b76dee90b5f7bd8aab3c951a565dd111d"
- integrity sha512-EESsMAtyzYcL3gpAI2NKKiIo+Ew0fnX4P4b3Zy/+MTc6SJIo3foJbZwdIWd/SUBswOf7IYCvWBppg+D8tbwnsw==
+react-native-screens@~4.16.0:
+ version "4.16.0"
+ resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-4.16.0.tgz#efa42e77a092aa0b5277c9ae41391ea0240e0870"
+ integrity sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==
dependencies:
react-freeze "^1.0.0"
react-native-is-edge-to-edge "^1.2.1"
@@ -12913,42 +13219,40 @@ react-native@*:
ws "^6.2.2"
yargs "^17.6.2"
-react-native@0.79.4:
- version "0.79.4"
- resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.79.4.tgz#66aa4918fbb2778956b2a93a885d26acf8ce614c"
- integrity sha512-CfxYMuszvnO/33Q5rB//7cU1u9P8rSOvzhE2053Phdb8+6bof9NLayCllU2nmPrm8n9o6RU1Fz5H0yquLQ0DAw==
+react-native@0.81.5:
+ version "0.81.5"
+ resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.81.5.tgz#6c963f137d3979b22aef2d8482067775c8fe2fed"
+ integrity sha512-1w+/oSjEXZjMqsIvmkCRsOc8UBYv163bTWKTI8+1mxztvQPhCRYGTvZ/PL1w16xXHneIj/SLGfxWg2GWN2uexw==
dependencies:
"@jest/create-cache-key-function" "^29.7.0"
- "@react-native/assets-registry" "0.79.4"
- "@react-native/codegen" "0.79.4"
- "@react-native/community-cli-plugin" "0.79.4"
- "@react-native/gradle-plugin" "0.79.4"
- "@react-native/js-polyfills" "0.79.4"
- "@react-native/normalize-colors" "0.79.4"
- "@react-native/virtualized-lists" "0.79.4"
+ "@react-native/assets-registry" "0.81.5"
+ "@react-native/codegen" "0.81.5"
+ "@react-native/community-cli-plugin" "0.81.5"
+ "@react-native/gradle-plugin" "0.81.5"
+ "@react-native/js-polyfills" "0.81.5"
+ "@react-native/normalize-colors" "0.81.5"
+ "@react-native/virtualized-lists" "0.81.5"
abort-controller "^3.0.0"
anser "^1.4.9"
ansi-regex "^5.0.0"
babel-jest "^29.7.0"
- babel-plugin-syntax-hermes-parser "0.25.1"
+ babel-plugin-syntax-hermes-parser "0.29.1"
base64-js "^1.5.1"
- chalk "^4.0.0"
commander "^12.0.0"
- event-target-shim "^5.0.1"
flow-enums-runtime "^0.0.6"
glob "^7.1.1"
invariant "^2.2.4"
jest-environment-node "^29.7.0"
memoize-one "^5.0.0"
- metro-runtime "^0.82.0"
- metro-source-map "^0.82.0"
+ metro-runtime "^0.83.1"
+ metro-source-map "^0.83.1"
nullthrows "^1.1.1"
pretty-format "^29.7.0"
promise "^8.3.0"
- react-devtools-core "^6.1.1"
+ react-devtools-core "^6.1.5"
react-refresh "^0.14.0"
regenerator-runtime "^0.13.2"
- scheduler "0.25.0"
+ scheduler "0.26.0"
semver "^7.1.3"
stacktrace-parser "^0.1.10"
whatwg-fetch "^3.0.0"
@@ -12994,18 +13298,18 @@ react-shallow-renderer@^16.15.0:
object-assign "^4.1.1"
react-is "^16.12.0 || ^17.0.0 || ^18.0.0"
-react-test-renderer@19.0.0:
- version "19.0.0"
- resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.0.0.tgz#ca6fa322c58d4bfa34635788fe242a8c3daa4c7d"
- integrity sha512-oX5u9rOQlHzqrE/64CNr0HB0uWxkCQmZNSfozlYvwE71TLVgeZxVf0IjouGEr1v7r1kcDifdAJBeOhdhxsG/DA==
+react-test-renderer@19.1.0:
+ version "19.1.0"
+ resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.1.0.tgz#89e1baa9e45a6da064b9760f92251d5b8e1f34ab"
+ integrity sha512-jXkSl3CpvPYEF+p/eGDLB4sPoDX8pKkYvRl9+rR8HxLY0X04vW7hCm1/0zHoUSjPZ3bDa+wXWNTDVIw/R8aDVw==
dependencies:
- react-is "^19.0.0"
- scheduler "^0.25.0"
+ react-is "^19.1.0"
+ scheduler "^0.26.0"
-react@19.0.0:
- version "19.0.0"
- resolved "https://registry.yarnpkg.com/react/-/react-19.0.0.tgz#6e1969251b9f108870aa4bff37a0ce9ddfaaabdd"
- integrity sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==
+react@19.1.0:
+ version "19.1.0"
+ resolved "https://registry.yarnpkg.com/react/-/react-19.1.0.tgz#926864b6c48da7627f004795d6cce50e90793b75"
+ integrity sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==
read-pkg-up@^7.0.1:
version "7.0.1"
@@ -13141,6 +13445,13 @@ regenerate-unicode-properties@^10.2.0:
dependencies:
regenerate "^1.4.2"
+regenerate-unicode-properties@^10.2.2:
+ version "10.2.2"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz#aa113812ba899b630658c7623466be71e1f86f66"
+ integrity sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==
+ dependencies:
+ regenerate "^1.4.2"
+
regenerate@^1.4.2:
version "1.4.2"
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
@@ -13209,6 +13520,18 @@ regexpu-core@^6.2.0:
unicode-match-property-ecmascript "^2.0.0"
unicode-match-property-value-ecmascript "^2.1.0"
+regexpu-core@^6.3.1:
+ version "6.4.0"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz#3580ce0c4faedef599eccb146612436b62a176e5"
+ integrity sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==
+ dependencies:
+ regenerate "^1.4.2"
+ regenerate-unicode-properties "^10.2.2"
+ regjsgen "^0.8.0"
+ regjsparser "^0.13.0"
+ unicode-match-property-ecmascript "^2.0.0"
+ unicode-match-property-value-ecmascript "^2.2.1"
+
regjsgen@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz#83414c5354afd7d6627b16af5f10f41c4e71808d"
@@ -13226,6 +13549,13 @@ regjsparser@^0.12.0:
dependencies:
jsesc "~3.0.2"
+regjsparser@^0.13.0:
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz#01f8351335cf7898d43686bc74d2dd71c847ecc0"
+ integrity sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==
+ dependencies:
+ jsesc "~3.1.0"
+
regjsparser@^0.8.2:
version "0.8.4"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz#8a14285ffcc5de78c5b95d62bbf413b6bc132d5f"
@@ -13483,17 +13813,10 @@ scheduler@0.24.0-canary-efb381bbf-20230505:
dependencies:
loose-envify "^1.1.0"
-scheduler@0.25.0, scheduler@^0.25.0:
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015"
- integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==
-
-scheduler@^0.23.0:
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
- integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
- dependencies:
- loose-envify "^1.1.0"
+scheduler@0.26.0, scheduler@^0.26.0:
+ version "0.26.0"
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.26.0.tgz#4ce8a8c2a2095f13ea11bf9a445be50c555d6337"
+ integrity sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==
schema-utils@^4.0.0:
version "4.2.0"
@@ -14814,6 +15137,11 @@ unicode-match-property-value-ecmascript@^2.1.0:
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
+unicode-match-property-value-ecmascript@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz#65a7adfad8574c219890e219285ce4c64ed67eaa"
+ integrity sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==
+
unicode-property-aliases-ecmascript@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
@@ -14896,6 +15224,14 @@ update-browserslist-db@^1.1.1:
escalade "^3.2.0"
picocolors "^1.1.1"
+update-browserslist-db@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz#7802aa2ae91477f255b86e0e46dbc787a206ad4a"
+ integrity sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==
+ dependencies:
+ escalade "^3.2.0"
+ picocolors "^1.1.1"
+
uri-js@4.4.1, uri-js@^4.2.2:
version "4.4.1"
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
@@ -15299,6 +15635,11 @@ ws@^8.18.0:
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.2.tgz#42738b2be57ced85f46154320aabb51ab003705a"
integrity sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==
+ws@^8.18.3:
+ version "8.18.3"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.3.tgz#b56b88abffde62791c639170400c93dcb0c95472"
+ integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==
+
xcode@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/xcode/-/xcode-3.0.1.tgz#3efb62aac641ab2c702458f9a0302696146aa53c"
@@ -15404,6 +15745,11 @@ yaml@^2.2.1, yaml@^2.2.2:
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.1.tgz#2e57e0b5e995292c25c75d2658f0664765210eed"
integrity sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==
+yaml@^2.6.1:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz#1870aa02b631f7e8328b93f8bc574fac5d6c4d79"
+ integrity sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==
+
yaml@^2.7.0:
version "2.7.0"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.7.0.tgz#aef9bb617a64c937a9a748803786ad8d3ffe1e98"
@@ -15475,6 +15821,11 @@ yup@0.32.11:
property-expr "^2.0.4"
toposort "^2.0.2"
+zod-to-json-schema@^3.24.6:
+ version "3.24.6"
+ resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz#5920f020c4d2647edfbb954fa036082b92c9e12d"
+ integrity sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==
+
"zod-validation-error@^3.0.3 || ^4.0.0":
version "4.0.2"
resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-4.0.2.tgz#bc605eba49ce0fcd598c127fee1c236be3f22918"
@@ -15484,3 +15835,8 @@ yup@0.32.11:
version "4.1.12"
resolved "https://registry.yarnpkg.com/zod/-/zod-4.1.12.tgz#64f1ea53d00eab91853195653b5af9eee68970f0"
integrity sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==
+
+zod@^3.25.76:
+ version "3.25.76"
+ resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
+ integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==