From 234743b3266777a2a6af0b2fe337b8d706f5c5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Kwas=CC=81niewski?= Date: Thu, 12 Sep 2024 14:27:02 +0200 Subject: [PATCH] chore: sync with upstream --- packages/out-of-tree-platforms/package.json | 4 +- .../react-native-test-library/package.json | 2 +- .../react-native/React/Base/RCTConvert.mm | 16 - .../react-native/React/Base/RCTKeyCommands.m | 7 +- .../React/CoreModules/RCTStatusBarManager.mm | 18 +- .../Modal/RCTFabricModalHostViewController.mm | 4 - .../React/Views/RCTModalHostViewController.m | 4 - .../react-native/local-cli/localCommands.js | 30 +- packages/react-native/package.json | 20 +- .../react-native/scripts/react_native_pods.rb | 3 +- .../sdks/hermes-engine/hermes-engine.podspec | 2 - packages/react-native/types/tsconfig.json | 5 +- packages/rn-tester/Podfile.lock | 440 +++++++++--------- packages/rn-tester/package.json | 3 +- yarn.lock | 323 +------------ 15 files changed, 262 insertions(+), 619 deletions(-) diff --git a/packages/out-of-tree-platforms/package.json b/packages/out-of-tree-platforms/package.json index 5053c7a7948799..bbfd8be6024949 100644 --- a/packages/out-of-tree-platforms/package.json +++ b/packages/out-of-tree-platforms/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/out-of-tree-platforms", - "version": "0.76.0-main", + "version": "0.77.0-main", "description": "Utils for React Native out of tree platforms.", "keywords": ["out-of-tree", "react-native"], "homepage": "https://github.com/callstack/react-native-visionos/tree/HEAD/packages/out-of-tree-platforms#readme", @@ -19,7 +19,7 @@ "dist" ], "devDependencies": { - "metro-resolver": "^0.80.0" + "metro-resolver": "^0.81.0-alpha.0" }, "engines": { "node": ">=18" diff --git a/packages/react-native-test-library/package.json b/packages/react-native-test-library/package.json index 09a2f7b963ca54..59b329d7133d8d 100644 --- a/packages/react-native-test-library/package.json +++ b/packages/react-native-test-library/package.json @@ -26,7 +26,7 @@ ], "devDependencies": { "@babel/core": "^7.25.2", - "@react-native/babel-preset": "0.76.0-main", + "@react-native/babel-preset": "0.77.0-main", "@callstack/react-native-visionos": "0.77.0-main" }, "peerDependencies": { diff --git a/packages/react-native/React/Base/RCTConvert.mm b/packages/react-native/React/Base/RCTConvert.mm index bb40f44dd71a75..95a4bdc696d6cf 100644 --- a/packages/react-native/React/Base/RCTConvert.mm +++ b/packages/react-native/React/Base/RCTConvert.mm @@ -546,22 +546,6 @@ + (UIKeyboardType)UIKeyboardType:(id)json RCT_DYNAMIC UIViewContentModeScaleAspectFill, integerValue) -RCT_ENUM_CONVERTER( - UIBarStyle, - (@{ - @"default" : @(UIBarStyleDefault), - @"black" : @(UIBarStyleBlack), -#if TARGET_OS_VISION - @"blackOpaque" : @(UIBarStyleBlack), - @"blackTranslucent" : @(UIBarStyleBlack), -#else - @"blackOpaque" : @(UIBarStyleBlackOpaque), - @"blackTranslucent" : @(UIBarStyleBlackTranslucent), -#endif - }), - UIBarStyleDefault, - integerValue) - RCT_ENUM_CONVERTER( RCTCursor, (@{ diff --git a/packages/react-native/React/Base/RCTKeyCommands.m b/packages/react-native/React/Base/RCTKeyCommands.m index 1961de7e2bb6dd..f0872f9b1583a9 100644 --- a/packages/react-native/React/Base/RCTKeyCommands.m +++ b/packages/react-native/React/Base/RCTKeyCommands.m @@ -127,7 +127,12 @@ - (void)handleKeyUIEventSwizzle:(UIEvent *)event if ([event respondsToSelector:@selector(_isKeyDown)]) { isKeyDown = [event _isKeyDown]; } - +#if !TARGET_OS_VISION + BOOL interactionEnabled = !RCTSharedApplication().isIgnoringInteractionEvents; +#else + BOOL interactionEnabled = true; +#endif + BOOL hasFirstResponder = NO; if (isKeyDown && modifiedInput.length > 0) { UIResponder *firstResponder = nil; for (UIWindow *window in [self allWindows]) { diff --git a/packages/react-native/React/CoreModules/RCTStatusBarManager.mm b/packages/react-native/React/CoreModules/RCTStatusBarManager.mm index a8fdd286e71898..f82fca03e0a3c3 100644 --- a/packages/react-native/React/CoreModules/RCTStatusBarManager.mm +++ b/packages/react-native/React/CoreModules/RCTStatusBarManager.mm @@ -79,7 +79,6 @@ + (BOOL)requiresMainQueueSetup - (void)startObserving { -#if !TARGET_OS_VISION NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; [nc addObserver:self selector:@selector(applicationDidChangeStatusBarFrame:) @@ -89,19 +88,15 @@ - (void)startObserving selector:@selector(applicationWillChangeStatusBarFrame:) name:UIApplicationWillChangeStatusBarFrameNotification object:nil]; -#endif } - (void)stopObserving { -#if !TARGET_OS_VISION [[NSNotificationCenter defaultCenter] removeObserver:self]; -#endif } - (void)emitEvent:(NSString *)eventName forNotification:(NSNotification *)notification { -#if !TARGET_OS_VISION CGRect frame = [notification.userInfo[UIApplicationStatusBarFrameUserInfoKey] CGRectValue]; NSDictionary *event = @{ @"frame" : @{ @@ -112,7 +107,6 @@ - (void)emitEvent:(NSString *)eventName forNotification:(NSNotification *)notifi }, }; [self sendEventWithName:eventName body:event]; -#endif } - (void)applicationDidChangeStatusBarFrame:(NSNotification *)notification @@ -134,7 +128,6 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification RCT_EXPORT_METHOD(setStyle : (NSString *)style animated : (BOOL)animated) { -#if !TARGET_OS_VISION dispatch_async(dispatch_get_main_queue(), ^{ UIStatusBarStyle statusBarStyle = [RCTConvert UIStatusBarStyle:style]; if (RCTViewControllerBasedStatusBarAppearance()) { @@ -143,16 +136,14 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification } else { #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" - [RCTSharedApplication() setStatusBarStyle:statusBarStyle animated:animated]; - } + [RCTSharedApplication() setStatusBarStyle:statusBarStyle animated:animated]; + } #pragma clang diagnostic pop }); -#endif } RCT_EXPORT_METHOD(setHidden : (BOOL)hidden withAnimation : (NSString *)withAnimation) { -#if !TARGET_OS_VISION dispatch_async(dispatch_get_main_queue(), ^{ UIStatusBarAnimation animation = [RCTConvert UIStatusBarAnimation:withAnimation]; if (RCTViewControllerBasedStatusBarAppearance()) { @@ -161,16 +152,14 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification } else { #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" - [RCTSharedApplication() setStatusBarHidden:hidden withAnimation:animation]; + [RCTSharedApplication() setStatusBarHidden:hidden withAnimation:animation]; #pragma clang diagnostic pop } }); -#endif } RCT_EXPORT_METHOD(setNetworkActivityIndicatorVisible : (BOOL)visible) { -#if !TARGET_OS_VISION dispatch_async(dispatch_get_main_queue(), ^{ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" @@ -178,7 +167,6 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification RCTSharedApplication().networkActivityIndicatorVisible = visible; #pragma clang diagnostic pop }); -#endif } - (facebook::react::ModuleConstants)getConstants diff --git a/packages/react-native/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm b/packages/react-native/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm index 598e8d88b128a9..a1fd1eeffd45bf 100644 --- a/packages/react-native/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm +++ b/packages/react-native/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm @@ -61,7 +61,6 @@ - (BOOL)prefersStatusBarHidden #if RCT_DEV && TARGET_OS_IOS - (UIInterfaceOrientationMask)supportedInterfaceOrientations { -#if !TARGET_OS_VISION UIInterfaceOrientationMask appSupportedOrientationsMask = [RCTSharedApplication() supportedInterfaceOrientationsForWindow:RCTKeyWindow()]; if (!(_supportedInterfaceOrientations & appSupportedOrientationsMask)) { @@ -75,9 +74,6 @@ - (UIInterfaceOrientationMask)supportedInterfaceOrientations } return _supportedInterfaceOrientations; -#else - return UIInterfaceOrientationUnknown; -#endif } #endif // RCT_DEV diff --git a/packages/react-native/React/Views/RCTModalHostViewController.m b/packages/react-native/React/Views/RCTModalHostViewController.m index 0158f0c8271749..4026ce039e39eb 100644 --- a/packages/react-native/React/Views/RCTModalHostViewController.m +++ b/packages/react-native/React/Views/RCTModalHostViewController.m @@ -54,7 +54,6 @@ - (BOOL)prefersStatusBarHidden #if RCT_DEV && TARGET_OS_IOS - (UIInterfaceOrientationMask)supportedInterfaceOrientations { -#if !TARGET_OS_VISION UIInterfaceOrientationMask appSupportedOrientationsMask = [RCTSharedApplication() supportedInterfaceOrientationsForWindow:RCTKeyWindow()]; if (!(_supportedInterfaceOrientations & appSupportedOrientationsMask)) { @@ -68,9 +67,6 @@ - (UIInterfaceOrientationMask)supportedInterfaceOrientations } return _supportedInterfaceOrientations; -#else - return UIInterfaceOrientationUnknown; -#endif } #endif // RCT_DEV diff --git a/packages/react-native/local-cli/localCommands.js b/packages/react-native/local-cli/localCommands.js index dc87001156ac06..66c12d1d21437c 100644 --- a/packages/react-native/local-cli/localCommands.js +++ b/packages/react-native/local-cli/localCommands.js @@ -1,45 +1,47 @@ -const { - createBuild, - createLog, - createRun, - getRunOptions, - getLogOptions, - getBuildOptions, -} = require('@react-native-community/cli-platform-apple'); +let apple; +try { + apple = require('@react-native-community/cli-platform-apple'); +} catch { + if (verbose) { + console.warn( + '@react-native-community/cli-platform-apple not found, the react-native.config.js may be unusable.', + ); + } +} const platformName = 'visionos'; const run = { name: 'run-visionos', description: 'builds your app and starts it on visionOS simulator', - func: createRun({platformName}), + func: apple.createRun({platformName}), examples: [ { desc: 'Run on a specific simulator', cmd: 'npx @callstack/react-native-visionos run-visionos --simulator "Apple Vision Pro"', }, ], - options: getRunOptions({platformName}), + options: apple.getRunOptions({platformName}), }; const log = { name: 'log-visionos', description: 'starts visionOS device syslog tail', - func: createLog({platformName: 'visionos'}), - options: getLogOptions({platformName}), + func: apple.createLog({platformName: 'visionos'}), + options: apple.getLogOptions({platformName}), }; const build = { name: 'build-visionos', description: 'builds your app for visionOS platform', - func: createBuild({platformName}), + func: apple.createBuild({platformName}), examples: [ { desc: 'Build the app for all visionOS devices in Release mode', cmd: 'npx @callstack/react-native-visionos build-visionos --mode "Release"', }, ], - options: getBuildOptions({platformName}), + options: apple.getBuildOptions({platformName}), }; module.exports = [run, log, build]; diff --git a/packages/react-native/package.json b/packages/react-native/package.json index b2fe52c21e3d06..6051b1bf75f611 100644 --- a/packages/react-native/package.json +++ b/packages/react-native/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/react-native-visionos", - "version": "1000.0.0", + "version": "0.77.0-main", "description": "React Native for visionOS", "license": "MIT", "repository": { @@ -110,17 +110,13 @@ }, "dependencies": { "@jest/create-cache-key-function": "^29.6.3", - "@react-native-community/cli": "14.0.0", - "@react-native-community/cli-platform-android": "14.0.0", - "@react-native-community/cli-platform-ios": "14.0.0", - "@react-native-community/cli-platform-apple": "14.0.0", - "@react-native/assets-registry": "0.76.0-main", - "@react-native/codegen": "0.76.0-main", - "@react-native/community-cli-plugin": "0.76.0-main", - "@react-native/gradle-plugin": "0.76.0-main", - "@react-native/js-polyfills": "0.76.0-main", - "@react-native/normalize-colors": "0.76.0-main", - "@react-native/virtualized-lists": "0.76.0-main", + "@react-native/assets-registry": "0.77.0-main", + "@react-native/codegen": "0.77.0-main", + "@react-native/community-cli-plugin": "0.77.0-main", + "@react-native/gradle-plugin": "0.77.0-main", + "@react-native/js-polyfills": "0.77.0-main", + "@react-native/normalize-colors": "0.77.0-main", + "@react-native/virtualized-lists": "0.77.0-main", "abort-controller": "^3.0.0", "anser": "^1.4.9", "ansi-regex": "^5.0.0", diff --git a/packages/react-native/scripts/react_native_pods.rb b/packages/react-native/scripts/react_native_pods.rb index e4daf731ca0a37..0cb345410d81a2 100644 --- a/packages/react-native/scripts/react_native_pods.rb +++ b/packages/react-native/scripts/react_native_pods.rb @@ -165,9 +165,8 @@ def use_react_native! ( pod 'glog', :podspec => "#{prefix}/third-party-podspecs/glog.podspec" pod 'boost', :podspec => "#{prefix}/third-party-podspecs/boost.podspec" pod 'fast_float', :podspec => "#{prefix}/third-party-podspecs/fast_float.podspec" - pod 'fmt', :podspec => "#{prefix}/third-party-podspecs/fmt.podspec" - pod 'RCT-Folly', :podspec => "#{prefix}/third-party-podspecs/RCT-Folly.podspec", :modular_headers => true pod 'fmt', :podspec => "#{prefix}/third-party-podspecs/fmt.podspec", :modular_headers => true + pod 'RCT-Folly', :podspec => "#{prefix}/third-party-podspecs/RCT-Folly.podspec", :modular_headers => true folly_config = get_folly_config() run_codegen!( diff --git a/packages/react-native/sdks/hermes-engine/hermes-engine.podspec b/packages/react-native/sdks/hermes-engine/hermes-engine.podspec index 41f20bd4bd86fc..6f05b4a870267b 100644 --- a/packages/react-native/sdks/hermes-engine/hermes-engine.podspec +++ b/packages/react-native/sdks/hermes-engine/hermes-engine.podspec @@ -18,8 +18,6 @@ rescue => e react_native_path = File.join(__dir__, "..", "..") end -puts "React Native path: #{react_native_path}" - # package.json package = JSON.parse(File.read(File.join(react_native_path, "package.json"))) version = package['version'] diff --git a/packages/react-native/types/tsconfig.json b/packages/react-native/types/tsconfig.json index 8f693581db76f3..ef73745220bf74 100644 --- a/packages/react-native/types/tsconfig.json +++ b/packages/react-native/types/tsconfig.json @@ -10,9 +10,6 @@ "jsx": "react", "noEmit": true, "forceConsistentCasingInFileNames": true, - "paths": { - "react-native": ["."], - "react-native/*": ["../*"] - } + "paths": {"react-native": ["."], "react-native/*": ["../*"]} } } diff --git a/packages/rn-tester/Podfile.lock b/packages/rn-tester/Podfile.lock index dacb772821584a..8daf2b12ed3f7c 100644 --- a/packages/rn-tester/Podfile.lock +++ b/packages/rn-tester/Podfile.lock @@ -99,34 +99,34 @@ PODS: - fast_float (= 6.1.4) - fmt (= 11.0.2) - glog - - RCTDeprecation (1000.0.0) - - RCTRequired (1000.0.0) - - RCTTypeSafety (1000.0.0): - - FBLazyVector (= 1000.0.0) - - RCTRequired (= 1000.0.0) - - React-Core (= 1000.0.0) - - React (1000.0.0): - - React-Core (= 1000.0.0) - - React-Core/DevSupport (= 1000.0.0) - - React-Core/RCTWebSocket (= 1000.0.0) - - React-RCTActionSheet (= 1000.0.0) - - React-RCTAnimation (= 1000.0.0) - - React-RCTBlob (= 1000.0.0) - - React-RCTImage (= 1000.0.0) - - React-RCTLinking (= 1000.0.0) - - React-RCTNetwork (= 1000.0.0) - - React-RCTSettings (= 1000.0.0) - - React-RCTText (= 1000.0.0) - - React-RCTVibration (= 1000.0.0) - - React-RCTWindowManager (= 1000.0.0) - - React-RCTXR (= 1000.0.0) - - React-callinvoker (1000.0.0) - - React-Core (1000.0.0): + - RCTDeprecation (0.77.0-main) + - RCTRequired (0.77.0-main) + - RCTTypeSafety (0.77.0-main): + - FBLazyVector (= 0.77.0-main) + - RCTRequired (= 0.77.0-main) + - React-Core (= 0.77.0-main) + - React (0.77.0-main): + - React-Core (= 0.77.0-main) + - React-Core/DevSupport (= 0.77.0-main) + - React-Core/RCTWebSocket (= 0.77.0-main) + - React-RCTActionSheet (= 0.77.0-main) + - React-RCTAnimation (= 0.77.0-main) + - React-RCTBlob (= 0.77.0-main) + - React-RCTImage (= 0.77.0-main) + - React-RCTLinking (= 0.77.0-main) + - React-RCTNetwork (= 0.77.0-main) + - React-RCTSettings (= 0.77.0-main) + - React-RCTText (= 0.77.0-main) + - React-RCTVibration (= 0.77.0-main) + - React-RCTWindowManager (= 0.77.0-main) + - React-RCTXR (= 0.77.0-main) + - React-callinvoker (0.77.0-main) + - React-Core (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 1000.0.0) + - React-Core/Default (= 0.77.0-main) - React-cxxreact - React-featureflags - React-hermes @@ -138,7 +138,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/CoreModulesHeaders (1000.0.0): + - React-Core/CoreModulesHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -155,7 +155,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/Default (1000.0.0): + - React-Core/Default (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -171,13 +171,13 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/DevSupport (1000.0.0): + - React-Core/DevSupport (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 1000.0.0) - - React-Core/RCTWebSocket (= 1000.0.0) + - React-Core/Default (= 0.77.0-main) + - React-Core/RCTWebSocket (= 0.77.0-main) - React-cxxreact - React-featureflags - React-hermes @@ -189,7 +189,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTActionSheetHeaders (1000.0.0): + - React-Core/RCTActionSheetHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -206,7 +206,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTAnimationHeaders (1000.0.0): + - React-Core/RCTAnimationHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -223,7 +223,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTBlobHeaders (1000.0.0): + - React-Core/RCTBlobHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -240,7 +240,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTImageHeaders (1000.0.0): + - React-Core/RCTImageHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -257,7 +257,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTLinkingHeaders (1000.0.0): + - React-Core/RCTLinkingHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -274,7 +274,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTNetworkHeaders (1000.0.0): + - React-Core/RCTNetworkHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -291,7 +291,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTPushNotificationHeaders (1000.0.0): + - React-Core/RCTPushNotificationHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -308,7 +308,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTSettingsHeaders (1000.0.0): + - React-Core/RCTSettingsHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -325,7 +325,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTTextHeaders (1000.0.0): + - React-Core/RCTTextHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -342,7 +342,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTVibrationHeaders (1000.0.0): + - React-Core/RCTVibrationHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -359,12 +359,12 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTWebSocket (1000.0.0): + - React-Core/RCTWebSocket (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 1000.0.0) + - React-Core/Default (= 0.77.0-main) - React-cxxreact - React-featureflags - React-hermes @@ -376,7 +376,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTWindowManagerHeaders (1000.0.0): + - React-Core/RCTWindowManagerHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -393,7 +393,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTXRHeaders (1000.0.0): + - React-Core/RCTXRHeaders (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -410,7 +410,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-CoreModules (1000.0.0): + - React-CoreModules (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -426,7 +426,7 @@ PODS: - ReactCodegen - ReactCommon - SocketRocket (= 0.7.1) - - React-cxxreact (1000.0.0): + - React-cxxreact (0.77.0-main): - boost - DoubleConversion - fast_float (= 6.1.4) @@ -464,7 +464,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - Yoga - - React-Fabric (1000.0.0): + - React-Fabric (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -476,21 +476,21 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 1000.0.0) - - React-Fabric/attributedstring (= 1000.0.0) - - React-Fabric/componentregistry (= 1000.0.0) - - React-Fabric/componentregistrynative (= 1000.0.0) - - React-Fabric/components (= 1000.0.0) - - React-Fabric/core (= 1000.0.0) - - React-Fabric/dom (= 1000.0.0) - - React-Fabric/imagemanager (= 1000.0.0) - - React-Fabric/leakchecker (= 1000.0.0) - - React-Fabric/mounting (= 1000.0.0) - - React-Fabric/observers (= 1000.0.0) - - React-Fabric/scheduler (= 1000.0.0) - - React-Fabric/telemetry (= 1000.0.0) - - React-Fabric/templateprocessor (= 1000.0.0) - - React-Fabric/uimanager (= 1000.0.0) + - React-Fabric/animations (= 0.77.0-main) + - React-Fabric/attributedstring (= 0.77.0-main) + - React-Fabric/componentregistry (= 0.77.0-main) + - React-Fabric/componentregistrynative (= 0.77.0-main) + - React-Fabric/components (= 0.77.0-main) + - React-Fabric/core (= 0.77.0-main) + - React-Fabric/dom (= 0.77.0-main) + - React-Fabric/imagemanager (= 0.77.0-main) + - React-Fabric/leakchecker (= 0.77.0-main) + - React-Fabric/mounting (= 0.77.0-main) + - React-Fabric/observers (= 0.77.0-main) + - React-Fabric/scheduler (= 0.77.0-main) + - React-Fabric/telemetry (= 0.77.0-main) + - React-Fabric/templateprocessor (= 0.77.0-main) + - React-Fabric/uimanager (= 0.77.0-main) - React-featureflags - React-graphics - React-jsi @@ -500,7 +500,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (1000.0.0): + - React-Fabric/animations (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -521,7 +521,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (1000.0.0): + - React-Fabric/attributedstring (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -542,7 +542,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (1000.0.0): + - React-Fabric/componentregistry (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -563,7 +563,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (1000.0.0): + - React-Fabric/componentregistrynative (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -584,7 +584,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (1000.0.0): + - React-Fabric/components (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -596,9 +596,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 1000.0.0) - - React-Fabric/components/root (= 1000.0.0) - - React-Fabric/components/view (= 1000.0.0) + - React-Fabric/components/legacyviewmanagerinterop (= 0.77.0-main) + - React-Fabric/components/root (= 0.77.0-main) + - React-Fabric/components/view (= 0.77.0-main) - React-featureflags - React-graphics - React-jsi @@ -608,7 +608,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (1000.0.0): + - React-Fabric/components/legacyviewmanagerinterop (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -629,7 +629,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (1000.0.0): + - React-Fabric/components/root (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -650,7 +650,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (1000.0.0): + - React-Fabric/components/view (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -672,7 +672,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (1000.0.0): + - React-Fabric/core (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -693,7 +693,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (1000.0.0): + - React-Fabric/dom (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -714,7 +714,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (1000.0.0): + - React-Fabric/imagemanager (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -735,7 +735,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (1000.0.0): + - React-Fabric/leakchecker (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -756,7 +756,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (1000.0.0): + - React-Fabric/mounting (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -777,7 +777,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (1000.0.0): + - React-Fabric/observers (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -789,7 +789,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 1000.0.0) + - React-Fabric/observers/events (= 0.77.0-main) - React-featureflags - React-graphics - React-jsi @@ -799,7 +799,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (1000.0.0): + - React-Fabric/observers/events (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -820,7 +820,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (1000.0.0): + - React-Fabric/scheduler (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -843,7 +843,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (1000.0.0): + - React-Fabric/telemetry (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -864,7 +864,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (1000.0.0): + - React-Fabric/templateprocessor (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -885,7 +885,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (1000.0.0): + - React-Fabric/uimanager (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -897,7 +897,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 1000.0.0) + - React-Fabric/uimanager/consistency (= 0.77.0-main) - React-featureflags - React-graphics - React-jsi @@ -908,7 +908,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (1000.0.0): + - React-Fabric/uimanager/consistency (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -930,7 +930,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (1000.0.0): + - React-FabricComponents (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -943,8 +943,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 1000.0.0) - - React-FabricComponents/textlayoutmanager (= 1000.0.0) + - React-FabricComponents/components (= 0.77.0-main) + - React-FabricComponents/textlayoutmanager (= 0.77.0-main) - React-featureflags - React-graphics - React-jsi @@ -955,7 +955,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (1000.0.0): + - React-FabricComponents/components (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -968,15 +968,15 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 1000.0.0) - - React-FabricComponents/components/iostextinput (= 1000.0.0) - - React-FabricComponents/components/modal (= 1000.0.0) - - React-FabricComponents/components/rncore (= 1000.0.0) - - React-FabricComponents/components/safeareaview (= 1000.0.0) - - React-FabricComponents/components/scrollview (= 1000.0.0) - - React-FabricComponents/components/text (= 1000.0.0) - - React-FabricComponents/components/textinput (= 1000.0.0) - - React-FabricComponents/components/unimplementedview (= 1000.0.0) + - React-FabricComponents/components/inputaccessory (= 0.77.0-main) + - React-FabricComponents/components/iostextinput (= 0.77.0-main) + - React-FabricComponents/components/modal (= 0.77.0-main) + - React-FabricComponents/components/rncore (= 0.77.0-main) + - React-FabricComponents/components/safeareaview (= 0.77.0-main) + - React-FabricComponents/components/scrollview (= 0.77.0-main) + - React-FabricComponents/components/text (= 0.77.0-main) + - React-FabricComponents/components/textinput (= 0.77.0-main) + - React-FabricComponents/components/unimplementedview (= 0.77.0-main) - React-featureflags - React-graphics - React-jsi @@ -987,7 +987,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (1000.0.0): + - React-FabricComponents/components/inputaccessory (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1010,7 +1010,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (1000.0.0): + - React-FabricComponents/components/iostextinput (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1033,7 +1033,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (1000.0.0): + - React-FabricComponents/components/modal (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1056,7 +1056,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (1000.0.0): + - React-FabricComponents/components/rncore (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1079,7 +1079,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (1000.0.0): + - React-FabricComponents/components/safeareaview (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1102,7 +1102,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (1000.0.0): + - React-FabricComponents/components/scrollview (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1125,7 +1125,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (1000.0.0): + - React-FabricComponents/components/text (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1148,7 +1148,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (1000.0.0): + - React-FabricComponents/components/textinput (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1171,7 +1171,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (1000.0.0): + - React-FabricComponents/components/unimplementedview (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1194,7 +1194,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (1000.0.0): + - React-FabricComponents/textlayoutmanager (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1217,7 +1217,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (1000.0.0): + - React-FabricImage (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1231,7 +1231,7 @@ PODS: - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 1000.0.0) + - React-jsiexecutor (= 0.77.0-main) - React-logger - React-rendererdebug - React-utils @@ -1255,7 +1255,7 @@ PODS: - React-jsi - React-jsiexecutor - React-utils - - React-hermes (1000.0.0): + - React-hermes (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1264,9 +1264,9 @@ PODS: - RCT-Folly (= 2024.11.18.00) - React-cxxreact (= 1000.0.0) - React-jsi - - React-jsiexecutor (= 1000.0.0) + - React-jsiexecutor (= 0.77.0-main) - React-jsinspector - - React-perflogger (= 1000.0.0) + - React-perflogger (= 0.77.0-main) - React-runtimeexecutor - React-idlecallbacksnativemodule (1000.0.0): - hermes-engine @@ -1285,7 +1285,7 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (1000.0.0): + - React-jserrorhandler (0.77.0-main): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) @@ -1312,21 +1312,21 @@ PODS: - React-cxxreact (= 1000.0.0) - React-jsi (= 1000.0.0) - React-jsinspector - - React-perflogger (= 1000.0.0) - - React-jsinspector (1000.0.0): + - React-perflogger (= 0.77.0-main) + - React-jsinspector (0.77.0-main): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) - React-featureflags - React-jsi - - React-perflogger (= 1000.0.0) - - React-runtimeexecutor (= 1000.0.0) - - React-jsitracing (1000.0.0): + - React-perflogger (= 0.77.0-main) + - React-runtimeexecutor (= 0.77.0-main) + - React-jsitracing (0.77.0-main): - React-jsi - - React-logger (1000.0.0): + - React-logger (0.77.0-main): - glog - - React-Mapbuffer (1000.0.0): + - React-Mapbuffer (0.77.0-main): - glog - React-debug - React-microtasksnativemodule (1000.0.0): @@ -1348,7 +1348,7 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (1000.0.0): + - React-perflogger (0.77.0-main): - DoubleConversion - RCT-Folly (= 2024.11.18.00) - React-performancetimeline (1000.0.0): @@ -1392,7 +1392,7 @@ PODS: - React-utils - ReactCodegen - ReactCommon - - React-RCTBlob (1000.0.0): + - React-RCTBlob (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1407,7 +1407,7 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTFabric (1000.0.0): + - React-RCTFabric (0.77.0-main): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) @@ -1450,9 +1450,9 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTLinking (1000.0.0): - - React-Core/RCTLinkingHeaders (= 1000.0.0) - - React-jsi (= 1000.0.0) + - React-RCTLinking (0.77.0-main): + - React-Core/RCTLinkingHeaders (= 0.77.0-main) + - React-jsi (= 0.77.0-main) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon @@ -1465,7 +1465,7 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTPushNotification (1000.0.0): + - React-RCTPushNotification (0.77.0-main): - RCTTypeSafety - React-Core/RCTPushNotificationHeaders - React-jsi @@ -1480,7 +1480,7 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTSwiftExtensions (1000.0.0): + - React-RCTSwiftExtensions (0.77.0-main): - React-Core - React-RCTWindowManager - React-RCTXR @@ -1500,7 +1500,7 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTWindowManager (1000.0.0): + - React-RCTWindowManager (0.77.0-main): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTWindowManagerHeaders @@ -1508,7 +1508,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTXR (1000.0.0): + - React-RCTXR (0.77.0-main): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTXRHeaders @@ -1516,15 +1516,15 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-rendererconsistency (1000.0.0) - - React-rendererdebug (1000.0.0): + - React-rendererconsistency (0.77.0-main) + - React-rendererdebug (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) - RCT-Folly (= 2024.11.18.00) - React-debug - - React-rncore (1000.0.0) - - React-RuntimeApple (1000.0.0): + - React-rncore (0.77.0-main) + - React-RuntimeApple (0.77.0-main): - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) - React-callinvoker @@ -1545,7 +1545,7 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (1000.0.0): + - React-RuntimeCore (0.77.0-main): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) @@ -1560,9 +1560,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (1000.0.0): - - React-jsi (= 1000.0.0) - - React-RuntimeHermes (1000.0.0): + - React-runtimeexecutor (0.77.0-main): + - React-jsi (= 0.77.0-main) + - React-RuntimeHermes (0.77.0-main): - hermes-engine - RCT-Folly/Fabric (= 2024.11.18.00) - React-featureflags @@ -1573,7 +1573,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (1000.0.0): + - React-runtimescheduler (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -1588,8 +1588,8 @@ PODS: - React-runtimeexecutor - React-timing - React-utils - - React-timing (1000.0.0) - - React-utils (1000.0.0): + - React-timing (0.77.0-main) + - React-utils (0.77.0-main): - glog - hermes-engine - RCT-Folly (= 2024.11.18.00) @@ -1618,9 +1618,9 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (1000.0.0): - - ReactCommon/turbomodule (= 1000.0.0) - - ReactCommon-Samples (1000.0.0): + - ReactCommon (0.77.0-main): + - ReactCommon/turbomodule (= 0.77.0-main) + - ReactCommon-Samples (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -1632,7 +1632,7 @@ PODS: - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule (1000.0.0): + - ReactCommon/turbomodule (0.77.0-main): - DoubleConversion - fast_float (= 6.1.4) - fmt (= 11.0.2) @@ -2018,81 +2018,81 @@ SPEC CHECKSUMS: Yoga: 6888cef0a7eb78871e1a33237b9daaa7b87ed171 SPEC CHECKSUMS: - boost: 860c623744dab87c609a055f83f83f42b5ebcc72 - DoubleConversion: 55b1a13a4ac0adb3284bef5f3f0c96754f6f0ae8 - FBLazyVector: 75917a8d89cfe57b7f98cd4ab36cb526f1174cd7 - fmt: 030bf7157445bf1aea48da271f274f4414e75349 - glog: a40a7f15eed93736148eb4c5bb7ed8a4a460f748 - hermes-engine: 6122c86dee17ba201cb2319a3f482ce0b1e1a7ae - MyNativeView: 4aaf4bcf87cc036f198a87515b761bedc3485559 - NativeCxxModuleExample: 6205ec76b01387bae46348010610ee14e4263038 + boost: 0ac7fe9a9f61c6f246ffefca62b8cf6881bb6a38 + DoubleConversion: f7fa6cd0e0828f5833892ea28ae96a3acdeff239 + FBLazyVector: 9b50889b4273f520fae2ed2ebe880064e69c8b44 + fmt: 674b64b86904477182dae486599deae56eeb68cb + glog: 438fa7943ec8a863e4ab0ee055e672692a18032e + hermes-engine: 775af0e51d28a1eb6f0f0fae4c9e3e5faaeec881 + MyNativeView: f677179d1d15d5fd70a5e0e731d4e255145a6d90 + NativeCxxModuleExample: 183990f7d80a2f7c611bdbc259d53d2ac67e5a04 OCMock: 267d92c078398b7ce11d99e811e3a402744c06bc - OSSLibraryExample: 2142d01ef5f40e317ad354d2801552774682c7f1 - RCT-Folly: d23913eeafd2fd092ae5067925f4b778c33dadf9 - RCTDeprecation: 3808e36294137f9ee5668f4df2e73dc079cd1dcf - RCTRequired: 8919b4dc424a86aba972804530a06910b74d15a5 - RCTTypeSafety: 3f1a45e4577f09e87afa7a96aa626f39303eda82 - React: e4ed2cd942dd3e28e922468afaf73868de21ea27 - React-callinvoker: d6a336a05b014e411ea16c6cddaa6d59e1a5b0bc - React-Core: 492bd6177faf25b49f26318a315aa0ac1ba38d96 - React-CoreModules: c85b9b284f3382f0c800ee9e0bb39ca2de770e8d - React-cxxreact: 8de3c541a2252614df9ef5f6f10da47de049f894 - React-debug: 6f947fa4a7419c21c162c9803c6f3f24d6b7e68c - React-defaultsnativemodule: 10b757a10362c6eacbe5ad38a5e98504fc5e4798 - React-domnativemodule: a9d107632f08c9c0792c1d8c9e8608729b3e600d - React-Fabric: f9dab36edff6834e99750add3a59058353687c79 - React-FabricComponents: 6692268833fdb0ec9e435611bf8ea1e7faacc0e1 - React-FabricImage: 6417f376e21ad0f58894e628867163b5a3327f69 - React-featureflags: 7ec38e7f4b81a870e7c4912c4eb02a726384db6d - React-featureflagsnativemodule: f6a3befd63d4e27bee813e9321643dbed6800543 - React-graphics: eba6d6369336f25baba841534d919f8d52ea8be6 - React-hermes: 336332b5fc7625c90d27820371d5d20f2ab8dd5b - React-idlecallbacksnativemodule: 16b079c2f21c7f8ba0b4c242a46bf00d06a9d7c6 - React-ImageManager: 05a3c1a062d90df2181458c0d0665a8ffa084244 - React-jserrorhandler: 88322945d8c68834e22511963c4ddc644ca7535d - React-jsi: b0b8226b325d9a5d4ee792b097da4061f3a5e3f7 - React-jsiexecutor: 166248bb49a62884118be80414f0a8958ae577a3 - React-jsinspector: 4aad8ab68d7da02ee74902575b9f0a68bfc42189 - React-jsitracing: b632400ca03d0554d482ffc254b4a4e1ab6024a7 - React-logger: 35584107dc831ae3bc23064c63161c0a079f959b - React-Mapbuffer: 8faa20ad9065b2d09c321c2387257780d3041863 - React-microtasksnativemodule: 9ba80052db25065c66234b326de431912df19545 - React-nativeconfig: be3975ef2d52d63ac255ecbf1861f9ef7b60b439 - React-NativeModulesApple: e6a958f9925095363c22f4343337bf8f0227ca49 - React-perflogger: 3e6acd6b92b0ea8ccd5a0872edfe70ebdecfe6bd - React-performancetimeline: 369a6ed47a5f951586d7b4dd741382ec8307080f - React-RCTActionSheet: 6df066b08fa19696b19e8a0b500c24f09a8238d5 - React-RCTAnimation: 2a52d8345af047b8fe2ce8fe9c7ef1b12876081a - React-RCTAppDelegate: 0181d89af0fb8aca50b41749a2952d102d31dc8d - React-RCTBlob: b70a36038f80af467052b7b0966d9d3403d538a4 - React-RCTFabric: c07a979acbda5fee3da9a67689cc549830a2cf07 - React-RCTImage: 9b63b595bf2aa575383fb978ce3ade3cedb95ba7 - React-RCTLinking: 442be15b86fd627fc9eff11b82996608072e93f5 - React-RCTNetwork: ced688e676899e4e1cde14d070db16721855867c - React-RCTPushNotification: 547e8526b4878bb0dc1cc73a3631ee9222d301a4 - React-RCTSettings: ef1b0340fbcbcbd83cb787c6c64f8ec87f93fd02 - React-RCTSwiftExtensions: 5b6189006b9e5526390b1f88168b5e9ac5b5f8ec - React-RCTTest: fe0371b6bb5703e5dbdc145d704f3db0dd99a6c6 - React-RCTText: f8ef84e0c01ff4a463d8984e13f02d8cb3489e67 - React-RCTVibration: ce3dfe8bcb777d8e694a8b643a72b78fb4e9a035 - React-RCTWindowManager: a53b985b4a923e13c1ab7546e87db04bb1956300 - React-RCTXR: f79f86a916325b346aa879e417ebcf27b95d93c5 - React-rendererconsistency: 0ca5004cb82d0a5550955dd3593cd2ebeda25457 - React-rendererdebug: b91a3027ff07c58c3306e029c1da7b3b3c0abd97 - React-rncore: 70e0b76634f90404805cd159595ce74900bdc80d - React-RuntimeApple: aabc75825a6e486d3d9523ee93fe9d83e14b13c6 - React-RuntimeCore: 4d6127a02c8200bfb49923733c2ec2240106d46d - React-runtimeexecutor: 90cca54336482cf43d7c2b3c80af3f4cef1d1e0e - React-RuntimeHermes: 3c5d14d1acdc9d17d62a048f11d9af115e0ac263 - React-runtimescheduler: c42bd8cc26171a3534a98d6fb19aec4761b2854f - React-timing: 211dd30779c09ed8a2ba9fd7a1343ad37a9c9e82 - React-utils: 76d8c01d580264f17d9f039da69afac43b774e36 - ReactCodegen: e0b48721f27c77ea8bf1b26038bee317efc219fc - ReactCommon: 245600a1b02f0987c92d108b9d727f128faa08fb - ReactCommon-Samples: b4ddc137d57d049c827f7a356b8df1bf39dd227b - ScreenshotManager: 4bd1cc50a26fe3225c48add3fd254f8e9cba38ca + OSSLibraryExample: 88dec58bce24674206d8a2787c7569792b0d1e09 + RCT-Folly: 9d7c63d5cd4256a6df3e158b60ed0db4e3d5a70a + RCTDeprecation: 66e972d6c7d69301a8b6400676f93b48fcacbd71 + RCTRequired: 2938162d9e7bdc92ecbc11551eab8288c4b2bb1a + RCTTypeSafety: 58fd712a02c25b1f097813f76fa47abccc6d9fae + React: de0d7eaeca9d94e7676b3a3447990a5c8757c416 + React-callinvoker: 62a1a0495f5853bc2d14cdee4920dd542b7d192d + React-Core: 6cfc75403060605f0aadce1c172280136c9647e0 + React-CoreModules: 7a3b172a320dacf31f7a1c7f15752a232b9eb083 + React-cxxreact: 95f9b94c93c0173ddb7928bd6ba59e38f5af09c5 + React-debug: 79b03bd3509641aa949261c7fc948fbab2ebb7bc + React-defaultsnativemodule: a2f7e9d43308e6e698f19991a31beea06b85d6b8 + React-domnativemodule: 4ffa5efcb4ce97556b8bbc61c9a00547b7025f31 + React-Fabric: 41c1a3a418966524242dacc35d33c829117b1902 + React-FabricComponents: ddbb03dc4da65eacd7f573c71e193c7938859ce7 + React-FabricImage: 95dc041ccdc4cdcfc301f8f1bcc47926c5868aad + React-featureflags: 1059165a17f14710c0f2551da701775d7226a4a0 + React-featureflagsnativemodule: 6725d332aa84e888205a4132b3d8a4663f6c9b6b + React-graphics: ac0b00a1d589910728534a4466817c8e2c5e7389 + React-hermes: c7b6a943ed1b946b1ac4fff37ae8a7cda01f5e72 + React-idlecallbacksnativemodule: fa38da39da97000a165a6b04868fab55d3e0fdcf + React-ImageManager: 465d008db1b2bf1355ba2d04fc68b80df033ad0a + React-jserrorhandler: 2ee3d4485d954d3b8b4e57811373d625f6043657 + React-jsi: 0bf2f09e9b524c755ddd019130a2dd1c8c734f08 + React-jsiexecutor: d9c2d8e866a02b282c9d1cc001a83a77fe764741 + React-jsinspector: 68dad0b81cc01009a51b893b19b9a35196a40205 + React-jsitracing: a22278858e1f933968cdcd1a9dee2f637337814b + React-logger: 1d6f52353aa1905adb637d1b9dacd0f0d32f7dba + React-Mapbuffer: 63faf8a468b232fb80dda453780c1336648dc623 + React-microtasksnativemodule: 860373377813c537806e3db3e1e5867b6a600a36 + React-nativeconfig: 34356ecc618e138f765ea5b9567926cdef172c4a + React-NativeModulesApple: e3a48ae879b2d2d77edc94696abbb7b5edee32e1 + React-perflogger: 136af915fc6d8cb2dc41525f088270763fc41062 + React-performancetimeline: 5500973c0c4ff4eb2a4734791929c1f14626b4e9 + React-RCTActionSheet: d9452aab84282469cbf03c0e77989832305bc083 + React-RCTAnimation: 47e5f86af142310582ca0600c13e1111b85f2790 + React-RCTAppDelegate: 2c55842aae1c8e49d82c69661405b4f722ddd895 + React-RCTBlob: b9758840bf11a596e6adfabc307b517b82ef4eb7 + React-RCTFabric: 8409df839609882ba681df36d5656613b17f44dd + React-RCTImage: 33c65d07d48f074263f23882abb799ba1901b897 + React-RCTLinking: 0af6f02ef51de54f794b98262d5d06918a9ced02 + React-RCTNetwork: 02b0e193244fe7d6f25f557ddaf92634377c7e43 + React-RCTPushNotification: 2f64b745aa7539bf23b73597d11c35ce05c1ea35 + React-RCTSettings: 47385309dd40ec1f71c9c533338cfa9cc3bcdc1f + React-RCTSwiftExtensions: 823573c791982558f894d588b5587396a57df182 + React-RCTTest: 18ce1d59c61e01036dbdd50f4848f9639c4ce3c1 + React-RCTText: f56fec58cf42b5437470d42976452564295b6b91 + React-RCTVibration: d4ecbbb48adecc37bbf43839c29baedd0520df60 + React-RCTWindowManager: 29988b402b1ab5be7e291cb69e315620aa7116b9 + React-RCTXR: 50463d549a7188f1d4f05752902e2b6c6d84523e + React-rendererconsistency: 822e990cad99ce4b8ab4ecccf7105618804dbbae + React-rendererdebug: 316b2437167d52151ae6d597d31fe30e149e87da + React-rncore: b1b575f33e980d5c0ab41c7bd79d00bb0a01ee47 + React-RuntimeApple: d33d20a2139a65d920eed13f0748b1258cc05aac + React-RuntimeCore: 61311ee52a2f95d5794f7e1972db3df22416e7a0 + React-runtimeexecutor: 46b1b00d4ee088a4656c7ef9e1b0e496318a1a6a + React-RuntimeHermes: 870a5e47ff71f445e44bf7c76e726b00da7ac5d3 + React-runtimescheduler: e96c424ed832bdfa0660ff2a1bba247b7333e840 + React-timing: b28b9743e3b2e8efbd2e3b4c12d97d52a3c0d218 + React-utils: b0215ef4eb60b818f9fec7eb6c979ad286aab41a + ReactCodegen: c044e396d3e5e127a40d785a0b600448c0f9929d + ReactCommon: e03c4081dc50b26046f8f96cf715ad80826f8995 + ReactCommon-Samples: 6401099d4afc986191f1832f3eba4a9371bde693 + ScreenshotManager: d8e23a8d56a8dc6027d4d79198d971531b01f58e SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 - Yoga: 961e7e2a9fad70b36e221e75b3e45637a33cbdca + Yoga: a2d99fac85cc4f01f06951ef6e9a13dc97df4b8b PODFILE CHECKSUM: ecf8d73b0aefca76e0e218d8845b105ea9282718 diff --git a/packages/rn-tester/package.json b/packages/rn-tester/package.json index c55566568104f0..f1a9cd9d7f05b4 100644 --- a/packages/rn-tester/package.json +++ b/packages/rn-tester/package.json @@ -32,7 +32,7 @@ "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", "nullthrows": "^1.1.1", - "@callstack/out-of-tree-platforms": "0.76.0-main" + "@callstack/out-of-tree-platforms": "0.77.0-main" }, "peerDependencies": { "react": "18.3.1", @@ -55,6 +55,7 @@ "devDependencies": { "@react-native-community/cli": "15.0.0-alpha.2", "@react-native-community/cli-platform-android": "15.0.0-alpha.2", + "@react-native-community/cli-platform-apple": "15.0.0-alpha.2", "@react-native-community/cli-platform-ios": "15.0.0-alpha.2" } } diff --git a/yarn.lock b/yarn.lock index b1cadb44da9583..b1720d76fc8224 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1755,16 +1755,6 @@ optionalDependencies: npmlog "2 || ^3.1.0 || ^4.0.0" -"@react-native-community/cli-clean@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-14.0.0.tgz#37b53762e5f3d02f452a44fc32a7f88a7419ccad" - integrity sha512-kvHthZTNur/wLLx8WL5Oh+r04zzzFAX16r8xuaLhu9qGTE6Th1JevbsIuiQb5IJqD8G/uZDKgIZ2a0/lONcbJg== - dependencies: - "@react-native-community/cli-tools" "14.0.0" - chalk "^4.1.2" - execa "^5.0.0" - fast-glob "^3.3.2" - "@react-native-community/cli-clean@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-15.0.0-alpha.2.tgz#c6598086cd1432deaa2bed82f6d2833feb112091" @@ -1775,18 +1765,6 @@ execa "^5.0.0" fast-glob "^3.3.2" -"@react-native-community/cli-config@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-14.0.0.tgz#641ec08ddb44c90ceb947d8fc8e35de1a4bcf4a4" - integrity sha512-2Nr8KR+dgn1z+HLxT8piguQ1SoEzgKJnOPQKE1uakxWaRFcQ4LOXgzpIAscYwDW6jmQxdNqqbg2cRUoOS7IMtQ== - dependencies: - "@react-native-community/cli-tools" "14.0.0" - chalk "^4.1.2" - cosmiconfig "^9.0.0" - deepmerge "^4.3.0" - fast-glob "^3.3.2" - joi "^17.2.1" - "@react-native-community/cli-config@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-15.0.0-alpha.2.tgz#fe535e9174593041ec0c8e6abbb9cb4127195315" @@ -1799,13 +1777,6 @@ fast-glob "^3.3.2" joi "^17.2.1" -"@react-native-community/cli-debugger-ui@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-14.0.0.tgz#ef02d531e70b86265d39773abc3b58ab5cb8f4b8" - integrity sha512-JpfzILfU7eKE9+7AMCAwNJv70H4tJGVv3ZGFqSVoK1YHg5QkVEGsHtoNW8AsqZRS6Fj4os+Fmh+r+z1L36sPmg== - dependencies: - serve-static "^1.13.1" - "@react-native-community/cli-debugger-ui@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-15.0.0-alpha.2.tgz#8ee14142c270c83fb5072050cad4f97e99ec5e5a" @@ -1813,28 +1784,6 @@ dependencies: serve-static "^1.13.1" -"@react-native-community/cli-doctor@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-14.0.0.tgz#f6855495d5a53e9a2c206949958a8291ac3e326e" - integrity sha512-in6jylHjaPUaDzV+JtUblh8m9JYIHGjHOf6Xn57hrmE5Zwzwuueoe9rSMHF1P0mtDgRKrWPzAJVejElddfptWA== - dependencies: - "@react-native-community/cli-config" "14.0.0" - "@react-native-community/cli-platform-android" "14.0.0" - "@react-native-community/cli-platform-apple" "14.0.0" - "@react-native-community/cli-platform-ios" "14.0.0" - "@react-native-community/cli-tools" "14.0.0" - chalk "^4.1.2" - command-exists "^1.2.8" - deepmerge "^4.3.0" - envinfo "^7.13.0" - execa "^5.0.0" - node-stream-zip "^1.9.1" - ora "^5.4.1" - semver "^7.5.2" - strip-ansi "^5.2.0" - wcwidth "^1.0.1" - yaml "^2.2.1" - "@react-native-community/cli-doctor@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-15.0.0-alpha.2.tgz#d83c4146111c5f3c2e2468d6cdcb4e76ed0e4e37" @@ -1857,18 +1806,6 @@ wcwidth "^1.0.1" yaml "^2.2.1" -"@react-native-community/cli-platform-android@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-14.0.0.tgz#36f47999af9b386aaa8f8286923edd9a65101f28" - integrity sha512-nt7yVz3pGKQXnVa5MAk7zR+1n41kNKD3Hi2OgybH5tVShMBo7JQoL2ZVVH6/y/9wAwI/s7hXJgzf1OIP3sMq+Q== - dependencies: - "@react-native-community/cli-tools" "14.0.0" - chalk "^4.1.2" - execa "^5.0.0" - fast-glob "^3.3.2" - fast-xml-parser "^4.2.4" - logkitty "^0.7.1" - "@react-native-community/cli-platform-android@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-15.0.0-alpha.2.tgz#479f743086fb3c853d9a8038e26035d25776db7c" @@ -1881,18 +1818,6 @@ fast-xml-parser "^4.4.1" logkitty "^0.7.1" -"@react-native-community/cli-platform-apple@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-14.0.0.tgz#7050af6fbc01b4ebe72e1bdcb48d188cbbf1b9ef" - integrity sha512-WniJL8vR4MeIsjqio2hiWWuUYUJEL3/9TDL5aXNwG68hH3tYgK3742+X9C+vRzdjTmf5IKc/a6PwLsdplFeiwQ== - dependencies: - "@react-native-community/cli-tools" "14.0.0" - chalk "^4.1.2" - execa "^5.0.0" - fast-glob "^3.3.2" - fast-xml-parser "^4.2.4" - ora "^5.4.1" - "@react-native-community/cli-platform-apple@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-15.0.0-alpha.2.tgz#561272ec7bf6cbedf8737cf1b71566b63e9b704b" @@ -1905,13 +1830,6 @@ fast-xml-parser "^4.4.1" ora "^5.4.1" -"@react-native-community/cli-platform-ios@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-14.0.0.tgz#7c7c393a13415bf61aaad82f1a3583c30afb110e" - integrity sha512-8kxGv7mZ5nGMtueQDq+ndu08f0ikf3Zsqm3Ix8FY5KCXpSgP14uZloO2GlOImq/zFESij+oMhCkZJGggpWpfAw== - dependencies: - "@react-native-community/cli-platform-apple" "14.0.0" - "@react-native-community/cli-platform-ios@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-15.0.0-alpha.2.tgz#c237e561d60d3aa463d51327b37e6943910f7bb5" @@ -1919,21 +1837,6 @@ dependencies: "@react-native-community/cli-platform-apple" "15.0.0-alpha.2" -"@react-native-community/cli-server-api@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-14.0.0.tgz#1b62b78e5ea7dead0ae4590465c977bc4af880fc" - integrity sha512-A0FIsj0QCcDl1rswaVlChICoNbfN+mkrKB5e1ab5tOYeZMMyCHqvU+eFvAvXjHUlIvVI+LbqCkf4IEdQ6H/2AQ== - dependencies: - "@react-native-community/cli-debugger-ui" "14.0.0" - "@react-native-community/cli-tools" "14.0.0" - compression "^1.7.1" - connect "^3.6.5" - errorhandler "^1.5.1" - nocache "^3.0.1" - pretty-format "^26.6.2" - serve-static "^1.13.1" - ws "^6.2.3" - "@react-native-community/cli-server-api@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-15.0.0-alpha.2.tgz#37dcfe41cc7204e01290c616c9262e5e71f70424" @@ -1949,22 +1852,6 @@ serve-static "^1.13.1" ws "^6.2.3" -"@react-native-community/cli-tools@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-14.0.0.tgz#07b57a8942a131618c198e3b64fb1ec846cd631d" - integrity sha512-L7GX5hyYYv0ZWbAyIQKzhHuShnwDqlKYB0tqn57wa5riGCaxYuRPTK+u4qy+WRCye7+i8M4Xj6oQtSd4z0T9cA== - dependencies: - appdirsjs "^1.2.4" - chalk "^4.1.2" - execa "^5.0.0" - find-up "^5.0.0" - mime "^2.4.1" - open "^6.2.0" - ora "^5.4.1" - semver "^7.5.2" - shell-quote "^1.7.3" - sudo-prompt "^9.0.0" - "@react-native-community/cli-tools@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-15.0.0-alpha.2.tgz#0c02c61a30730814925d6c1e08d43b57ec083f24" @@ -1981,13 +1868,6 @@ shell-quote "^1.7.3" sudo-prompt "^9.0.0" -"@react-native-community/cli-types@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-14.0.0.tgz#6cde2d2a93edd9b13238171edef30352d37e8dd2" - integrity sha512-CMUevd1pOWqvmvutkUiyQT2lNmMHUzSW7NKc1xvHgg39NjbS58Eh2pMzIUP85IwbYNeocfYc3PH19vA/8LnQtg== - dependencies: - joi "^17.2.1" - "@react-native-community/cli-types@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-15.0.0-alpha.2.tgz#12d62c7e928115758bbb7de6ded3d21a57dbb7b9" @@ -1995,28 +1875,6 @@ dependencies: joi "^17.2.1" -"@react-native-community/cli@14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-14.0.0.tgz#0c98d75ac55515d07972682c1053f46bfee93863" - integrity sha512-KwMKJB5jsDxqOhT8CGJ55BADDAYxlYDHv5R/ASQlEcdBEZxT0zZmnL0iiq2VqzETUy+Y/Nop+XDFgqyoQm0C2w== - dependencies: - "@react-native-community/cli-clean" "14.0.0" - "@react-native-community/cli-config" "14.0.0" - "@react-native-community/cli-debugger-ui" "14.0.0" - "@react-native-community/cli-doctor" "14.0.0" - "@react-native-community/cli-server-api" "14.0.0" - "@react-native-community/cli-tools" "14.0.0" - "@react-native-community/cli-types" "14.0.0" - chalk "^4.1.2" - commander "^9.4.1" - deepmerge "^4.3.0" - execa "^5.0.0" - find-up "^5.0.0" - fs-extra "^8.1.0" - graceful-fs "^4.1.3" - prompts "^2.4.2" - semver "^7.5.2" - "@react-native-community/cli@15.0.0-alpha.2": version "15.0.0-alpha.2" resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-15.0.0-alpha.2.tgz#e465127a176a9eac3f0c1e4a16bd1830627fbbfb" @@ -2039,176 +1897,6 @@ prompts "^2.4.2" semver "^7.5.2" -"@react-native/assets-registry@0.74.0": - version "0.74.0" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.74.0.tgz#560bec29b2699c4d4cbfecfb4c2c5025397aac23" - integrity sha512-I8Yy6bCKU5R4qZX4jfXsAPsHyuGHlulbnbG3NqO9JgZ3T2DJxJiZE39rHORP0trLnRh0rIeRcs4Mc14fAE6hrw== - -"@react-native/babel-plugin-codegen@0.74.86": - version "0.74.86" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.86.tgz#4edbb8887c5cedefd52e8fda973b1da97c779db4" - integrity sha512-fO7exk0pdsOSsK3fvDz4YKe5nMeAMrsIGi525pft/L+dedjdeiWYmEoQVc9NElxwwNCldwRY6eNMw6IhKyjzLA== - dependencies: - "@react-native/codegen" "0.74.86" - -"@react-native/babel-preset@0.74.86": - version "0.74.86" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.74.86.tgz#8bb3fbd49ce11470eb8022dea2c1e51bfa8dedd4" - integrity sha512-6A+1NVAHugbBLFNU4iaYrq2lx8P7pINyqoyTtVAqd375PShRmLwu6GvuF3b/4avC97s6LmBljVTJ1xVHukA42g== - dependencies: - "@babel/core" "^7.20.0" - "@babel/plugin-proposal-async-generator-functions" "^7.0.0" - "@babel/plugin-proposal-class-properties" "^7.18.0" - "@babel/plugin-proposal-export-default-from" "^7.0.0" - "@babel/plugin-proposal-logical-assignment-operators" "^7.18.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0" - "@babel/plugin-proposal-numeric-separator" "^7.0.0" - "@babel/plugin-proposal-object-rest-spread" "^7.20.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" - "@babel/plugin-proposal-optional-chaining" "^7.20.0" - "@babel/plugin-syntax-dynamic-import" "^7.8.0" - "@babel/plugin-syntax-export-default-from" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.18.0" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" - "@babel/plugin-syntax-optional-chaining" "^7.0.0" - "@babel/plugin-transform-arrow-functions" "^7.0.0" - "@babel/plugin-transform-async-to-generator" "^7.20.0" - "@babel/plugin-transform-block-scoping" "^7.0.0" - "@babel/plugin-transform-classes" "^7.0.0" - "@babel/plugin-transform-computed-properties" "^7.0.0" - "@babel/plugin-transform-destructuring" "^7.20.0" - "@babel/plugin-transform-flow-strip-types" "^7.20.0" - "@babel/plugin-transform-function-name" "^7.0.0" - "@babel/plugin-transform-literals" "^7.0.0" - "@babel/plugin-transform-modules-commonjs" "^7.0.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0" - "@babel/plugin-transform-parameters" "^7.0.0" - "@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.74.86" - babel-plugin-transform-flow-enums "^0.0.2" - react-refresh "^0.14.0" - -"@react-native/codegen@0.74.0": - version "0.74.0" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.0.tgz#59ae487528f828481beec017b12abab5bd077fe4" - integrity sha512-Y01QK7Ae789su7qgjOZiRyrsfOaD+oiHEpbAqqnGB6UmuTiS77gMFH8hzU45Hu4bC2iTP7FG5/5YvlzbSmR82g== - dependencies: - "@babel/parser" "^7.20.0" - flow-parser "^0.206.0" - jscodeshift "^0.14.0" - nullthrows "^1.1.1" - -"@react-native/codegen@0.74.86": - version "0.74.86" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.86.tgz#90933f5ee555ffb95ca27372ba1e836f698c3192" - integrity sha512-BOwABta9035GJ/zLMkxQfgPMr47u1/1HqNIMk10FqmTe0jmROOxKEAeP4FbeS5L1voO4ug3dqr+mcuHrG+HNhA== - dependencies: - "@babel/parser" "^7.20.0" - glob "^7.1.1" - hermes-parser "0.19.1" - invariant "^2.2.4" - jscodeshift "^0.14.0" - mkdirp "^0.5.1" - nullthrows "^1.1.1" - -"@react-native/community-cli-plugin@0.74.0": - version "0.74.0" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.0.tgz#b4ca607ff97e7856a6da7bc00a4cc148538dd3a0" - integrity sha512-6ngHjG6a1aOhmGtDCIIWLehdOoBLF2ko1pYNiNgcnSw9M3MlkIbEqMFxmBy/3hclcTPvUrKDiNgPDQ7sq7CQYA== - dependencies: - "@react-native-community/cli-server-api" "12.0.0-alpha.15" - "@react-native-community/cli-tools" "12.0.0-alpha.15" - "@react-native/dev-middleware" "^0.74.0" - "@react-native/metro-babel-transformer" "^0.74.0" - chalk "^4.0.0" - execa "^5.1.1" - metro "0.79.1" - metro-config "0.79.1" - metro-core "0.79.1" - node-fetch "^2.2.0" - readline "^1.3.0" - -"@react-native/debugger-frontend@0.74.86": - version "0.74.86" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.74.86.tgz#87a3c7dfb12ee6e981165e304bbbe20e9b1fa009" - integrity sha512-Spq1kFX4qvPmT4HuTwpi1ALFtojlJ6s4GpWU2OnpevC/z7ks36lhD3J0rd0D9U5bkxtTYLcg31fPv7nGFC7XZg== - -"@react-native/dev-middleware@^0.74.0": - version "0.74.86" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.74.86.tgz#b95f936c141dd44309a9ec558ed5ce034e270bc4" - integrity sha512-sc0tYxYt6dkUbNFI1IANzKO67M41BhjbJ6k/CHoFi/tGoNmHzg9IUZ89V4g3H8hn/VW9dETnPOFna1VO0sWrXg== - dependencies: - "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.74.86" - "@rnx-kit/chromium-edge-launcher" "^1.0.0" - chrome-launcher "^0.15.2" - connect "^3.6.5" - debug "^2.2.0" - node-fetch "^2.2.0" - nullthrows "^1.1.1" - open "^7.0.3" - selfsigned "^2.4.1" - serve-static "^1.13.1" - temp-dir "^2.0.0" - ws "^6.2.2" - -"@react-native/gradle-plugin@0.74.0": - version "0.74.0" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.74.0.tgz#dc02146c62b99c5910570f2cd315f90934900406" - integrity sha512-QwA4S96LXuT1URGU9CX4I+uvBieIxBya5J2E2QH/H5cgzJNOeXRMBMtUurxg9dIIJQbO/xlDHY5aYW1lehut6w== - -"@react-native/js-polyfills@0.74.0": - version "0.74.0" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.74.0.tgz#54f7d728b6c8ea52d29993d86d2a9d4be08072d2" - integrity sha512-DMpn5l1TVkIBFe9kE54pwOI2fQYbQNZ6cto0IuCUxQVUFJBcFMJ6Gbk8jhz8tvcWuDW3xVK9AWq9DJTkuchWsQ== - -"@react-native/metro-babel-transformer@^0.74.0": - version "0.74.86" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.86.tgz#d67d3bf1699fcf834a70155635b30ae9f667b6dd" - integrity sha512-/9qN5zcnTHGDkC4jWibnoGmRnzDXiurl5wmkvspgnsdrJINN6eGpK8sdIn6nrHFOuPlp3Metqw3HkxbuAfNUXw== - dependencies: - "@babel/core" "^7.20.0" - "@react-native/babel-preset" "0.74.86" - hermes-parser "0.19.1" - nullthrows "^1.1.1" - -"@react-native/normalize-colors@0.74.1": - version "0.74.1" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.1.tgz#6e8ccf99954728dcd3cfe0d56e758ee5050a7bea" - integrity sha512-r+bTRs6pImqE3fx4h7bPzH2sOWSrnSHF/RJ7d00pNUj2P6ws3DdhS7WV+/7YosZkloYQfkiIkK3pIHvcYn665w== - -"@react-native/virtualized-lists@0.74.0": - version "0.74.0" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.74.0.tgz#327123a27a9a9288e6935fbe27baafc4f62f85a6" - integrity sha512-erDS1vxGlnenoJ9wJ2wm5QZKPtdeJc/a+XPSOsYqxsu2OPbAq/6YYLHZg9uIWa1sOIrkoDPygH10R7hEAzFVtA== - dependencies: - invariant "^2.2.4" - nullthrows "^1.1.1" - -"@rnx-kit/chromium-edge-launcher@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz#c0df8ea00a902c7a417cd9655aab06de398b939c" - integrity sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg== - dependencies: - "@types/node" "^18.0.0" - escape-string-regexp "^4.0.0" - is-wsl "^2.2.0" - lighthouse-logger "^1.0.0" - mkdirp "^1.0.4" - rimraf "^3.0.2" - "@rnx-kit/rn-changelog-generator@^0.4.0": version "0.4.1" resolved "https://registry.yarnpkg.com/@rnx-kit/rn-changelog-generator/-/rn-changelog-generator-0.4.1.tgz#a43a7259fb64ca059f174c4bd263f137ec568358" @@ -2413,13 +2101,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b" integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== -"@types/node@^18.0.0": - version "18.19.43" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.43.tgz#fe01bb599b60bb3279c26d0fdb751d2f3e299ae0" - integrity sha512-Mw/YlgXnyJdEwLoFv2dpuJaDFriX+Pc+0qOBJ57jC1H6cDxIj2xc5yUrdtArDVG0m+KV6622a4p2tenEqB3C/g== - dependencies: - undici-types "~5.26.4" - "@types/parsimmon@^1.10.1": version "1.10.9" resolved "https://registry.yarnpkg.com/@types/parsimmon/-/parsimmon-1.10.9.tgz#14e60db223c1d213fea0e15985d480b5cfe1789a" @@ -3726,7 +3407,7 @@ core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: +cosmiconfig@^5.0.5: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== @@ -4676,7 +4357,7 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== -fast-xml-parser@^4.2.4, fast-xml-parser@^4.4.1: +fast-xml-parser@^4.4.1: version "4.5.0" resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz#2882b7d01a6825dfdf909638f2de0256351def37" integrity sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==