From fb0a2ce127153d22028397a71ba17383bbdb5472 Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Thu, 27 Jun 2024 12:14:13 +0200 Subject: [PATCH 1/9] Apply template diff --- FabricExample/Gemfile | 7 +- FabricExample/Gemfile.lock | 4 +- FabricExample/__tests__/App-test.tsx | 8 +- FabricExample/android/app/build.gradle | 21 +- .../android/app/src/main/AndroidManifest.xml | 3 +- FabricExample/android/build.gradle | 2 +- FabricExample/android/gradle.properties | 2 - .../gradle/wrapper/gradle-wrapper.properties | 2 +- FabricExample/android/gradlew | 2 +- FabricExample/android/settings.gradle | 4 +- .../FabricExample.xcodeproj/project.pbxproj | 5 + .../ios/FabricExample/PrivacyInfo.xcprivacy | 63 +- FabricExample/ios/Podfile.lock | 913 +++++++++---- FabricExample/package.json | 14 +- FabricExample/yarn.lock | 1165 ++++++++++------- 15 files changed, 1422 insertions(+), 793 deletions(-) diff --git a/FabricExample/Gemfile b/FabricExample/Gemfile index ec21e32c9a..5039155bec 100644 --- a/FabricExample/Gemfile +++ b/FabricExample/Gemfile @@ -3,7 +3,6 @@ source 'https://rubygems.org' # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version ruby ">= 2.6.10" -# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper -# bound in the template on Cocoapods with next React Native release. -gem 'cocoapods', '>= 1.13', '< 1.15' -gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' \ No newline at end of file +# Exclude problematic versions of cocoapods and activesupport that causes build failures. +gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1' +gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0' \ No newline at end of file diff --git a/FabricExample/Gemfile.lock b/FabricExample/Gemfile.lock index afaf078cbe..a3931343a7 100644 --- a/FabricExample/Gemfile.lock +++ b/FabricExample/Gemfile.lock @@ -91,8 +91,8 @@ PLATFORMS ruby DEPENDENCIES - activesupport (>= 6.1.7.5, < 7.1.0) - cocoapods (>= 1.13, < 1.15) + activesupport (>= 6.1.7.5, != 7.1.0) + cocoapods (>= 1.13, != 1.15.1, != 1.15.0) RUBY VERSION ruby 2.7.5p203 diff --git a/FabricExample/__tests__/App-test.tsx b/FabricExample/__tests__/App-test.tsx index e8af277008..c541ecfa55 100644 --- a/FabricExample/__tests__/App-test.tsx +++ b/FabricExample/__tests__/App-test.tsx @@ -10,8 +10,10 @@ import App from '../App'; import { it } from '@jest/globals'; // Note: test renderer must be required after react-native. -import renderer from 'react-test-renderer'; +import ReactTestRenderer from 'react-test-renderer'; -it('renders correctly', () => { - renderer.create(); +it('renders correctly', async () => { + await ReactTestRenderer.act(() => { + ReactTestRenderer.create(); + }); }); diff --git a/FabricExample/android/app/build.gradle b/FabricExample/android/app/build.gradle index 01cb955a88..423bd3c135 100644 --- a/FabricExample/android/app/build.gradle +++ b/FabricExample/android/app/build.gradle @@ -10,14 +10,14 @@ import com.android.build.OutputFile */ react { /* Folders */ - // The root of your project, i.e. where "package.json" lives. Default is '..' - // root = file("../") - // The folder where the react-native NPM package is. Default is ../node_modules/react-native - // reactNativeDir = file("../node_modules/react-native") - // The folder where the react-native Codegen package is. Default is ../node_modules/react-native-codegen - // codegenDir = file("../node_modules/react-native-codegen") - // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js - // cliFile = file("../node_modules/react-native/cli.js") + // The root of your project, i.e. where "package.json" lives. Default is '../..' + // root = file("../../") + // The folder where the react-native NPM package is. Default is ../../node_modules/react-native + // reactNativeDir = file("../../node_modules/react-native") + // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen + // codegenDir = file("../../node_modules/@react-native/codegen") + // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js + // cliFile = file("../../node_modules/react-native/cli.js") /* Variants */ // The list of variants to that are debuggable. For those we're going to @@ -51,6 +51,9 @@ react { // // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" // hermesFlags = ["-O", "-output-source-map"] + + /* Autolinking */ + autolinkLibrariesWithApp() } /** @@ -160,5 +163,3 @@ dependencies { implementation jscFlavor } } - -apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) diff --git a/FabricExample/android/app/src/main/AndroidManifest.xml b/FabricExample/android/app/src/main/AndroidManifest.xml index 4122f36a59..e1892528b8 100644 --- a/FabricExample/android/app/src/main/AndroidManifest.xml +++ b/FabricExample/android/app/src/main/AndroidManifest.xml @@ -8,7 +8,8 @@ android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="false" - android:theme="@style/AppTheme"> + android:theme="@style/AppTheme" + android:supportsRtl="true"> ex.autolinkLibrariesFromCommand() } rootProject.name = 'FabricExample' -apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' includeBuild('../node_modules/@react-native/gradle-plugin') diff --git a/FabricExample/ios/FabricExample.xcodeproj/project.pbxproj b/FabricExample/ios/FabricExample.xcodeproj/project.pbxproj index 5780c925e1..23dee8e6ce 100644 --- a/FabricExample/ios/FabricExample.xcodeproj/project.pbxproj +++ b/FabricExample/ios/FabricExample.xcodeproj/project.pbxproj @@ -12,6 +12,7 @@ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; + 34211D627B121FBDD3B3434A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 748A2AC40A2F803BAF052F38 /* PrivacyInfo.xcprivacy */; }; 7699B88040F8A987B510C191 /* libPods-FabricExample-FabricExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */; }; 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; /* End PBXBuildFile section */ @@ -42,6 +43,7 @@ 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.release.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.release.xcconfig"; sourceTree = ""; }; 5B7EB9410499542E8C5724F5 /* Pods-FabricExample-FabricExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample-FabricExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests.debug.xcconfig"; sourceTree = ""; }; 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FabricExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 748A2AC40A2F803BAF052F38 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FabricExample/PrivacyInfo.xcprivacy; sourceTree = ""; }; 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = FabricExample/LaunchScreen.storyboard; sourceTree = ""; }; 89C6BE57DB24E9ADA2F236DE /* Pods-FabricExample-FabricExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample-FabricExampleTests.release.xcconfig"; path = "Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests.release.xcconfig"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; @@ -94,6 +96,7 @@ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 13B07FB71A68108700A75B9A /* main.m */, 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */, + 748A2AC40A2F803BAF052F38 /* PrivacyInfo.xcprivacy */, ); name = FabricExample; sourceTree = ""; @@ -246,6 +249,7 @@ files = ( 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, + 34211D627B121FBDD3B3434A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -608,6 +612,7 @@ OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; USE_HERMES = true; }; name = Debug; diff --git a/FabricExample/ios/FabricExample/PrivacyInfo.xcprivacy b/FabricExample/ios/FabricExample/PrivacyInfo.xcprivacy index ef1896e70c..41b8317f06 100644 --- a/FabricExample/ios/FabricExample/PrivacyInfo.xcprivacy +++ b/FabricExample/ios/FabricExample/PrivacyInfo.xcprivacy @@ -2,37 +2,36 @@ - NSPrivacyCollectedDataTypes - - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryFileTimestamp - NSPrivacyAccessedAPITypeReasons - - C617.1 - - - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategorySystemBootTime - NSPrivacyAccessedAPITypeReasons - - 35F9.1 - - - - NSPrivacyTracking - + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + diff --git a/FabricExample/ios/Podfile.lock b/FabricExample/ios/Podfile.lock index 3e43dc15a9..46b564f29e 100644 --- a/FabricExample/ios/Podfile.lock +++ b/FabricExample/ios/Podfile.lock @@ -1,12 +1,12 @@ PODS: - - boost (1.83.0) + - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.74.0) + - FBLazyVector (0.75.0-rc.2) - fmt (9.1.0) - glog (0.3.5) - - hermes-engine (0.74.0): - - hermes-engine/Pre-built (= 0.74.0) - - hermes-engine/Pre-built (0.74.0) + - hermes-engine (0.75.0-rc.2): + - hermes-engine/Pre-built (= 0.75.0-rc.2) + - hermes-engine/Pre-built (0.75.0-rc.2) - RCT-Folly (2024.01.01.00): - boost - DoubleConversion @@ -23,52 +23,32 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.74.0) - - RCTRequired (0.74.0) - - RCTTypeSafety (0.74.0): - - FBLazyVector (= 0.74.0) - - RCTRequired (= 0.74.0) - - React-Core (= 0.74.0) - - React (0.74.0): - - React-Core (= 0.74.0) - - React-Core/DevSupport (= 0.74.0) - - React-Core/RCTWebSocket (= 0.74.0) - - React-RCTActionSheet (= 0.74.0) - - React-RCTAnimation (= 0.74.0) - - React-RCTBlob (= 0.74.0) - - React-RCTImage (= 0.74.0) - - React-RCTLinking (= 0.74.0) - - React-RCTNetwork (= 0.74.0) - - React-RCTSettings (= 0.74.0) - - React-RCTText (= 0.74.0) - - React-RCTVibration (= 0.74.0) - - React-callinvoker (0.74.0) - - React-Codegen (0.74.0): - - DoubleConversion - - glog - - hermes-engine - - RCT-Folly - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric - - React-FabricImage - - React-featureflags - - React-graphics - - React-jsi - - React-jsiexecutor - - React-NativeModulesApple - - React-rendererdebug - - React-utils - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - React-Core (0.74.0): + - RCTDeprecation (0.75.0-rc.2) + - RCTRequired (0.75.0-rc.2) + - RCTTypeSafety (0.75.0-rc.2): + - FBLazyVector (= 0.75.0-rc.2) + - RCTRequired (= 0.75.0-rc.2) + - React-Core (= 0.75.0-rc.2) + - React (0.75.0-rc.2): + - React-Core (= 0.75.0-rc.2) + - React-Core/DevSupport (= 0.75.0-rc.2) + - React-Core/RCTWebSocket (= 0.75.0-rc.2) + - React-RCTActionSheet (= 0.75.0-rc.2) + - React-RCTAnimation (= 0.75.0-rc.2) + - React-RCTBlob (= 0.75.0-rc.2) + - React-RCTImage (= 0.75.0-rc.2) + - React-RCTLinking (= 0.75.0-rc.2) + - React-RCTNetwork (= 0.75.0-rc.2) + - React-RCTSettings (= 0.75.0-rc.2) + - React-RCTText (= 0.75.0-rc.2) + - React-RCTVibration (= 0.75.0-rc.2) + - React-callinvoker (0.75.0-rc.2) + - React-Core (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.74.0) + - React-Core/Default (= 0.75.0-rc.2) - React-cxxreact - React-featureflags - React-hermes @@ -80,7 +60,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.74.0): + - React-Core/CoreModulesHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -97,7 +77,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.74.0): + - React-Core/Default (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -113,13 +93,13 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.74.0): + - React-Core/DevSupport (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.74.0) - - React-Core/RCTWebSocket (= 0.74.0) + - React-Core/Default (= 0.75.0-rc.2) + - React-Core/RCTWebSocket (= 0.75.0-rc.2) - React-cxxreact - React-featureflags - React-hermes @@ -131,7 +111,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.74.0): + - React-Core/RCTActionSheetHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -148,7 +128,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.74.0): + - React-Core/RCTAnimationHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -165,7 +145,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.74.0): + - React-Core/RCTBlobHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -182,7 +162,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.74.0): + - React-Core/RCTImageHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -199,7 +179,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.74.0): + - React-Core/RCTLinkingHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -216,7 +196,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.74.0): + - React-Core/RCTNetworkHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -233,7 +213,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.74.0): + - React-Core/RCTSettingsHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -250,7 +230,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.74.0): + - React-Core/RCTTextHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -267,7 +247,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.74.0): + - React-Core/RCTVibrationHeaders (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -284,12 +264,12 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.74.0): + - React-Core/RCTWebSocket (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.74.0) + - React-Core/Default (= 0.75.0-rc.2) - React-cxxreact - React-featureflags - React-hermes @@ -301,36 +281,221 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.74.0): + - React-CoreModules (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.74.0) - - React-Codegen - - React-Core/CoreModulesHeaders (= 0.74.0) - - React-jsi (= 0.74.0) + - RCTTypeSafety (= 0.75.0-rc.2) + - React-Core/CoreModulesHeaders (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.74.0) + - React-RCTImage (= 0.75.0-rc.2) + - ReactCodegen - ReactCommon - SocketRocket (= 0.7.0) - - React-cxxreact (0.74.0): - - boost (= 1.83.0) + - React-cxxreact (0.75.0-rc.2): + - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.0) - - React-debug (= 0.74.0) - - React-jsi (= 0.74.0) + - React-callinvoker (= 0.75.0-rc.2) + - React-debug (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) - React-jsinspector - - React-logger (= 0.74.0) - - React-perflogger (= 0.74.0) - - React-runtimeexecutor (= 0.74.0) - - React-debug (0.74.0) - - React-Fabric (0.74.0): + - React-logger (= 0.75.0-rc.2) + - React-perflogger (= 0.75.0-rc.2) + - React-runtimeexecutor (= 0.75.0-rc.2) + - React-debug (0.75.0-rc.2) + - React-defaultsnativemodule (0.75.0-rc.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-domnativemodule + - React-Fabric + - React-featureflags + - React-featureflagsnativemodule + - React-graphics + - React-idlecallbacksnativemodule + - React-ImageManager + - React-microtasksnativemodule + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-domnativemodule (0.75.0-rc.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricComponents + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animations (= 0.75.0-rc.2) + - React-Fabric/attributedstring (= 0.75.0-rc.2) + - React-Fabric/componentregistry (= 0.75.0-rc.2) + - React-Fabric/componentregistrynative (= 0.75.0-rc.2) + - React-Fabric/components (= 0.75.0-rc.2) + - React-Fabric/core (= 0.75.0-rc.2) + - React-Fabric/dom (= 0.75.0-rc.2) + - React-Fabric/imagemanager (= 0.75.0-rc.2) + - React-Fabric/leakchecker (= 0.75.0-rc.2) + - React-Fabric/mounting (= 0.75.0-rc.2) + - React-Fabric/observers (= 0.75.0-rc.2) + - React-Fabric/scheduler (= 0.75.0-rc.2) + - React-Fabric/telemetry (= 0.75.0-rc.2) + - React-Fabric/templateprocessor (= 0.75.0-rc.2) + - React-Fabric/uimanager (= 0.75.0-rc.2) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.2) + - React-Fabric/components/root (= 0.75.0-rc.2) + - React-Fabric/components/view (= 0.75.0-rc.2) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -341,20 +506,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.74.0) - - React-Fabric/attributedstring (= 0.74.0) - - React-Fabric/componentregistry (= 0.74.0) - - React-Fabric/componentregistrynative (= 0.74.0) - - React-Fabric/components (= 0.74.0) - - React-Fabric/core (= 0.74.0) - - React-Fabric/imagemanager (= 0.74.0) - - React-Fabric/leakchecker (= 0.74.0) - - React-Fabric/mounting (= 0.74.0) - - React-Fabric/scheduler (= 0.74.0) - - React-Fabric/telemetry (= 0.74.0) - - React-Fabric/templateprocessor (= 0.74.0) - - React-Fabric/textlayoutmanager (= 0.74.0) - - React-Fabric/uimanager (= 0.74.0) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -363,7 +515,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.74.0): + - React-Fabric/components/root (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -374,6 +526,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -382,7 +535,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.74.0): + - React-Fabric/components/view (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -393,6 +546,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -401,7 +555,8 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.74.0): + - Yoga + - React-Fabric/core (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -412,6 +567,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -420,7 +576,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.74.0): + - React-Fabric/dom (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -431,6 +587,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -439,7 +596,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.74.0): + - React-Fabric/imagemanager (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -450,17 +607,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/inputaccessory (= 0.74.0) - - React-Fabric/components/legacyviewmanagerinterop (= 0.74.0) - - React-Fabric/components/modal (= 0.74.0) - - React-Fabric/components/rncore (= 0.74.0) - - React-Fabric/components/root (= 0.74.0) - - React-Fabric/components/safeareaview (= 0.74.0) - - React-Fabric/components/scrollview (= 0.74.0) - - React-Fabric/components/text (= 0.74.0) - - React-Fabric/components/textinput (= 0.74.0) - - React-Fabric/components/unimplementedview (= 0.74.0) - - React-Fabric/components/view (= 0.74.0) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -469,7 +616,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/inputaccessory (0.74.0): + - React-Fabric/leakchecker (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -480,6 +627,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -488,7 +636,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.74.0): + - React-Fabric/mounting (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -499,6 +647,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -507,7 +656,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/modal (0.74.0): + - React-Fabric/observers (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -518,6 +667,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/observers/events (= 0.75.0-rc.2) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -526,7 +677,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/rncore (0.74.0): + - React-Fabric/observers/events (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -537,6 +688,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -545,7 +697,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.74.0): + - React-Fabric/scheduler (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -556,15 +708,18 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/observers/events + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor - React-logger + - React-performancetimeline - React-rendererdebug - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/safeareaview (0.74.0): + - React-Fabric/telemetry (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -575,6 +730,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -583,7 +739,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.74.0): + - React-Fabric/templateprocessor (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -594,15 +750,38 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager (0.75.0-rc.2): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/uimanager/consistency (= 0.75.0-rc.2) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor - React-logger + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/text (0.74.0): + - React-Fabric/uimanager/consistency (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -613,15 +792,17 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor - React-logger + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/textinput (0.74.0): + - React-FabricComponents (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -632,6 +813,10 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-FabricComponents/components (= 0.75.0-rc.2) + - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.2) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -639,8 +824,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/components/unimplementedview (0.74.0): + - Yoga + - React-FabricComponents/components (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -651,6 +838,17 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.2) + - React-FabricComponents/components/iostextinput (= 0.75.0-rc.2) + - React-FabricComponents/components/modal (= 0.75.0-rc.2) + - React-FabricComponents/components/rncore (= 0.75.0-rc.2) + - React-FabricComponents/components/safeareaview (= 0.75.0-rc.2) + - React-FabricComponents/components/scrollview (= 0.75.0-rc.2) + - React-FabricComponents/components/text (= 0.75.0-rc.2) + - React-FabricComponents/components/textinput (= 0.75.0-rc.2) + - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.2) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -658,8 +856,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.74.0): + - Yoga + - React-FabricComponents/components/inputaccessory (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -670,6 +870,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -677,9 +879,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.74.0): + - React-FabricComponents/components/iostextinput (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -690,6 +893,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -697,8 +902,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.74.0): + - Yoga + - React-FabricComponents/components/modal (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -709,6 +916,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -716,8 +925,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.74.0): + - Yoga + - React-FabricComponents/components/rncore (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -728,6 +939,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -735,8 +948,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.74.0): + - Yoga + - React-FabricComponents/components/safeareaview (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -747,6 +962,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -754,8 +971,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.74.0): + - Yoga + - React-FabricComponents/components/scrollview (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -766,6 +985,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -773,8 +994,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.74.0): + - Yoga + - React-FabricComponents/components/text (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -785,6 +1008,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -792,8 +1017,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.74.0): + - Yoga + - React-FabricComponents/components/textinput (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -804,6 +1031,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -811,8 +1040,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/textlayoutmanager (0.74.0): + - Yoga + - React-FabricComponents/components/unimplementedview (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -823,7 +1054,8 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -831,8 +1063,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.74.0): + - Yoga + - React-FabricComponents/textlayoutmanager (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog @@ -843,6 +1077,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -850,46 +1086,92 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-FabricImage (0.74.0): + - Yoga + - React-FabricImage (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.74.0) - - RCTTypeSafety (= 0.74.0) + - RCTRequired (= 0.75.0-rc.2) + - RCTTypeSafety (= 0.75.0-rc.2) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.74.0) + - React-jsiexecutor (= 0.75.0-rc.2) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.74.0) - - React-graphics (0.74.0): + - React-featureflags (0.75.0-rc.2) + - React-featureflagsnativemodule (0.75.0-rc.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-graphics (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - RCT-Folly/Fabric (= 2024.01.01.00) - - React-Core/Default (= 0.74.0) + - React-jsi + - React-jsiexecutor - React-utils - - React-hermes (0.74.0): + - React-hermes (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.74.0) + - React-cxxreact (= 0.75.0-rc.2) - React-jsi - - React-jsiexecutor (= 0.74.0) + - React-jsiexecutor (= 0.75.0-rc.2) - React-jsinspector - - React-perflogger (= 0.74.0) + - React-perflogger (= 0.75.0-rc.2) - React-runtimeexecutor - - React-ImageManager (0.74.0): + - React-idlecallbacksnativemodule (0.75.0-rc.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-ImageManager (0.75.0-rc.2): - glog - RCT-Folly/Fabric - React-Core/Default @@ -898,45 +1180,65 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.74.0): + - React-jserrorhandler (0.75.0-rc.2): - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-Mapbuffer - - React-jsi (0.74.0): - - boost (= 1.83.0) + - React-jsi (0.75.0-rc.2): + - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.74.0): + - React-jsiexecutor (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.74.0) - - React-jsi (= 0.74.0) + - React-cxxreact (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) - React-jsinspector - - React-perflogger (= 0.74.0) - - React-jsinspector (0.74.0): + - React-perflogger (= 0.75.0-rc.2) + - React-jsinspector (0.75.0-rc.2): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-runtimeexecutor (= 0.74.0) - - React-jsitracing (0.74.0): + - React-runtimeexecutor (= 0.75.0-rc.2) + - React-jsitracing (0.75.0-rc.2): - React-jsi - - React-logger (0.74.0): + - React-logger (0.75.0-rc.2): + - glog + - React-Mapbuffer (0.75.0-rc.2): - glog - - React-Mapbuffer (0.74.0): + - React-debug + - React-microtasksnativemodule (0.75.0-rc.2): + - DoubleConversion - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core - React-debug - - React-nativeconfig (0.74.0) - - React-NativeModulesApple (0.74.0): + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-nativeconfig (0.75.0-rc.2) + - React-NativeModulesApple (0.75.0-rc.2): - glog - hermes-engine - React-callinvoker @@ -947,26 +1249,30 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.74.0) - - React-RCTActionSheet (0.74.0): - - React-Core/RCTActionSheetHeaders (= 0.74.0) - - React-RCTAnimation (0.74.0): + - React-perflogger (0.75.0-rc.2) + - React-performancetimeline (0.75.0-rc.2): + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact + - React-RCTActionSheet (0.75.0-rc.2): + - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.2) + - React-RCTAnimation (0.75.0-rc.2): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.74.0): + - React-RCTAppDelegate (0.75.0-rc.2): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-CoreModules - React-debug + - React-defaultsnativemodule - React-Fabric + - React-featureflags - React-graphics - React-hermes - React-nativeconfig @@ -980,27 +1286,29 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon - - React-RCTBlob (0.74.0): + - React-RCTBlob (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-Codegen - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi - React-jsinspector - React-NativeModulesApple - React-RCTNetwork + - ReactCodegen - ReactCommon - - React-RCTFabric (0.74.0): + - React-RCTFabric (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-Core - React-debug - React-Fabric + - React-FabricComponents - React-FabricImage - React-featureflags - React-graphics @@ -1008,61 +1316,64 @@ PODS: - React-jsi - React-jsinspector - React-nativeconfig + - React-performancetimeline - React-RCTImage - React-RCTText + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.74.0): + - React-RCTImage (0.75.0-rc.2): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTImageHeaders - React-jsi - React-NativeModulesApple - React-RCTNetwork + - ReactCodegen - ReactCommon - - React-RCTLinking (0.74.0): - - React-Codegen - - React-Core/RCTLinkingHeaders (= 0.74.0) - - React-jsi (= 0.74.0) + - React-RCTLinking (0.75.0-rc.2): + - React-Core/RCTLinkingHeaders (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) - React-NativeModulesApple + - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.74.0) - - React-RCTNetwork (0.74.0): + - ReactCommon/turbomodule/core (= 0.75.0-rc.2) + - React-RCTNetwork (0.75.0-rc.2): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTSettings (0.74.0): + - React-RCTSettings (0.75.0-rc.2): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTText (0.74.0): - - React-Core/RCTTextHeaders (= 0.74.0) + - React-RCTText (0.75.0-rc.2): + - React-Core/RCTTextHeaders (= 0.75.0-rc.2) - Yoga - - React-RCTVibration (0.74.0): + - React-RCTVibration (0.75.0-rc.2): - RCT-Folly (= 2024.01.01.00) - - React-Codegen - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-rendererdebug (0.74.0): + - React-rendererconsistency (0.75.0-rc.2) + - React-rendererdebug (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.74.0) - - React-RuntimeApple (0.74.0): + - React-rncore (0.75.0-rc.2) + - React-RuntimeApple (0.75.0-rc.2): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker @@ -1080,7 +1391,7 @@ PODS: - React-runtimeexecutor - React-RuntimeHermes - React-utils - - React-RuntimeCore (0.74.0): + - React-RuntimeCore (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1093,9 +1404,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.74.0): - - React-jsi (= 0.74.0) - - React-RuntimeHermes (0.74.0): + - React-runtimeexecutor (0.75.0-rc.2): + - React-jsi (= 0.75.0-rc.2) + - React-RuntimeHermes (0.75.0-rc.2): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-featureflags @@ -1106,7 +1417,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.74.0): + - React-runtimescheduler (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -1115,54 +1426,76 @@ PODS: - React-debug - React-featureflags - React-jsi + - React-rendererconsistency - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.74.0): + - React-utils (0.75.0-rc.2): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsi (= 0.74.0) - - ReactCommon (0.74.0): - - ReactCommon/turbomodule (= 0.74.0) - - ReactCommon/turbomodule (0.74.0): + - React-jsi (= 0.75.0-rc.2) + - ReactCodegen (0.75.0-rc.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - ReactCommon (0.75.0-rc.2): + - ReactCommon/turbomodule (= 0.75.0-rc.2) + - ReactCommon/turbomodule (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.0) - - React-cxxreact (= 0.74.0) - - React-jsi (= 0.74.0) - - React-logger (= 0.74.0) - - React-perflogger (= 0.74.0) - - ReactCommon/turbomodule/bridging (= 0.74.0) - - ReactCommon/turbomodule/core (= 0.74.0) - - ReactCommon/turbomodule/bridging (0.74.0): + - React-callinvoker (= 0.75.0-rc.2) + - React-cxxreact (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) + - React-logger (= 0.75.0-rc.2) + - React-perflogger (= 0.75.0-rc.2) + - ReactCommon/turbomodule/bridging (= 0.75.0-rc.2) + - ReactCommon/turbomodule/core (= 0.75.0-rc.2) + - ReactCommon/turbomodule/bridging (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.0) - - React-cxxreact (= 0.74.0) - - React-jsi (= 0.74.0) - - React-logger (= 0.74.0) - - React-perflogger (= 0.74.0) - - ReactCommon/turbomodule/core (0.74.0): + - React-callinvoker (= 0.75.0-rc.2) + - React-cxxreact (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) + - React-logger (= 0.75.0-rc.2) + - React-perflogger (= 0.75.0-rc.2) + - ReactCommon/turbomodule/core (0.75.0-rc.2): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.0) - - React-cxxreact (= 0.74.0) - - React-debug (= 0.74.0) - - React-jsi (= 0.74.0) - - React-logger (= 0.74.0) - - React-perflogger (= 0.74.0) - - React-utils (= 0.74.0) + - React-callinvoker (= 0.75.0-rc.2) + - React-cxxreact (= 0.75.0-rc.2) + - React-debug (= 0.75.0-rc.2) + - React-featureflags (= 0.75.0-rc.2) + - React-jsi (= 0.75.0-rc.2) + - React-logger (= 0.75.0-rc.2) + - React-perflogger (= 0.75.0-rc.2) + - React-utils (= 0.75.0-rc.2) - RNGestureHandler (2.17.1): - DoubleConversion - glog @@ -1170,7 +1503,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1181,6 +1513,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1201,17 +1534,21 @@ DEPENDENCIES: - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - - React-Codegen (from `build/generated/ios`) - React-Core (from `../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) + - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) + - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) - React-Fabric (from `../node_modules/react-native/ReactCommon`) + - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) - React-FabricImage (from `../node_modules/react-native/ReactCommon`) - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) + - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) + - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) @@ -1220,9 +1557,11 @@ DEPENDENCIES: - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) - React-logger (from `../node_modules/react-native/ReactCommon/logger`) - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) + - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) - React-nativeconfig (from `../node_modules/react-native/ReactCommon`) - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`) @@ -1234,6 +1573,7 @@ DEPENDENCIES: - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) + - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`) - 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`) @@ -1242,6 +1582,7 @@ DEPENDENCIES: - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) + - ReactCodegen (from `build/generated/ios`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) @@ -1263,7 +1604,7 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-02-20-RNv0.74.0-999cfd9979b5f57b1269119679ab8cdf60897de9 + :tag: hermes-2024-06-17-RNv0.75.0-c2c4ee7dfcf4b006268ee215b63f79e9cbeedcf4 RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: @@ -1276,8 +1617,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/" React-callinvoker: :path: "../node_modules/react-native/ReactCommon/callinvoker" - React-Codegen: - :path: build/generated/ios React-Core: :path: "../node_modules/react-native/" React-CoreModules: @@ -1286,16 +1625,26 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/cxxreact" React-debug: :path: "../node_modules/react-native/ReactCommon/react/debug" + React-defaultsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" + React-domnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" React-Fabric: :path: "../node_modules/react-native/ReactCommon" + React-FabricComponents: + :path: "../node_modules/react-native/ReactCommon" React-FabricImage: :path: "../node_modules/react-native/ReactCommon" React-featureflags: :path: "../node_modules/react-native/ReactCommon/react/featureflags" + React-featureflagsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" React-graphics: :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" React-hermes: :path: "../node_modules/react-native/ReactCommon/hermes" + React-idlecallbacksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" React-jserrorhandler: @@ -1312,12 +1661,16 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/logger" React-Mapbuffer: :path: "../node_modules/react-native/ReactCommon" + React-microtasksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" React-nativeconfig: :path: "../node_modules/react-native/ReactCommon" React-NativeModulesApple: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancetimeline: + :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" React-RCTActionSheet: :path: "../node_modules/react-native/Libraries/ActionSheetIOS" React-RCTAnimation: @@ -1340,6 +1693,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/Libraries/Text" React-RCTVibration: :path: "../node_modules/react-native/Libraries/Vibration" + React-rendererconsistency: + :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency" React-rendererdebug: :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" React-rncore: @@ -1356,6 +1711,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" React-utils: :path: "../node_modules/react-native/ReactCommon/react/utils" + ReactCodegen: + :path: build/generated/ios ReactCommon: :path: "../node_modules/react-native/ReactCommon" RNGestureHandler: @@ -1364,62 +1721,70 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: d3f49c53809116a5d38da093a8aa78bf551aed09 + boost: 4cb898d0bf20404aab1850c656dcea009429d6c1 DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 - FBLazyVector: 026c8f4ae67b06e088ae01baa2271ef8a26c0e8c + FBLazyVector: bc6824d4d258dcc02d6e4115e09eb96d93e6a9ed fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 - glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 - hermes-engine: 6eae7edb2f563ee41d7c1f91f4f2e57c26d8a5c3 - RCT-Folly: 045d6ecaa59d826c5736dfba0b2f4083ff8d79df - RCTDeprecation: 3ca8b6c36bfb302e1895b72cfe7db0de0c92cd47 - RCTRequired: 9fc183af555fd0c89a366c34c1ae70b7e03b1dc5 - RCTTypeSafety: db1dd5ad1081a5e160d30bb29ef922693d5ac4b1 - React: 8650d592d90b99097504b8dcfebab883972aed71 - React-callinvoker: 6bb8b399ab8cec59e52458c3a592aa1fca130b68 - React-Codegen: 7014b8564cb45f51d01c950256456e20f679d42e - React-Core: 119ddf031a18926c2f59849bedcc83c1ba347419 - React-CoreModules: 087c24b785afc79d29d23bffe7b02f79bb00cf76 - React-cxxreact: 67a110c97ed6a53b393be3c90fc3f0b482770bd1 - React-debug: 41175f3e30dfa8af6eab2631261e1eac26307f9f - React-Fabric: 235d71c7d7973fb5c3f099f2962d6b5362be6107 - React-FabricImage: 44f4ee8c9331688ab5e907a40cbd49010b05e687 - React-featureflags: 5e7e78c607661fe7f72bc38c6f03736e0876753a - React-graphics: 354adf8693bf849e696bf5096abc8cdc22c78ab4 - React-hermes: 17c369e15cfb535d7bc880d432e0e291c81d10d9 - React-ImageManager: 74e0898e24b12c45c40019b8558a1310d0b2a47c - React-jserrorhandler: 33cb327f5c6e1571b362f1a9c762ff839a5adb15 - React-jsi: 1e0be0c7526a8fdd3b9e8c086bddcddbad263cd5 - React-jsiexecutor: 04c1e790290e8cc3cd18e59c9cc5bdd18af325ef - React-jsinspector: 5daae7b6729d84bd61026899a6f664bdcff3ac28 - React-jsitracing: 36a2bbc272300313653d980de5ab700ec86c534a - React-logger: 03f2f7b955cfe24593a2b8c9705c23e142d1ad24 - React-Mapbuffer: 5e05d78fe6505f4a054b86f415733d4ad02dd314 - React-nativeconfig: 951ec32f632e81cbd7d40aebb3211313251c092e - React-NativeModulesApple: 0b3a42ca90069119ef79d8b2327d01441d71abd4 - React-perflogger: 271f1111779fef70f9502d1d38da5132e5585230 - React-RCTActionSheet: 5d6fb9adb11ab1bfbce6695a2b785767e4658c53 - React-RCTAnimation: 86ace32c56e69b3822e7e5184ea83a79d47fc7b9 - React-RCTAppDelegate: 72f997b4e418d9db8715f12b2edc002fd583e9ec - React-RCTBlob: fb91c62a549f004e251235c65c665c6890a923a3 - React-RCTFabric: 593660526e2b6b59857acf9585de1247660e9b68 - React-RCTImage: b482f07cfdbe8e413edbf9d85953cecdb569472c - React-RCTLinking: fbd73a66cab34df69b2389c17f200e4722890fd9 - React-RCTNetwork: fbdd716fbd6e53feb6d8e00eeb85e8184ad42ac8 - React-RCTSettings: 11c3051b965593988298a3f5fb39e23bf6f7df9f - React-RCTText: f240b4d39c36c295204d29e7634a2fac450b6d29 - React-RCTVibration: 1750f80b39e1ad9b4f509f4fdf19a803f7ab0d38 - React-rendererdebug: a89ffa25c7670de8f22e0b322dfdd8333bc0d126 - React-rncore: a3ab9e7271a5c692918e2a483beb900ff0a51169 - React-RuntimeApple: cdc563e811785f675925032d3bc4092a2aaa0b82 - React-RuntimeCore: f4af3a86a6a69d31721067f17196a582da25d2fc - React-runtimeexecutor: 4471221991b6e518466a0422fbeb2158c07c36e1 - React-RuntimeHermes: 3d9f53ac3330bb71d42f2acb9a3061a0b992be5c - React-runtimescheduler: 7fe561d179b97cecd0c2bec0bbd08f9fd8581c26 - React-utils: f013537c3371270d2095bff1d594d00d4bc9261b - ReactCommon: 2cde697fd80bd31da1d6448d25a5803088585219 - RNGestureHandler: 42f1d03e80c71bdfd6de5dae295ddc3b8b73f8b2 + glog: 69ef571f3de08433d766d614c73a9838a06bf7eb + hermes-engine: d5fd477f592d499f4d94612671d3daf3e1b4ba28 + RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740 + RCTDeprecation: ceaf98f63a0386c79f99322190b0688b4a50d082 + RCTRequired: cab142bdf5441acdfc75fd28013455371457d11e + RCTTypeSafety: 410e547c7179edd6f14ca481638f4e78abe13383 + React: b1c7193139a582b8001b774a5b5f3ef85e86f0c1 + React-callinvoker: fdb22bb9a657d4312c018740664fb3e4e2a10c52 + React-Core: 18648faf3a95ac0d7bf4a62ca9fa8afc47641b3d + React-CoreModules: df177cab93aea5980cfbc622c0d4739822537874 + React-cxxreact: cf01b1fc6299c00ad138d5480bf64bd8606517ec + React-debug: 2ecad5b214b5f35ea49cd9138593eb724595c5b4 + React-defaultsnativemodule: 42abb7057edaaeb93dae68c681ca22a983912806 + React-domnativemodule: 1a6ed843c4c3d7e5abc179f80c1e72bc29800742 + React-Fabric: 8c235d1223d56de6112a80db946d1a606422d4c6 + React-FabricComponents: f2c19e0526ac7523dc915b3f411e243b08dd373b + React-FabricImage: 5296ccb7859113ea1d22276ed4b6c1e71e5aa152 + React-featureflags: 37b7ef04ebf572436ff8acf3761767fab6eb8f24 + React-featureflagsnativemodule: 89de4fd4eb075be7fb3a2480c8bf9017da290a3e + React-graphics: 3532cc34f170d1e14dc34244a3c0c4b8bf65aafd + React-hermes: a0cdac1cfdafcebe9b306f5c939d25535b1c9a91 + React-idlecallbacksnativemodule: 72393a42eb547071e19abb1e2b32fe78d7bd5a77 + React-ImageManager: 2d1e8f5adf154b1279b87e4823abb3bdf42134ce + React-jserrorhandler: 0e788d649ef1380513eb31aea8f893db819cb31c + React-jsi: de4fa78dc49b87bce802df6614b5a61ea6357142 + React-jsiexecutor: d805124f4381e17642edf472bcf9ec871cce9d35 + React-jsinspector: 432916fedd77319e0b194456da8a565c768777a1 + React-jsitracing: 7f621064fec85ae24dc4b6c535c0596150044df7 + React-logger: cb4d92b9be4bb17c1b06e744aabb6050e698d99c + React-Mapbuffer: 1588662ee7b5409a320e20e96f5b02698fa16a3c + React-microtasksnativemodule: 4d7b18a8d7b75550bcffe2812a864bfe67e3d9e5 + React-nativeconfig: c2d74b45e79321898409eba6c99592fe76d505b5 + React-NativeModulesApple: 397450c2d8fc900823f4a76ebad211230ffdffc6 + React-perflogger: 1ac7f172cded306cd5383fdf407d53e3778fcc31 + React-performancetimeline: 1e35a9ef949f2fe109b9726553782521dbc3a419 + React-RCTActionSheet: c03bf9d40949aeb145d17c1a896174c8f11c6d0b + React-RCTAnimation: a94c49a018c00cb3a3c44e8885350fcbedf70634 + React-RCTAppDelegate: 898287769b48c90b3c3ed2e80ea595b874c498e1 + React-RCTBlob: d14c29655cccb05d6c646e42eb19b77bb9b5beaf + React-RCTFabric: 5b57fe981e93bab7db3be6fc7d7b1dbd59c6ea57 + React-RCTImage: b1d8af4665f66995d7a85c5ceaf292e06a363582 + React-RCTLinking: 772e9a129d41a2fe26682ce0b381088846c36d02 + React-RCTNetwork: 187dc9ac475eb472d90ad081989a505b5b44e946 + React-RCTSettings: 8b664365e955a2405294c8ad794131547212ff51 + React-RCTText: a8f5c9af271cc2b89c26b50f521646e02b5cb518 + React-RCTVibration: 50e0dd066fed5087aeec2c785dce3e873eb2265a + React-rendererconsistency: ef7dab0f9564396973a24028cdf2be0472a57344 + React-rendererdebug: 22c68617130deb98f866b2b596c3e8f3aa7116a1 + React-rncore: 590391113fc0e9990378ddd526d4a2175b41caad + React-RuntimeApple: 64134c4881f6d1058da9ad2e399996fb69a7e8fd + React-RuntimeCore: 6a776fb2ce9de1a1c0e9f35170507e5443238d6e + React-runtimeexecutor: f4183eb2b35227d74c9a4a3cc7b1361dfa0efb81 + React-RuntimeHermes: 49974a6f05ded7e3f123e5dee1902b873465102a + React-runtimescheduler: 79321179726b3f274d036c669c4d351f4a4ab933 + React-utils: 1adc0800b6e9fd0c69540eee4a7501f29f4d3a88 + ReactCodegen: 43004925e3cd918f86e532a07c3999f3489e09bf + ReactCommon: aba6076ebe8b3a16cab4fae5b3e6d4aa60def61f + RNGestureHandler: f6a669a7d4ed470acebf8637d347eb52ae07d401 SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d - Yoga: ff1d575b119f510a5de23c22a794872562078ccf + Yoga: e6e2771038ae851f1e660ba208dbbeb9d341ed28 PODFILE CHECKSUM: 2938316990faaa0507be8ddd9716fed018b28bde diff --git a/FabricExample/package.json b/FabricExample/package.json index ad0e4e4be0..9d3e31ab59 100644 --- a/FabricExample/package.json +++ b/FabricExample/package.json @@ -15,18 +15,18 @@ "dependencies": { "patch-package": "^6.5.0", "postinstall-postinstall": "^2.1.0", - "react": "18.2.0", - "react-native": "0.74.0", + "react": "19.0.0-rc-fb9a90fa48-20240614", + "react-native": "0.75.0-rc.2", "react-native-gesture-handler": "link:../" }, "devDependencies": { "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", - "@react-native/babel-preset": "^0.74.81", - "@react-native/eslint-config": "^0.74.81", - "@react-native/metro-config": "^0.74.81", - "@react-native/typescript-config": "0.74.81", + "@react-native/babel-preset": "0.75.0-rc.2", + "@react-native/eslint-config": "0.75.0-rc.2", + "@react-native/metro-config": "0.75.0-rc.2", + "@react-native/typescript-config": "0.75.0-rc.2", "@tsconfig/react-native": "^3.0.0", "@types/jest": "^29.2.1", "@types/metro-config": "^0.76.3", @@ -38,7 +38,7 @@ "eslint": "^8.19.0", "jest": "^29.2.1", "prettier": "^2.4.1", - "react-test-renderer": "18.2.0", + "react-test-renderer": "19.0.0-rc-fb9a90fa48-20240614", "typescript": "5.0.4" }, "engines": { diff --git a/FabricExample/yarn.lock b/FabricExample/yarn.lock index 4f8d669020..e881bbc2fa 100644 --- a/FabricExample/yarn.lock +++ b/FabricExample/yarn.lock @@ -25,6 +25,14 @@ "@babel/highlight" "^7.22.13" chalk "^2.4.2" +"@babel/code-frame@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1": version "7.20.1" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30" @@ -35,6 +43,11 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.0.tgz#c241dc454e5b5917e40d37e525e2f4530c399298" integrity sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g== +"@babel/compat-data@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.7.tgz#d23bbea508c3883ba8251fb4164982c36ea577ed" + integrity sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw== + "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.2.tgz#8dc9b1620a673f92d3624bd926dc49a52cf25b92" @@ -114,6 +127,16 @@ "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" +"@babel/generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.7.tgz#1654d01de20ad66b4b4d99c135471bc654c55e6d" + integrity sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA== + dependencies: + "@babel/types" "^7.24.7" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + "@babel/helper-annotate-as-pure@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" @@ -128,6 +151,13 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-annotate-as-pure@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" @@ -157,6 +187,17 @@ lru-cache "^5.1.1" semver "^6.3.0" +"@babel/helper-compilation-targets@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz#4eb6c4a80d6ffeac25ab8cd9a21b5dfa48d503a9" + integrity sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg== + dependencies: + "@babel/compat-data" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.2": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz#3c08a5b5417c7f07b5cf3dfb6dc79cbec682e8c2" @@ -198,6 +239,21 @@ "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" +"@babel/helper-create-class-features-plugin@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz#2eaed36b3a1c11c53bdf80d53838b293c52f5b3b" + integrity sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.7" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + semver "^6.3.1" + "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b" @@ -236,6 +292,13 @@ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== +"@babel/helper-environment-visitor@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz#4b31ba9551d1f90781ba83491dd59cf9b269f7d9" + integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-explode-assignable-expression@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" @@ -267,6 +330,14 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.23.0" +"@babel/helper-function-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz#75f1e1725742f39ac6584ee0b16d94513da38dd2" + integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA== + dependencies: + "@babel/template" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helper-hoist-variables@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" @@ -274,6 +345,13 @@ dependencies: "@babel/types" "^7.18.6" +"@babel/helper-hoist-variables@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee" + integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-member-expression-to-functions@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" @@ -288,6 +366,14 @@ dependencies: "@babel/types" "^7.23.0" +"@babel/helper-member-expression-to-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz#67613d068615a70e4ed5101099affc7a41c5225f" + integrity sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helper-module-imports@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" @@ -337,21 +423,28 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-optimise-call-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" + integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== -"@babel/helper-plugin-utils@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" - integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== - "@babel/helper-plugin-utils@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== +"@babel/helper-plugin-utils@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz#98c84fe6fe3d0d3ae7bfc3a5e166a46844feb2a0" + integrity sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg== + "@babel/helper-remap-async-to-generator@^7.18.6", "@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" @@ -362,6 +455,15 @@ "@babel/helper-wrap-function" "^7.18.9" "@babel/types" "^7.18.9" +"@babel/helper-remap-async-to-generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz#b3f0f203628522713849d49403f1a414468be4c7" + integrity sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-wrap-function" "^7.24.7" + "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" @@ -382,6 +484,15 @@ "@babel/helper-member-expression-to-functions" "^7.22.15" "@babel/helper-optimise-call-expression" "^7.22.5" +"@babel/helper-replace-supers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz#f933b7eed81a1c0265740edc91491ce51250f765" + integrity sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.7" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" @@ -389,7 +500,7 @@ dependencies: "@babel/types" "^7.20.2" -"@babel/helper-skip-transparent-expression-wrappers@^7.18.9", "@babel/helper-skip-transparent-expression-wrappers@^7.20.0": +"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== @@ -403,6 +514,14 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" + integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helper-split-export-declaration@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" @@ -417,6 +536,13 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-split-export-declaration@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856" + integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-string-parser@^7.19.4": version "7.19.4" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" @@ -427,6 +553,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== +"@babel/helper-string-parser@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz#4d2d0f14820ede3b9807ea5fc36dfc8cd7da07f2" + integrity sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg== + "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" @@ -437,11 +568,21 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== +"@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + "@babel/helper-validator-option@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== +"@babel/helper-validator-option@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz#24c3bb77c7a425d1742eec8fb433b5a1b38e62f6" + integrity sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw== + "@babel/helper-wrap-function@^7.18.9": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1" @@ -452,6 +593,16 @@ "@babel/traverse" "^7.19.0" "@babel/types" "^7.19.0" +"@babel/helper-wrap-function@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz#52d893af7e42edca7c6d2c6764549826336aae1f" + integrity sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw== + dependencies: + "@babel/helper-function-name" "^7.24.7" + "@babel/template" "^7.24.7" + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helpers@^7.20.1": version "7.20.1" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9" @@ -488,6 +639,16 @@ chalk "^2.4.2" js-tokens "^4.0.0" +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + "@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.2.tgz#9aeb9b92f64412b5f81064d46f6a1ac0881337f4" @@ -503,6 +664,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.3.tgz#0ce0be31a4ca4f1884b5786057cadcb6c3be58f9" integrity sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw== +"@babel/parser@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.7.tgz#9a5226f92f0c5c8ead550b750f5608e766c8ce85" + integrity sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw== + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" @@ -529,7 +695,7 @@ "@babel/helper-remap-async-to-generator" "^7.18.9" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.0", "@babel/plugin-proposal-class-properties@^7.18.6": +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -578,14 +744,6 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-proposal-logical-assignment-operators@^7.18.0": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" - integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-proposal-logical-assignment-operators@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" @@ -594,7 +752,7 @@ "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -621,17 +779,6 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.20.1" -"@babel/plugin-proposal-object-rest-spread@^7.20.0": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" - integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== - dependencies: - "@babel/compat-data" "^7.20.5" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.20.7" - "@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" @@ -649,15 +796,6 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.20.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" - integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-proposal-private-methods@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" @@ -838,6 +976,16 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-transform-async-generator-functions@^7.24.3": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz#7330a5c50e05181ca52351b8fd01642000c96cfd" + integrity sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" @@ -877,6 +1025,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.20.2" +"@babel/plugin-transform-class-properties@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834" + integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.20.2": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz#c0033cf1916ccf78202d04be4281d161f6709bb2" @@ -975,6 +1131,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.9" +"@babel/plugin-transform-logical-assignment-operators@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" + integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" @@ -1040,6 +1204,32 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-transform-nullish-coalescing-operator@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" + integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" + integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.24.5": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" + integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.24.7" + "@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" @@ -1048,6 +1238,23 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-replace-supers" "^7.18.6" +"@babel/plugin-transform-optional-catch-binding@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" + integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.24.5": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz#b8f6848a80cf2da98a8a204429bec04756c6d454" + integrity sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.1": version "7.20.1" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.1.tgz#9a5aa370fdcce36f110455e9369db7afca0f9eeb" @@ -1055,12 +1262,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-parameters@^7.20.7": - version "7.22.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.3.tgz#24477acfd2fd2bc901df906c9bf17fbcfeee900d" - integrity sha512-x7QHQJHPuD9VmfpzboyGJ5aHEr9r7DsAsdxdhJiTB3J3j8dyl+NFZ+rX5Q2RWFDCs61c06qBfS4ys2QYn8UkMw== +"@babel/plugin-transform-parameters@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" + integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-private-methods@^7.22.5": version "7.23.3" @@ -1127,6 +1334,14 @@ "@babel/helper-plugin-utils" "^7.20.2" regenerator-transform "^0.15.1" +"@babel/plugin-transform-regenerator@^7.20.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" + integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + regenerator-transform "^0.15.2" + "@babel/plugin-transform-reserved-words@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" @@ -1375,6 +1590,15 @@ "@babel/parser" "^7.22.15" "@babel/types" "^7.22.15" +"@babel/template@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.7.tgz#02efcee317d0609d2c07117cb70ef8fb17ab7315" + integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1", "@babel/traverse@^7.7.2", "@babel/traverse@^7.7.4": version "7.20.1" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.1.tgz#9b15ccbf882f6d107eeeecf263fbcdd208777ec8" @@ -1407,6 +1631,22 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.7.tgz#de2b900163fa741721ba382163fe46a936c40cf5" + integrity sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-hoist-variables" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + "@babel/parser" "^7.24.7" + "@babel/types" "^7.24.7" + debug "^4.3.1" + globals "^11.1.0" + "@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.2.tgz#67ac09266606190f496322dbaff360fdaa5e7842" @@ -1443,6 +1683,15 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" +"@babel/types@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.7.tgz#6027fe12bc1aa724cd32ab113fb7f1988f1f66f2" + integrity sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q== + dependencies: + "@babel/helper-string-parser" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + to-fast-properties "^2.0.0" + "@babel/types@^7.4.4": version "7.20.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84" @@ -1471,10 +1720,10 @@ dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.5.1": - version "4.10.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" - integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== +"@eslint-community/regexpp@^4.10.0": + version "4.10.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.1.tgz#361461e5cb3845d874e61731c11cfedd664d83a0" + integrity sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA== "@eslint/eslintrc@^1.3.3": version "1.3.3" @@ -1822,16 +2071,35 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + "@jridgewell/resolve-uri@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": version "1.1.2" resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + "@jridgewell/source-map@^0.3.2": version "0.3.2" resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" @@ -1845,6 +2113,11 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== +"@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": version "0.3.17" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" @@ -1853,6 +2126,14 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": version "5.1.1-v1" resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129" @@ -1881,51 +2162,50 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@react-native-community/cli-clean@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-13.6.4.tgz#53c07c6f2834a971dc40eab290edcf8ccc5d1e00" - integrity sha512-nS1BJ+2Z+aLmqePxB4AYgJ+C/bgQt02xAgSYtCUv+lneRBGhL2tHRrK8/Iolp0y+yQoUtHHf4txYi90zGXLVfw== +"@react-native-community/cli-clean@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-14.0.0-alpha.11.tgz#6b7b95533ec9483562e33d2aae4c0501d4fa41c1" + integrity sha512-pGhrL7xncBv6ciE6vybJHCRAz5c+ejchEdtIcuMBk3GDSP+cWh9A8jwwezMo/6zKDh1FMWSN7KxXFL0fr11Eyw== dependencies: - "@react-native-community/cli-tools" "13.6.4" + "@react-native-community/cli-tools" "14.0.0-alpha.11" chalk "^4.1.2" execa "^5.0.0" fast-glob "^3.3.2" -"@react-native-community/cli-config@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-13.6.4.tgz#3004c7bca55cb384b3a99c38c1a48dad24533237" - integrity sha512-GGK415WoTx1R9FXtfb/cTnan9JIWwSm+a5UCuFd6+suzS0oIt1Md1vCzjNh6W1CK3b43rZC2e+3ZU7Ljd7YtyQ== +"@react-native-community/cli-config@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-14.0.0-alpha.11.tgz#44605edc66f4fb7f65e7c9aeb71ed4c4a54e3abd" + integrity sha512-6De3iEH71LnEPUTQZXORnl8J5t1p3Lsp1iweFf5oaHdYlBPqPLt2pGZxtSc09oNIOdtmYW9RHm14OM6/mJm/xA== dependencies: - "@react-native-community/cli-tools" "13.6.4" + "@react-native-community/cli-tools" "14.0.0-alpha.11" chalk "^4.1.2" - cosmiconfig "^5.1.0" + cosmiconfig "^9.0.0" deepmerge "^4.3.0" fast-glob "^3.3.2" joi "^17.2.1" -"@react-native-community/cli-debugger-ui@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.4.tgz#3881b9cfe14e66b3ee827a84f19ca9d0283fd764" - integrity sha512-9Gs31s6tA1kuEo69ay9qLgM3x2gsN/RI994DCUKnFSW+qSusQJyyrmfllR2mGU3Wl1W09/nYpIg87W9JPf5y4A== +"@react-native-community/cli-debugger-ui@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-14.0.0-alpha.11.tgz#952bb7c162e136ebff1950e7e80706eb3155fe21" + integrity sha512-0wCNQxhCniyjyMXgR1qXliY180y/2QbvoiYpp2MleGQADr5M1b8lgI4GoyADh5kE+kX3VL0ssjgyxpmbpCD86A== dependencies: serve-static "^1.13.1" -"@react-native-community/cli-doctor@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-13.6.4.tgz#07e5c2f163807e61ce0ba12901903e591177e3d3" - integrity sha512-lWOXCISH/cHtLvO0cWTr+IPSzA54FewVOw7MoCMEvWusH+1n7c3hXTAve78mLozGQ7iuUufkHFWwKf3dzOkflQ== +"@react-native-community/cli-doctor@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-14.0.0-alpha.11.tgz#1ee0910be05113c920027bd042c3a658908ec203" + integrity sha512-i+awVrt964+MxneGuw/6GXdzm+MJtFyS9Jpuc87HApLxOY9AC4pVjFSi6tUUjC5SlORN3zuMo87DmzgQuqBR+w== dependencies: - "@react-native-community/cli-config" "13.6.4" - "@react-native-community/cli-platform-android" "13.6.4" - "@react-native-community/cli-platform-apple" "13.6.4" - "@react-native-community/cli-platform-ios" "13.6.4" - "@react-native-community/cli-tools" "13.6.4" + "@react-native-community/cli-config" "14.0.0-alpha.11" + "@react-native-community/cli-platform-android" "14.0.0-alpha.11" + "@react-native-community/cli-platform-apple" "14.0.0-alpha.11" + "@react-native-community/cli-platform-ios" "14.0.0-alpha.11" + "@react-native-community/cli-tools" "14.0.0-alpha.11" chalk "^4.1.2" command-exists "^1.2.8" deepmerge "^4.3.0" envinfo "^7.10.0" execa "^5.0.0" - hermes-profile-transformer "^0.0.6" node-stream-zip "^1.9.1" ora "^5.4.1" semver "^7.5.2" @@ -1933,152 +2213,141 @@ wcwidth "^1.0.1" yaml "^2.2.1" -"@react-native-community/cli-hermes@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-13.6.4.tgz#6d3e9b5c251461e9bb35b04110544db8a4f5968f" - integrity sha512-VIAufA/2wTccbMYBT9o+mQs9baOEpTxCiIdWeVdkPWKzIwtKsLpDZJlUqj4r4rI66mwjFyQ60PhwSzEJ2ApFeQ== - dependencies: - "@react-native-community/cli-platform-android" "13.6.4" - "@react-native-community/cli-tools" "13.6.4" - chalk "^4.1.2" - hermes-profile-transformer "^0.0.6" - -"@react-native-community/cli-platform-android@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.4.tgz#78ab4c840f4f1f5252ad2fcc5a55f7681ec458cb" - integrity sha512-WhknYwIobKKCqaGCN3BzZEQHTbaZTDiGvcXzevvN867ldfaGdtbH0DVqNunbPoV1RNzeV9qKoQHFdWBkg83tpg== +"@react-native-community/cli-platform-android@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-14.0.0-alpha.11.tgz#29bb5ee9e55eea0199d824335f54f7adc0cf50f5" + integrity sha512-DIKku0qcJ2pB75YTqBCHdJiQaMtFBkp8Hhloq57OpNMspDqLTuWjDDbcCtqD7LQb9MGpaf+b6FWUQFw9BNtVkQ== dependencies: - "@react-native-community/cli-tools" "13.6.4" + "@react-native-community/cli-tools" "14.0.0-alpha.11" 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-apple@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.4.tgz#4912eaf519800a957745192718822b94655c8119" - integrity sha512-TLBiotdIz0veLbmvNQIdUv9fkBx7m34ANGYqr5nH7TFxdmey+Z+omoBqG/HGpvyR7d0AY+kZzzV4k+HkYHM/aQ== +"@react-native-community/cli-platform-apple@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-14.0.0-alpha.11.tgz#7085a08b2f71f78291722196834e1e47a5d74ae5" + integrity sha512-tNKKte5K/tNNHy0Pxy/vJaSUw0jS7Cuo+F7tTT2ZgDmarp7IlfWnfVMKCtlSC3rR8ZCktmgPgteTf9SicSldxg== dependencies: - "@react-native-community/cli-tools" "13.6.4" + "@react-native-community/cli-tools" "14.0.0-alpha.11" chalk "^4.1.2" execa "^5.0.0" fast-glob "^3.3.2" - fast-xml-parser "^4.0.12" + fast-xml-parser "^4.2.4" ora "^5.4.1" -"@react-native-community/cli-platform-ios@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.4.tgz#96ec915c6df23b2b7b7e0d8cb3db7368e448d620" - integrity sha512-8Dlva8RY+MY5nhWAj6V7voG3+JOEzDTJmD0FHqL+4p0srvr9v7IEVcxfw5lKBDIUNd0OMAHNevGA+cyz1J60jg== +"@react-native-community/cli-platform-ios@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-14.0.0-alpha.11.tgz#d446583ebf1eeaf0066ddb649e28b345aa32149e" + integrity sha512-coHbTcymVsrOBYvch0M7JtKIRlfCc2GwXs7JEyG54CUKTfhLGDgWWTGOdAwWxiF4cDbj46Qr/4Es2AGJbmTBGA== dependencies: - "@react-native-community/cli-platform-apple" "13.6.4" + "@react-native-community/cli-platform-apple" "14.0.0-alpha.11" -"@react-native-community/cli-server-api@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-13.6.4.tgz#6bcec7ae387fc3aeb3e78f62561a91962e6fadf7" - integrity sha512-D2qSuYCFwrrUJUM0SDc9l3lEhU02yjf+9Peri/xhspzAhALnsf6Z/H7BCjddMV42g9/eY33LqiGyN5chr83a+g== +"@react-native-community/cli-server-api@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-14.0.0-alpha.11.tgz#505163e11d3a30ebc874950956f72f5b3b6c5fc1" + integrity sha512-I7YeYI7S5wSxnQAqeG8LNqhT99FojiGIk87DU0vTp6U8hIMLcA90fUuBAyJY38AuQZ12ZJpGa8ObkhIhWzGkvg== dependencies: - "@react-native-community/cli-debugger-ui" "13.6.4" - "@react-native-community/cli-tools" "13.6.4" + "@react-native-community/cli-debugger-ui" "14.0.0-alpha.11" + "@react-native-community/cli-tools" "14.0.0-alpha.11" 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 "^7.5.1" + ws "^6.2.3" -"@react-native-community/cli-tools@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-13.6.4.tgz#ab396604b6dcf215790807fe89656e779b11f0ec" - integrity sha512-N4oHLLbeTdg8opqJozjClmuTfazo1Mt+oxU7mr7m45VCsFgBqTF70Uwad289TM/3l44PP679NRMAHVYqpIRYtQ== +"@react-native-community/cli-tools@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-14.0.0-alpha.11.tgz#95b148a3e65a4c2519af608b27ed7091e7e8b78a" + integrity sha512-HQCfVnX9aqRdKdLxmQy4fUAUo+YhNGlBV7ZjOayPbuEGWJ4RN+vSy0Cawk7epo7hXd6vKzc7P7y3HlU6Kxs7+w== dependencies: appdirsjs "^1.2.4" chalk "^4.1.2" execa "^5.0.0" find-up "^5.0.0" mime "^2.4.1" - node-fetch "^2.6.0" 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-types@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-13.6.4.tgz#e499a3691ee597aa4b93196ff182a4782fae7afb" - integrity sha512-NxGCNs4eYtVC8x0wj0jJ/MZLRy8C+B9l8lY8kShuAcvWTv5JXRqmXjg8uK1aA+xikPh0maq4cc/zLw1roroY/A== +"@react-native-community/cli-types@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-14.0.0-alpha.11.tgz#d8ca6352659bc44d569bae3fb321ed52502168f0" + integrity sha512-jujAIipCmgc0mHXh9G+6cVT8wPaw1m8L3OSpajNKuARtjva+jGNYmx4itRP05c+SgFqN4eASEV563nNfI4Ja/g== dependencies: joi "^17.2.1" -"@react-native-community/cli@13.6.4": - version "13.6.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-13.6.4.tgz#dabe2749470a34533e18aada51d97c94b3568307" - integrity sha512-V7rt2N5JY7M4dJFgdNfR164r3hZdR/Z7V54dv85TFQHRbdwF4QrkG+GeagAU54qrkK/OU8OH3AF2+mKuiNWpGA== - dependencies: - "@react-native-community/cli-clean" "13.6.4" - "@react-native-community/cli-config" "13.6.4" - "@react-native-community/cli-debugger-ui" "13.6.4" - "@react-native-community/cli-doctor" "13.6.4" - "@react-native-community/cli-hermes" "13.6.4" - "@react-native-community/cli-server-api" "13.6.4" - "@react-native-community/cli-tools" "13.6.4" - "@react-native-community/cli-types" "13.6.4" +"@react-native-community/cli@14.0.0-alpha.11": + version "14.0.0-alpha.11" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-14.0.0-alpha.11.tgz#e2fe662a68f0597b3ab738240c997301ce11b404" + integrity sha512-V32VYYa1dZJWt7ohxCYQIRa7DVGAXpw3RnP36BSfm4rqv1DD8ymDLM71PVZHoeHG6UWyNABXbTHTY+FOUYjKlQ== + dependencies: + "@react-native-community/cli-clean" "14.0.0-alpha.11" + "@react-native-community/cli-config" "14.0.0-alpha.11" + "@react-native-community/cli-debugger-ui" "14.0.0-alpha.11" + "@react-native-community/cli-doctor" "14.0.0-alpha.11" + "@react-native-community/cli-server-api" "14.0.0-alpha.11" + "@react-native-community/cli-tools" "14.0.0-alpha.11" + "@react-native-community/cli-types" "14.0.0-alpha.11" chalk "^4.1.2" commander "^9.4.1" deepmerge "^4.3.0" execa "^5.0.0" - find-up "^4.1.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/assets-registry@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.74.81.tgz#76b17f8f79b366ec4f18a0f4e99b7cd466aa5aa7" - integrity sha512-ms+D6pJ6l30epm53pwnAislW79LEUHJxWfe1Cu0LWyTTBlg1OFoqXfB3eIbpe4WyH3nrlkQAh0yyk4huT2mCvw== +"@react-native/assets-registry@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.2.tgz#dbb4723362a3ad8c7cf1845343cd1443a7bfd451" + integrity sha512-EaNced6TJiPD3xfRXDzfjh9jdFMmAaiAnXecEb622jueBWKATx9Rdo5KxgkKOqSotTF09G6LC3QMKz/bNWKLnQ== -"@react-native/babel-plugin-codegen@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.81.tgz#80484fb9029038694a92193ae2653529e44aab64" - integrity sha512-Bj6g5/xkLMBAdC6665TbD3uCKCQSmLQpGv3gyqya/ydZpv3dDmDXfkGmO4fqTwEMunzu09Sk55st2ipmuXAaAg== +"@react-native/babel-plugin-codegen@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.2.tgz#ff161624025f79b7ad95fe3d4b6557632bf85361" + integrity sha512-XAyyLav3w8rJJhC1typYFXoxqzusc2r57tPTL8zvKhqoGxbuh+ewCyAsIl5DX06g/z8CySk7f3v1lEQHvbsIrA== dependencies: - "@react-native/codegen" "0.74.81" + "@react-native/codegen" "0.75.0-rc.2" -"@react-native/babel-preset@0.74.81", "@react-native/babel-preset@^0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.74.81.tgz#80d0b96eef35d671f97eaf223c4d770170d7f23f" - integrity sha512-H80B3Y3lBBVC4x9tceTEQq/04lx01gW6ajWCcVbd7sHvGEAxfMFEZUmVZr0451Cafn02wVnDJ8psto1F+0w5lw== +"@react-native/babel-preset@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.2.tgz#3abb11694bb5742d5fee6ccd39f8a3e53eeec2d7" + integrity sha512-Tx7+47oDluBJOO0zD/lICPqmYWyaKRmj/2JOgm3kjM5Z28CaR7ZrE9rXkVDHwknB3Y/pEuG9nlpONyFrcmtp+Q== 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-generator-functions" "^7.24.3" "@babel/plugin-transform-async-to-generator" "^7.20.0" "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-class-properties" "^7.24.1" "@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-for-of" "^7.0.0" "@babel/plugin-transform-function-name" "^7.0.0" "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.1" "@babel/plugin-transform-modules-commonjs" "^7.0.0" "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.1" + "@babel/plugin-transform-numeric-separator" "^7.24.1" + "@babel/plugin-transform-object-rest-spread" "^7.24.5" + "@babel/plugin-transform-optional-catch-binding" "^7.24.1" + "@babel/plugin-transform-optional-chaining" "^7.24.5" "@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" @@ -2086,6 +2355,7 @@ "@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-regenerator" "^7.20.0" "@babel/plugin-transform-runtime" "^7.0.0" "@babel/plugin-transform-shorthand-properties" "^7.0.0" "@babel/plugin-transform-spread" "^7.0.0" @@ -2093,32 +2363,32 @@ "@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.81" + "@react-native/babel-plugin-codegen" "0.75.0-rc.2" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" -"@react-native/codegen@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.81.tgz#1025ffd41f2b4710fd700c9e8e85210b9651a7c4" - integrity sha512-hhXo4ccv2lYWaJrZDsdbRTZ5SzSOdyZ0MY6YXwf3xEFLuSunbUMu17Rz5LXemKXlpVx4KEgJ/TDc2pPVaRPZgA== +"@react-native/codegen@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.2.tgz#f0ca7d153ce82bb42edb8c42ae5f00710849570d" + integrity sha512-yhcgOTduKrMhQTDHqzMI+PeDWoSMuHpMdw/C9kFaMBox6A943L2Lb4qc3ySnja2ZXk4KvM4Z6HoQt3F3ydeoHw== dependencies: "@babel/parser" "^7.20.0" glob "^7.1.1" - hermes-parser "0.19.1" + hermes-parser "0.22.0" invariant "^2.2.4" jscodeshift "^0.14.0" mkdirp "^0.5.1" nullthrows "^1.1.1" -"@react-native/community-cli-plugin@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.81.tgz#4177207374942c52a86ad52c8c915f46729305ab" - integrity sha512-ezPOwPxbDgrBZLJJMcXryXJXjv3VWt+Mt4jRZiEtvy6pAoi2owSH0b178T5cEZaWsxQN0BbyJ7F/xJsNiF4z0Q== +"@react-native/community-cli-plugin@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.2.tgz#0c381cde43d57b68e27ecab4d9423f13d5f958ed" + integrity sha512-PCxmzFyruBZ+ociWlHZVfiDiHX3TVjiEHqjHiUitzo+t/ic4SZ+lL2kvptkpYe+/ezFBxcfqm3xQSBS+izopqg== dependencies: - "@react-native-community/cli-server-api" "13.6.4" - "@react-native-community/cli-tools" "13.6.4" - "@react-native/dev-middleware" "0.74.81" - "@react-native/metro-babel-transformer" "0.74.81" + "@react-native-community/cli-server-api" "14.0.0-alpha.11" + "@react-native-community/cli-tools" "14.0.0-alpha.11" + "@react-native/dev-middleware" "0.75.0-rc.2" + "@react-native/metro-babel-transformer" "0.75.0-rc.2" chalk "^4.0.0" execa "^5.1.1" metro "^0.80.3" @@ -2128,20 +2398,20 @@ querystring "^0.2.1" readline "^1.3.0" -"@react-native/debugger-frontend@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.74.81.tgz#17cefe2b3ff485071bd30d819995867fd145da27" - integrity sha512-HCYF1/88AfixG75558HkNh9wcvGweRaSZGBA71KoZj03umXM8XJy0/ZpacGOml2Fwiqpil72gi6uU+rypcc/vw== +"@react-native/debugger-frontend@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.2.tgz#04a00165e51013a1ce2dee8ec43eb9ab4f95e5ba" + integrity sha512-pq1ceSiQkBU27YWCuhjLBCewne3diPtdiY9G73AAH8KxXe7/8PFvn2ffsnrY14cW8J/OoAVm0D/pmf71irG8Hg== -"@react-native/dev-middleware@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.74.81.tgz#120ab62982a48cba90c7724d099ddaa50184c200" - integrity sha512-x2IpvUJN1LJE0WmPsSfQIbQaa9xwH+2VDFOUrzuO9cbQap8rNfZpcvVNbrZgrlKbgS4LXbbsj6VSL8b6SnMKMA== +"@react-native/dev-middleware@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.2.tgz#f9502012d5d3e5579df6e90ac7bc53ef51dde986" + integrity sha512-jpTEQ45ucJTRn14AcafxNEoOFsPddK1O+NJfAWL471+9cZhNnW+gpa4GxXLTwvRhTApUovCM4kdrwXuwIUtCnA== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.74.81" - "@rnx-kit/chromium-edge-launcher" "^1.0.0" + "@react-native/debugger-frontend" "0.75.0-rc.2" chrome-launcher "^0.15.2" + chromium-edge-launcher "^0.2.0" connect "^3.6.5" debug "^2.2.0" node-fetch "^2.2.0" @@ -2149,93 +2419,79 @@ open "^7.0.3" selfsigned "^2.4.1" serve-static "^1.13.1" - temp-dir "^2.0.0" ws "^6.2.2" -"@react-native/eslint-config@^0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.74.81.tgz#36db043a03a024c0e5daf14707c86acb8218bcd5" - integrity sha512-XIBjvKxNJYzON6dInZcpuVDRNGC4QYXtwFu6KUVpnPbWVmOSP1PzUVy8R+y0Vh2FOpYnKmoCLlMU1V4evnZmpw== +"@react-native/eslint-config@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.2.tgz#c6d6c59b8efbca8cd1c5629a06cc62651a94ffff" + integrity sha512-tqYFvzStPxwzrNA8+R3Ha78Z7IHXKeY67tIn/JkmojjGApCT9nWnLfiJw9FIcBnbc/2RlbjvSLH3OintXBfqCg== dependencies: "@babel/core" "^7.20.0" "@babel/eslint-parser" "^7.20.0" - "@react-native/eslint-plugin" "0.74.81" - "@typescript-eslint/eslint-plugin" "^6.7.4" - "@typescript-eslint/parser" "^6.7.4" + "@react-native/eslint-plugin" "0.75.0-rc.2" + "@typescript-eslint/eslint-plugin" "^7.1.1" + "@typescript-eslint/parser" "^7.1.1" eslint-config-prettier "^8.5.0" eslint-plugin-eslint-comments "^3.2.0" eslint-plugin-ft-flow "^2.0.1" - eslint-plugin-jest "^26.5.3" - eslint-plugin-prettier "^4.2.1" + eslint-plugin-jest "^27.9.0" eslint-plugin-react "^7.30.1" eslint-plugin-react-hooks "^4.6.0" eslint-plugin-react-native "^4.0.0" -"@react-native/eslint-plugin@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.74.81.tgz#ac53da7c41a35948b0f9d01d88d2a858e879edb1" - integrity sha512-vlbLJ38MFJzcEgNxNswjgDRELvZX5e4SmGhtN9N1ZQpXLkgo3hs+l2m4ulSpKhSmqpbacB5XbuTTMgKOsLj/5w== +"@react-native/eslint-plugin@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.2.tgz#cc1a9063cc5933ebb57f8e3a201271d2aff5d40e" + integrity sha512-nedwJzGO8pl1Ep/syALqfMC26Y+I5STirhSCNPiB9+v92h6uT603pfo/zBYzqBYknLTvZpvg4uSOqwf6TWfXSA== -"@react-native/gradle-plugin@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.74.81.tgz#aac01999b1005bba3213f504deee7efaadb62c1e" - integrity sha512-7YQ4TLnqfe2kplWWzBWO6k0rPSrWEbuEiRXSJNZQCtCk+t2YX985G62p/9jWm3sGLN4UTcpDXaFNTTPBvlycoQ== +"@react-native/gradle-plugin@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.2.tgz#6549e3176b14b7833c0b1bcb7765dcfc14a9f873" + integrity sha512-XGhOLxb6fP/N1DwM9tlWOx0yRE5sDjI6Qm2ADZk0tLdgJQzh+Le+fnPZcz0FjkqAiQx3yalO6/GQ47aQZe5LgQ== -"@react-native/js-polyfills@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.74.81.tgz#64780497be4ecbff1b27076294e3ebd7df1ba485" - integrity sha512-o4MiR+/kkHoeoQ/zPwt81LnTm6pqdg0wOhU7S7vIZUqzJ7YUpnpaAvF+/z7HzUOPudnavoCN0wvcZPe/AMEyCA== +"@react-native/js-polyfills@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.2.tgz#649c32e0a48f39d79fb2b1a68cc1f2ab48bcdafe" + integrity sha512-iikwsNUR80kjhNNy9pnmdEeTawS0N25L3TL4ZGxenXwiiZQbVvOGOy/KunobIJDa0KS3i0g1RADOb1hqwJywFA== -"@react-native/metro-babel-transformer@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.81.tgz#f724eab91e6de82f8d098e6de57f25bb7501d2d6" - integrity sha512-PVcMjj23poAK6Uemflz4MIJdEpONpjqF7JASNqqQkY6wfDdaIiZSNk8EBCWKb0t7nKqhMvtTq11DMzYJ0JFITg== +"@react-native/metro-babel-transformer@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.2.tgz#e9e4c35ce7ab4d81a7eea8cca0c5c4d784f3b994" + integrity sha512-9DTwoXlEJyjr6D4jVUf5VzMX/mlzdb8QjoHUXRht5vHD/tavw237+Yk+Z94VScV7aj7Lbgtr7HcCGhLtLdp2PQ== dependencies: "@babel/core" "^7.20.0" - "@react-native/babel-preset" "0.74.81" - hermes-parser "0.19.1" + "@react-native/babel-preset" "0.75.0-rc.2" + hermes-parser "0.22.0" nullthrows "^1.1.1" -"@react-native/metro-config@^0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.74.81.tgz#3ed605c0bb51081905171af3e0326abd3adc0b27" - integrity sha512-VInZ60cXC/e5MY7kMlrMRn6Mhpj05hJfiJngRKy8BsWnXJNQMv3iggar+XnfSh98saLw1yG96dO3G6s2WQhzOg== +"@react-native/metro-config@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.2.tgz#47c329c3aafd55abe093aa2e121c7f8e71697440" + integrity sha512-4l0ofUdqARIcK5hgpv73ZuM9yIQajBaaoGiU7iVcdurjqrJxs3ZVjJ8DM19gUTXZKrbYDfHmZawB63wMiOw85A== dependencies: - "@react-native/js-polyfills" "0.74.81" - "@react-native/metro-babel-transformer" "0.74.81" + "@react-native/js-polyfills" "0.75.0-rc.2" + "@react-native/metro-babel-transformer" "0.75.0-rc.2" metro-config "^0.80.3" metro-runtime "^0.80.3" -"@react-native/normalize-colors@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.81.tgz#0b7c440b6e126f79036cbe74a88791aba72b9fcf" - integrity sha512-g3YvkLO7UsSWiDfYAU+gLhRHtEpUyz732lZB+N8IlLXc5MnfXHC8GKneDGY3Mh52I3gBrs20o37D5viQX9E1CA== +"@react-native/normalize-colors@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.2.tgz#1280e0b42be8ca410b8459ac6761b53ad85e5901" + integrity sha512-4kv64O1aQExGKGFJ/30eqUwoIm5a8IU+5g3gmN0AHrBGDq2NmIDy9qakrU71wkp6kWkZVftLiy8Z6+Y/ni0ovg== -"@react-native/typescript-config@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.74.81.tgz#a249b6a21b577d572a0a70056d7c48a55fd6662f" - integrity sha512-jk4LJUKdRYmXxxpebRSW8mK9xJPW90W6BE1IE9LdFi0exdsnVv5gXM9QylG+9kDVZj3bltMuMVdijWnU7SRNbg== +"@react-native/typescript-config@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.2.tgz#2dc4e8c6c0faf6c69e505a32b746d72958b85115" + integrity sha512-ZCuQ8v9piLpy+fg/n7EC8N+Qc/Eb+cBhRxKAYH9lkfsSj1LTiyRg/nQq3Bhkmg0i6Ia+snvUMsywDTAybDCouw== -"@react-native/virtualized-lists@0.74.81": - version "0.74.81" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.74.81.tgz#8e43d4c72ec561754491eae731f40877f03d05fb" - integrity sha512-5jF9S10Ug2Wl+L/0+O8WmbC726sMMX8jk/1JrvDDK+0DRLMobfjLc1L26fONlVBF7lE5ctqvKZ9TlKdhPTNOZg== +"@react-native/virtualized-lists@0.75.0-rc.2": + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.2.tgz#7bdcdeeba16ca5863ce95d8867ea026834be2afc" + integrity sha512-aA1nl0AJP2noCMGTEPyLKYCGZ6AWMGBPVm5dt8337S/HLclmvD5ivIUiPCp0deNFqoosKnbjZNaLDB4AnFN2QQ== 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" - "@sideway/address@^4.1.3": version "4.1.4" resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" @@ -2368,11 +2624,6 @@ expect "^29.0.0" pretty-format "^29.0.0" -"@types/json-schema@^7.0.12": - version "7.0.15" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" - integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== - "@types/json-schema@^7.0.9": version "7.0.11" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" @@ -2397,13 +2648,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== -"@types/node@^18.0.0": - version "18.19.17" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.17.tgz#a581a9fb4b2cfdbc61f008804f4436b2d5c40354" - integrity sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng== - dependencies: - undici-types "~5.26.4" - "@types/prettier@^2.1.5": version "2.7.1" resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.1.tgz#dfd20e2dc35f027cdd6c1908e80a5ddc7499670e" @@ -2449,11 +2693,6 @@ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== -"@types/semver@^7.5.0": - version "7.5.7" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.7.tgz#326f5fdda70d13580777bcaa1bc6fa772a5aef0e" - integrity sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg== - "@types/stack-utils@^2.0.0": version "2.0.1" resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" @@ -2500,22 +2739,20 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/eslint-plugin@^6.7.4": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz#30830c1ca81fd5f3c2714e524c4303e0194f9cd3" - integrity sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA== +"@typescript-eslint/eslint-plugin@^7.1.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.14.1.tgz#90e2f76a5930d553ede124e1f541a39b4417465e" + integrity sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw== dependencies: - "@eslint-community/regexpp" "^4.5.1" - "@typescript-eslint/scope-manager" "6.21.0" - "@typescript-eslint/type-utils" "6.21.0" - "@typescript-eslint/utils" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" - debug "^4.3.4" + "@eslint-community/regexpp" "^4.10.0" + "@typescript-eslint/scope-manager" "7.14.1" + "@typescript-eslint/type-utils" "7.14.1" + "@typescript-eslint/utils" "7.14.1" + "@typescript-eslint/visitor-keys" "7.14.1" graphemer "^1.4.0" - ignore "^5.2.4" + ignore "^5.3.1" natural-compare "^1.4.0" - semver "^7.5.4" - ts-api-utils "^1.0.1" + ts-api-utils "^1.3.0" "@typescript-eslint/parser@^5.37.0": version "5.42.0" @@ -2527,15 +2764,15 @@ "@typescript-eslint/typescript-estree" "5.42.0" debug "^4.3.4" -"@typescript-eslint/parser@^6.7.4": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" - integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== +"@typescript-eslint/parser@^7.1.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.14.1.tgz#13d97f357aed3c5719f259a6cc3d1a1f065d3692" + integrity sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA== dependencies: - "@typescript-eslint/scope-manager" "6.21.0" - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/typescript-estree" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" + "@typescript-eslint/scope-manager" "7.14.1" + "@typescript-eslint/types" "7.14.1" + "@typescript-eslint/typescript-estree" "7.14.1" + "@typescript-eslint/visitor-keys" "7.14.1" debug "^4.3.4" "@typescript-eslint/scope-manager@5.42.0": @@ -2546,13 +2783,13 @@ "@typescript-eslint/types" "5.42.0" "@typescript-eslint/visitor-keys" "5.42.0" -"@typescript-eslint/scope-manager@6.21.0": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" - integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== +"@typescript-eslint/scope-manager@7.14.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.14.1.tgz#63de7a577bc6fe8ee6e412a5b85499f654b93ee5" + integrity sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA== dependencies: - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" + "@typescript-eslint/types" "7.14.1" + "@typescript-eslint/visitor-keys" "7.14.1" "@typescript-eslint/type-utils@5.42.0": version "5.42.0" @@ -2564,25 +2801,25 @@ debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/type-utils@6.21.0": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz#6473281cfed4dacabe8004e8521cee0bd9d4c01e" - integrity sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag== +"@typescript-eslint/type-utils@7.14.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.14.1.tgz#c183f2f28c4c8578eb80aebc4ac9ace400160af6" + integrity sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ== dependencies: - "@typescript-eslint/typescript-estree" "6.21.0" - "@typescript-eslint/utils" "6.21.0" + "@typescript-eslint/typescript-estree" "7.14.1" + "@typescript-eslint/utils" "7.14.1" debug "^4.3.4" - ts-api-utils "^1.0.1" + ts-api-utils "^1.3.0" "@typescript-eslint/types@5.42.0": version "5.42.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.42.0.tgz#5aeff9b5eced48f27d5b8139339bf1ef805bad7a" integrity sha512-t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw== -"@typescript-eslint/types@6.21.0": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" - integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== +"@typescript-eslint/types@7.14.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.14.1.tgz#a43a540dbe5df7f2a11269683d777fc50b4350aa" + integrity sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg== "@typescript-eslint/typescript-estree@5.42.0": version "5.42.0" @@ -2597,19 +2834,19 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@6.21.0": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" - integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== +"@typescript-eslint/typescript-estree@7.14.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.14.1.tgz#ba7c9bac8744487749d19569e254d057754a1575" + integrity sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA== dependencies: - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" + "@typescript-eslint/types" "7.14.1" + "@typescript-eslint/visitor-keys" "7.14.1" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" - minimatch "9.0.3" - semver "^7.5.4" - ts-api-utils "^1.0.1" + minimatch "^9.0.4" + semver "^7.6.0" + ts-api-utils "^1.3.0" "@typescript-eslint/utils@5.42.0", "@typescript-eslint/utils@^5.10.0": version "5.42.0" @@ -2625,18 +2862,15 @@ eslint-utils "^3.0.0" semver "^7.3.7" -"@typescript-eslint/utils@6.21.0": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.21.0.tgz#4714e7a6b39e773c1c8e97ec587f520840cd8134" - integrity sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ== +"@typescript-eslint/utils@7.14.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.14.1.tgz#3307b8226f99103dca2133d0ebcae38419d82c9d" + integrity sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ== dependencies: "@eslint-community/eslint-utils" "^4.4.0" - "@types/json-schema" "^7.0.12" - "@types/semver" "^7.5.0" - "@typescript-eslint/scope-manager" "6.21.0" - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/typescript-estree" "6.21.0" - semver "^7.5.4" + "@typescript-eslint/scope-manager" "7.14.1" + "@typescript-eslint/types" "7.14.1" + "@typescript-eslint/typescript-estree" "7.14.1" "@typescript-eslint/visitor-keys@5.42.0": version "5.42.0" @@ -2646,13 +2880,13 @@ "@typescript-eslint/types" "5.42.0" eslint-visitor-keys "^3.3.0" -"@typescript-eslint/visitor-keys@6.21.0": - version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" - integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== +"@typescript-eslint/visitor-keys@7.14.1": + version "7.14.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.14.1.tgz#cc79b5ea154aea734b2a13b983670749f5742274" + integrity sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA== dependencies: - "@typescript-eslint/types" "6.21.0" - eslint-visitor-keys "^3.4.1" + "@typescript-eslint/types" "7.14.1" + eslint-visitor-keys "^3.4.3" "@yarnpkg/lockfile@^1.1.0": version "1.1.0" @@ -3007,6 +3241,16 @@ browserslist@^4.21.3, browserslist@^4.21.4: node-releases "^2.0.6" update-browserslist-db "^1.0.9" +browserslist@^4.22.2: + version "4.23.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.1.tgz#ce4af0534b3d37db5c1a4ca98b9080f985041e96" + integrity sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw== + dependencies: + caniuse-lite "^1.0.30001629" + electron-to-chromium "^1.4.796" + node-releases "^2.0.14" + update-browserslist-db "^1.0.16" + bser@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" @@ -3079,6 +3323,11 @@ caniuse-lite@^1.0.30001400: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz#e7c59bd1bc518fae03a4656be442ce6c4887a795" integrity sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ== +caniuse-lite@^1.0.30001629: + version "1.0.30001638" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz#598e1f0c2ac36f37ebc3f5b8887a32ca558e5d56" + integrity sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ== + chalk@^2.0.0, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -3111,6 +3360,18 @@ chrome-launcher@^0.15.2: is-wsl "^2.2.0" lighthouse-logger "^1.0.0" +chromium-edge-launcher@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/chromium-edge-launcher/-/chromium-edge-launcher-0.2.0.tgz#0c378f28c99aefc360705fa155de0113997f62fc" + integrity sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg== + dependencies: + "@types/node" "*" + escape-string-regexp "^4.0.0" + is-wsl "^2.2.0" + lighthouse-logger "^1.0.0" + mkdirp "^1.0.4" + rimraf "^3.0.2" + ci-info@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" @@ -3286,7 +3547,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== @@ -3296,6 +3557,16 @@ cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: js-yaml "^3.13.1" parse-json "^4.0.0" +cosmiconfig@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d" + integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== + dependencies: + env-paths "^2.2.1" + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" @@ -3340,6 +3611,13 @@ debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: dependencies: ms "2.1.2" +debug@^4.3.1: + version "4.3.5" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" + integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== + dependencies: + ms "2.1.2" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -3436,6 +3714,11 @@ electron-to-chromium@^1.4.251: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== +electron-to-chromium@^1.4.796: + version "1.4.812" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.812.tgz#21b78709c5a13af5d5c688d135a22dcea7617acf" + integrity sha512-7L8fC2Ey/b6SePDFKR2zHAy4mbdp1/38Yk5TsARO66W3hC5KEaeKMMHoxwtuH+jcu2AYLSn9QX04i95t6Fl1Hg== + emittery@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" @@ -3451,6 +3734,11 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +env-paths@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + envinfo@^7.10.0: version "7.11.0" resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" @@ -3529,6 +3817,11 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -3570,20 +3863,13 @@ eslint-plugin-ft-flow@^2.0.1: lodash "^4.17.21" string-natural-compare "^3.0.1" -eslint-plugin-jest@^26.5.3: - version "26.9.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.9.0.tgz#7931c31000b1c19e57dbfb71bbf71b817d1bf949" - integrity sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng== +eslint-plugin-jest@^27.9.0: + version "27.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.9.0.tgz#7c98a33605e1d8b8442ace092b60e9919730000b" + integrity sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug== dependencies: "@typescript-eslint/utils" "^5.10.0" -eslint-plugin-prettier@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" - integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== - dependencies: - prettier-linter-helpers "^1.0.0" - 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" @@ -3655,7 +3941,7 @@ eslint-visitor-keys@^3.3.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== -eslint-visitor-keys@^3.4.1: +eslint-visitor-keys@^3.4.3: version "3.4.3" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== @@ -3794,11 +4080,6 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - fast-glob@^3.2.9: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" @@ -3831,7 +4112,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.0.12, fast-xml-parser@^4.2.4: +fast-xml-parser@^4.2.4: version "4.3.3" resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.3.3.tgz#aeaf5778392329f17168c40c51bcbfec8ff965be" integrity sha512-coV/D1MhrShMvU6D0I+VAK3umz6hUaxxhL0yp/9RjfiYUfAv14rDhGQL+PLForhMdr0wq3PiV07WtkkNjJjNHg== @@ -4142,10 +4423,10 @@ hermes-estree@0.18.2: resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.18.2.tgz#fd450fa1659cf074ceaa2ddeeb21674f3b2342f3" integrity sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ== -hermes-estree@0.19.1: - version "0.19.1" - resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.19.1.tgz#d5924f5fac2bf0532547ae9f506d6db8f3c96392" - integrity sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g== +hermes-estree@0.22.0: + version "0.22.0" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.22.0.tgz#38559502b119f728901d2cfe2ef422f277802a1d" + integrity sha512-FLBt5X9OfA8BERUdc6aZS36Xz3rRuB0Y/mfocSADWEJfomc1xfene33GdyAmtTkKTBXTN/EgAy+rjTKkkZJHlw== hermes-estree@0.8.0: version "0.8.0" @@ -4159,12 +4440,12 @@ hermes-parser@0.18.2: dependencies: hermes-estree "0.18.2" -hermes-parser@0.19.1: - version "0.19.1" - resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.19.1.tgz#1044348097165b7c93dc198a80b04ed5130d6b1a" - integrity sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A== +hermes-parser@0.22.0: + version "0.22.0" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.22.0.tgz#fc8e0e6c7bfa8db85b04c9f9544a102c4fcb4040" + integrity sha512-gn5RfZiEXCsIWsFGsKiykekktUoh0PdFWYocXsUdZIyWSckT6UIyPcyyUIPSR3kpnELWeK3n3ztAse7Mat6PSA== dependencies: - hermes-estree "0.19.1" + hermes-estree "0.22.0" hermes-parser@0.8.0: version "0.8.0" @@ -4173,13 +4454,6 @@ hermes-parser@0.8.0: dependencies: hermes-estree "0.8.0" -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" - integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== - dependencies: - source-map "^0.7.3" - hoist-non-react-statics@^3.3.0: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" @@ -4218,7 +4492,7 @@ ignore@^5.0.5, ignore@^5.2.0: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== -ignore@^5.2.4: +ignore@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== @@ -4243,7 +4517,7 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" -import-fresh@^3.0.0, import-fresh@^3.2.1: +import-fresh@^3.0.0, import-fresh@^3.2.1, import-fresh@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== @@ -5227,7 +5501,7 @@ logkitty@^0.7.1: dayjs "^1.8.15" yargs "^15.1.0" -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: +loose-envify@^1.0.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== @@ -5763,13 +6037,6 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimatch@9.0.3: - version "9.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" - integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== - dependencies: - brace-expansion "^2.0.1" - minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -5777,6 +6044,13 @@ minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatc dependencies: brace-expansion "^1.1.7" +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + minimist@^1.2.6: version "1.2.7" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" @@ -5851,7 +6125,7 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" -node-fetch@^2.2.0, node-fetch@^2.6.0: +node-fetch@^2.2.0: version "2.6.7" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== @@ -5868,6 +6142,11 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + node-releases@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" @@ -6175,6 +6454,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -6214,13 +6498,6 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - prettier@^2.4.1: version "2.8.0" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.0.tgz#c7df58393c9ba77d6fba3921ae01faf994fb9dc9" @@ -6310,18 +6587,18 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -react-devtools-core@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.0.0.tgz#50b04a4dbfa62badbe4d86529e9478c396988b31" - integrity sha512-SAAMLacNDfFjMJjmbXURNWtrTyARi9xTqGkY48Btw5cIWlr1wgxfWYZKxoUZav1qqmhbpgTzSmmF+cpMHGHY3A== +react-devtools-core@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.1.0.tgz#3396494ac94b21602cac4fd657d600e0b52f4a0b" + integrity sha512-NRtLBqYVLrIY+lOa2oTpFiAhI7Hru0AUXI0tP9neCyaPPAzlZyeH0i+VZ0shIyRTJbpvyqbD/uCsewA2hpfZHw== dependencies: shell-quote "^1.6.1" ws "^7" -"react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== +react-is@19.0.0-rc-fb9a90fa48-20240614: + version "19.0.0-rc-fb9a90fa48-20240614" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.0.0-rc-fb9a90fa48-20240614.tgz#6987893799abdedf2e9929e31541cb6d7dc8285a" + integrity sha512-60qI7v1B9RhmZwjTCnAgzcuABOQsIH20vTbETQPaze96s1lY2lSawv9dvXAfF8Z1MIqOppWSKLNOshF0WsZ3OA== react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" @@ -6333,30 +6610,31 @@ 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@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + "react-native-gesture-handler@link:..": - version "2.16.2" - dependencies: - "@egjs/hammerjs" "^2.0.17" - hoist-non-react-statics "^3.3.0" - invariant "^2.2.4" - prop-types "^15.7.2" + version "0.0.0" + uid "" -react-native@0.74.0: - version "0.74.0" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.74.0.tgz#9f0901139424152216e1ae1b32773787a0158d41" - integrity sha512-Vpp9WPmkCm4TUH5YDxwQhqktGVon/yLpjbTgjgLqup3GglOgWagYCX3MlmK1iksIcqtyMJHMEWa+UEzJ3G9T8w== +react-native@0.75.0-rc.2: + version "0.75.0-rc.2" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.2.tgz#2caaadf9ea76e853c7ec4f2b8a470bca6fe50fa4" + integrity sha512-K5DZ1VaoT1ppc8Djy8KBhBBr1wIH5v420NoRyd1gSzFtcXDHqKgv9lQyw5rHFrtuPzb299fVDLGEsf4QSLnz0g== dependencies: "@jest/create-cache-key-function" "^29.6.3" - "@react-native-community/cli" "13.6.4" - "@react-native-community/cli-platform-android" "13.6.4" - "@react-native-community/cli-platform-ios" "13.6.4" - "@react-native/assets-registry" "0.74.81" - "@react-native/codegen" "0.74.81" - "@react-native/community-cli-plugin" "0.74.81" - "@react-native/gradle-plugin" "0.74.81" - "@react-native/js-polyfills" "0.74.81" - "@react-native/normalize-colors" "0.74.81" - "@react-native/virtualized-lists" "0.74.81" + "@react-native-community/cli" "14.0.0-alpha.11" + "@react-native-community/cli-platform-android" "14.0.0-alpha.11" + "@react-native-community/cli-platform-ios" "14.0.0-alpha.11" + "@react-native/assets-registry" "0.75.0-rc.2" + "@react-native/codegen" "0.75.0-rc.2" + "@react-native/community-cli-plugin" "0.75.0-rc.2" + "@react-native/gradle-plugin" "0.75.0-rc.2" + "@react-native/js-polyfills" "0.75.0-rc.2" + "@react-native/normalize-colors" "0.75.0-rc.2" + "@react-native/virtualized-lists" "0.75.0-rc.2" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" @@ -6364,6 +6642,7 @@ react-native@0.74.0: chalk "^4.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.6.3" jsc-android "^250231.0.0" @@ -6374,11 +6653,11 @@ react-native@0.74.0: nullthrows "^1.1.1" pretty-format "^26.5.2" promise "^8.3.0" - react-devtools-core "^5.0.0" + react-devtools-core "5.1.0" react-refresh "^0.14.0" - react-shallow-renderer "^16.15.0" regenerator-runtime "^0.13.2" - scheduler "0.24.0-canary-efb381bbf-20230505" + scheduler "0.25.0-rc-fb9a90fa48-20240614" + semver "^7.1.3" stacktrace-parser "^0.1.10" whatwg-fetch "^3.0.0" ws "^6.2.2" @@ -6394,29 +6673,18 @@ react-refresh@^0.4.0: resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53" integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== -react-shallow-renderer@^16.15.0: - version "16.15.0" - resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457" - integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA== +react-test-renderer@19.0.0-rc-fb9a90fa48-20240614: + version "19.0.0-rc-fb9a90fa48-20240614" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.0.0-rc-fb9a90fa48-20240614.tgz#6657b3d05a533afad5ea0516f9ed29cadf72334f" + integrity sha512-cV3mGgsKTJCB8f4tZxWIp0ot4PMgx791XTkwpapf06ZlUk5BCP3C1CbIqRXcKeiQODvFJClZX26TFTPAklTq7A== dependencies: - object-assign "^4.1.1" - react-is "^16.12.0 || ^17.0.0 || ^18.0.0" + react-is "19.0.0-rc-fb9a90fa48-20240614" + scheduler "0.25.0-rc-fb9a90fa48-20240614" -react-test-renderer@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.2.0.tgz#1dd912bd908ff26da5b9fca4fd1c489b9523d37e" - integrity sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA== - dependencies: - react-is "^18.2.0" - react-shallow-renderer "^16.15.0" - scheduler "^0.23.0" - -react@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== - dependencies: - loose-envify "^1.1.0" +react@19.0.0-rc-fb9a90fa48-20240614: + version "19.0.0-rc-fb9a90fa48-20240614" + resolved "https://registry.yarnpkg.com/react/-/react-19.0.0-rc-fb9a90fa48-20240614.tgz#90eb43a0b005e8cc3cbf0d801c14816d01df1b08" + integrity sha512-nvE3Gy+IOIfH/DXhkyxFVQSrITarFcQz4+shzC/McxQXEUSonpw2oDy/Wi9hdDtV3hlP12VYuDL95iiBREedNQ== readable-stream@^3.4.0: version "3.6.0" @@ -6484,6 +6752,13 @@ regenerator-transform@^0.15.1: dependencies: "@babel/runtime" "^7.8.4" +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: version "1.4.3" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" @@ -6649,19 +6924,10 @@ safe-regex-test@^1.0.0: get-intrinsic "^1.1.3" is-regex "^1.1.4" -scheduler@0.24.0-canary-efb381bbf-20230505: - version "0.24.0-canary-efb381bbf-20230505" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz#5dddc60e29f91cd7f8b983d7ce4a99c2202d178f" - integrity sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA== - dependencies: - loose-envify "^1.1.0" - -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.25.0-rc-fb9a90fa48-20240614: + version "0.25.0-rc-fb9a90fa48-20240614" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0-rc-fb9a90fa48-20240614.tgz#9ee11063b7c0f47aef3fea53d9f1be3f13794dce" + integrity sha512-HHqQ/SqbeiDfXXVKgNxTpbQTD4n7IUb4hZATvHjp03jr3TF7igehCyHdOjeYTrzIseLO93cTTfSb5f4qWcirMQ== selfsigned@^2.4.1: version "2.4.1" @@ -6681,6 +6947,11 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== +semver@^7.1.3, semver@^7.6.0: + version "7.6.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13" + integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== + semver@^7.3.5, semver@^7.3.7, semver@^7.5.2: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" @@ -6688,13 +6959,6 @@ semver@^7.3.5, semver@^7.3.7, semver@^7.5.2: dependencies: lru-cache "^6.0.0" -semver@^7.5.4: - version "7.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" - integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== - dependencies: - lru-cache "^6.0.0" - send@0.18.0: version "0.18.0" resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" @@ -6839,11 +7103,6 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.3: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" @@ -7011,11 +7270,6 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -temp-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" - integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== - temp@^0.8.4: version "0.8.4" resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" @@ -7094,10 +7348,10 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== -ts-api-utils@^1.0.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.2.1.tgz#f716c7e027494629485b21c0df6180f4d08f5e8b" - integrity sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA== +ts-api-utils@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" + integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== tslib@^1.8.1: version "1.14.1" @@ -7166,11 +7420,6 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== - unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" @@ -7209,6 +7458,14 @@ unpipe@~1.0.0: resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== +update-browserslist-db@^1.0.16: + version "1.0.16" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356" + integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + update-browserslist-db@^1.0.9: version "1.0.10" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" @@ -7360,7 +7617,7 @@ write-file-atomic@^4.0.1: imurmurhash "^0.1.4" signal-exit "^3.0.7" -ws@^6.2.2: +ws@^6.2.2, ws@^6.2.3: version "6.2.3" resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.3.tgz#ccc96e4add5fd6fedbc491903075c85c5a11d9ee" integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA== From cb4e2c547a361ac71e732d9140f26e844dfae0a5 Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Thu, 27 Jun 2024 12:51:27 +0200 Subject: [PATCH 2/9] Make it compile & not crash --- .../react/RNGestureHandlerTouchEvent.kt | 2 +- android/src/main/jni/cpp-adapter.cpp | 14 ++++++++++---- apple/RNGestureHandlerModule.mm | 13 ++++++++++--- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt b/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt index 25ec4c40e8..67703c6398 100644 --- a/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +++ b/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt @@ -11,7 +11,7 @@ class RNGestureHandlerTouchEvent private constructor() : Event> init(handler: T) { - super.init(UIManagerHelper.getSurfaceId(handler.view), handler.view!!.id) + super.init(UIManagerHelper.getSurfaceId(handler.view!!), handler.view!!.id) extraData = createEventData(handler) coalescingKey = handler.eventCoalescingKey } diff --git a/android/src/main/jni/cpp-adapter.cpp b/android/src/main/jni/cpp-adapter.cpp index 17387ecd56..6f7d03ec3e 100644 --- a/android/src/main/jni/cpp-adapter.cpp +++ b/android/src/main/jni/cpp-adapter.cpp @@ -18,11 +18,17 @@ void decorateRuntime(jsi::Runtime &runtime) { if (!arguments[0].isObject()) { return jsi::Value::null(); } - auto shadowNode = arguments[0] - .asObject(runtime).getNativeState(runtime); - bool isFormsStackingContext = shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); - return jsi::Value(isFormsStackingContext); + auto arg = arguments[0].asObject(runtime); + + // TODO: this condition always fails? + if (arg.hasNativeState(runtime)) { + auto shadowNodeWrapper = arg.getNativeState(runtime); + bool isFormsStackingContext = shadowNodeWrapper->shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); + return jsi::Value(isFormsStackingContext); + } + + return jsi::Value(true); }); runtime.global().setProperty( runtime, "isFormsStackingContext", std::move(isFormsStackingContext)); diff --git a/apple/RNGestureHandlerModule.mm b/apple/RNGestureHandlerModule.mm index 9deb831812..c29d39ca87 100644 --- a/apple/RNGestureHandlerModule.mm +++ b/apple/RNGestureHandlerModule.mm @@ -99,10 +99,17 @@ void decorateRuntime(jsi::Runtime &runtime) if (!arguments[0].isObject()) { return jsi::Value::null(); } - auto shadowNode = arguments[0].asObject(runtime).getNativeState(runtime); - bool isFormsStackingContext = shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); - return jsi::Value(isFormsStackingContext); + auto arg = arguments[0].asObject(runtime); + + if (arg.hasNativeState(runtime)) { + auto shadowNodeWrapper = arg.getNativeState(runtime); + bool isFormsStackingContext = + shadowNodeWrapper->shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); + return jsi::Value(isFormsStackingContext); + } + + return jsi::Value(true); }); runtime.global().setProperty(runtime, "isFormsStackingContext", std::move(isFormsStackingContext)); } From 1fca7aec505a15bf6cb17897c6624e28c84c6e27 Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Thu, 27 Jun 2024 13:35:53 +0200 Subject: [PATCH 3/9] React 19 ref changes --- src/components/GestureButtons.tsx | 17 ++++++++--------- src/components/GestureComponents.tsx | 5 +++-- src/components/GestureComponents.web.tsx | 3 ++- src/components/GestureHandlerButton.web.tsx | 3 ++- .../touchables/TouchableWithoutFeedback.tsx | 3 ++- src/forwardRefCompat.tsx | 19 +++++++++++++++++++ src/handlers/createHandler.tsx | 6 +++--- src/handlers/createNativeWrapper.tsx | 3 ++- 8 files changed, 41 insertions(+), 18 deletions(-) create mode 100644 src/forwardRefCompat.tsx diff --git a/src/components/GestureButtons.tsx b/src/components/GestureButtons.tsx index 8c9a867635..52e0a30354 100644 --- a/src/components/GestureButtons.tsx +++ b/src/components/GestureButtons.tsx @@ -20,6 +20,7 @@ import { NativeViewGestureHandlerPayload, NativeViewGestureHandlerProps, } from '../handlers/NativeViewGestureHandler'; +import { forwardRef } from '../forwardRefCompat'; export interface RawButtonProps extends NativeViewGestureHandlerProps { /** @@ -244,10 +245,9 @@ class InnerBaseButton extends React.Component { } } -export const BaseButton = React.forwardRef< - any, - Omit ->((props, ref) => ); +export const BaseButton = forwardRef>( + (props, ref) => +); const AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton); @@ -313,10 +313,9 @@ class InnerRectButton extends React.Component { } } -export const RectButton = React.forwardRef< - any, - Omit ->((props, ref) => ); +export const RectButton = forwardRef>( + (props, ref) => +); class InnerBorderlessButton extends React.Component { static defaultProps = { @@ -356,7 +355,7 @@ class InnerBorderlessButton extends React.Component >((props, ref) => ); diff --git a/src/components/GestureComponents.tsx b/src/components/GestureComponents.tsx index 2a551b058d..dcfbd609ce 100644 --- a/src/components/GestureComponents.tsx +++ b/src/components/GestureComponents.tsx @@ -27,6 +27,7 @@ import { } from '../handlers/NativeViewGestureHandler'; import { toArray } from '../utils'; +import { forwardRef } from '../forwardRefCompat'; export const RefreshControl = createNativeWrapper(RNRefreshControl, { disallowInterruption: true, @@ -42,7 +43,7 @@ const GHScrollView = createNativeWrapper>( shouldCancelWhenOutside: false, } ); -export const ScrollView = React.forwardRef< +export const ScrollView = forwardRef< RNScrollView, RNScrollViewProps & NativeViewGestureHandlerProps >((props, ref) => { @@ -91,7 +92,7 @@ export const DrawerLayoutAndroid = createNativeWrapper< export type DrawerLayoutAndroid = typeof DrawerLayoutAndroid & RNDrawerLayoutAndroid; -export const FlatList = React.forwardRef((props, ref) => { +export const FlatList = forwardRef((props, ref) => { const refreshControlGestureRef = React.useRef(null); const { waitFor, refreshControl, ...rest } = props; diff --git a/src/components/GestureComponents.web.tsx b/src/components/GestureComponents.web.tsx index 6ab8ba63ef..91c166dd36 100644 --- a/src/components/GestureComponents.web.tsx +++ b/src/components/GestureComponents.web.tsx @@ -9,6 +9,7 @@ import { } from 'react-native'; import createNativeWrapper from '../handlers/createNativeWrapper'; +import { forwardRef } from '../forwardRefCompat'; export const ScrollView = createNativeWrapper(RNScrollView, { disallowInterruption: false, @@ -30,7 +31,7 @@ export const DrawerLayoutAndroid = () => { // on functional components export const RefreshControl = createNativeWrapper(View); -export const FlatList = React.forwardRef( +export const FlatList = forwardRef( (props: FlatListProps, ref: any) => ( ((props, ref) => ( +export default forwardRef((props, ref) => ( )); diff --git a/src/components/touchables/TouchableWithoutFeedback.tsx b/src/components/touchables/TouchableWithoutFeedback.tsx index 577e568a8a..d2222f18c6 100644 --- a/src/components/touchables/TouchableWithoutFeedback.tsx +++ b/src/components/touchables/TouchableWithoutFeedback.tsx @@ -1,10 +1,11 @@ import * as React from 'react'; import { PropsWithChildren } from 'react'; import GenericTouchable, { GenericTouchableProps } from './GenericTouchable'; +import { forwardRef } from '../../forwardRefCompat'; export type TouchableWithoutFeedbackProps = GenericTouchableProps; -const TouchableWithoutFeedback = React.forwardRef< +const TouchableWithoutFeedback = forwardRef< GenericTouchable, PropsWithChildren >((props, ref) => ); diff --git a/src/forwardRefCompat.tsx b/src/forwardRefCompat.tsx new file mode 100644 index 0000000000..9a89b5aa1d --- /dev/null +++ b/src/forwardRefCompat.tsx @@ -0,0 +1,19 @@ +import React from 'react'; + +let forwardRef: typeof React.forwardRef; + +// @ts-ignore React.createFactory was removed in React 0.19, we can rely on this to determine the version +if (React.createFactory) { + // React 0.18 + forwardRef = React.forwardRef; +} else { + // React 0.19 + // @ts-ignore The difference between this one and the one from React Native is $$typeof symbol + forwardRef = (render) => { + return ({ ref, ...rest }) => { + return render(rest as any, ref ?? null); + }; + }; +} + +export { forwardRef }; diff --git a/src/handlers/createHandler.tsx b/src/handlers/createHandler.tsx index 9803d32943..24fa0ea119 100644 --- a/src/handlers/createHandler.tsx +++ b/src/handlers/createHandler.tsx @@ -296,9 +296,9 @@ export default function createHandler< this.viewNode = node; const child = React.Children.only(this.props.children); - // TODO(TS) fix ref type - const { ref }: any = child; - if (ref !== null) { + // @ts-ignore React 19 moved ref to props and shows warning when trying to access it directly on a node + const ref: any = React.createFactory ? child?.ref : child?.props?.ref; + if (ref !== null && ref !== undefined) { if (typeof ref === 'function') { ref(node); } else { diff --git a/src/handlers/createNativeWrapper.tsx b/src/handlers/createNativeWrapper.tsx index 8dfc32c2b9..11d92dcda2 100644 --- a/src/handlers/createNativeWrapper.tsx +++ b/src/handlers/createNativeWrapper.tsx @@ -6,6 +6,7 @@ import { NativeViewGestureHandlerProps, nativeViewProps, } from './NativeViewGestureHandler'; +import { forwardRef } from '../forwardRefCompat'; /* * This array should consist of: @@ -24,7 +25,7 @@ export default function createNativeWrapper

( Component: React.ComponentType

, config: Readonly = {} ) { - const ComponentWrapper = React.forwardRef< + const ComponentWrapper = forwardRef< React.ComponentType, P & NativeViewGestureHandlerProps >((props, ref) => { From 82598e6fb23f8c214739b1a848d88749ebb13270 Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Thu, 27 Jun 2024 13:43:17 +0200 Subject: [PATCH 4/9] Turns out forward ref wrapper isn't necessarry --- src/components/GestureButtons.tsx | 17 +++++++++-------- src/components/GestureComponents.tsx | 5 ++--- src/components/GestureComponents.web.tsx | 3 +-- src/components/GestureHandlerButton.web.tsx | 3 +-- .../touchables/TouchableWithoutFeedback.tsx | 3 +-- src/forwardRefCompat.tsx | 19 ------------------- src/handlers/createNativeWrapper.tsx | 3 +-- 7 files changed, 15 insertions(+), 38 deletions(-) delete mode 100644 src/forwardRefCompat.tsx diff --git a/src/components/GestureButtons.tsx b/src/components/GestureButtons.tsx index 52e0a30354..8c9a867635 100644 --- a/src/components/GestureButtons.tsx +++ b/src/components/GestureButtons.tsx @@ -20,7 +20,6 @@ import { NativeViewGestureHandlerPayload, NativeViewGestureHandlerProps, } from '../handlers/NativeViewGestureHandler'; -import { forwardRef } from '../forwardRefCompat'; export interface RawButtonProps extends NativeViewGestureHandlerProps { /** @@ -245,9 +244,10 @@ class InnerBaseButton extends React.Component { } } -export const BaseButton = forwardRef>( - (props, ref) => -); +export const BaseButton = React.forwardRef< + any, + Omit +>((props, ref) => ); const AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton); @@ -313,9 +313,10 @@ class InnerRectButton extends React.Component { } } -export const RectButton = forwardRef>( - (props, ref) => -); +export const RectButton = React.forwardRef< + any, + Omit +>((props, ref) => ); class InnerBorderlessButton extends React.Component { static defaultProps = { @@ -355,7 +356,7 @@ class InnerBorderlessButton extends React.Component >((props, ref) => ); diff --git a/src/components/GestureComponents.tsx b/src/components/GestureComponents.tsx index dcfbd609ce..2a551b058d 100644 --- a/src/components/GestureComponents.tsx +++ b/src/components/GestureComponents.tsx @@ -27,7 +27,6 @@ import { } from '../handlers/NativeViewGestureHandler'; import { toArray } from '../utils'; -import { forwardRef } from '../forwardRefCompat'; export const RefreshControl = createNativeWrapper(RNRefreshControl, { disallowInterruption: true, @@ -43,7 +42,7 @@ const GHScrollView = createNativeWrapper>( shouldCancelWhenOutside: false, } ); -export const ScrollView = forwardRef< +export const ScrollView = React.forwardRef< RNScrollView, RNScrollViewProps & NativeViewGestureHandlerProps >((props, ref) => { @@ -92,7 +91,7 @@ export const DrawerLayoutAndroid = createNativeWrapper< export type DrawerLayoutAndroid = typeof DrawerLayoutAndroid & RNDrawerLayoutAndroid; -export const FlatList = forwardRef((props, ref) => { +export const FlatList = React.forwardRef((props, ref) => { const refreshControlGestureRef = React.useRef(null); const { waitFor, refreshControl, ...rest } = props; diff --git a/src/components/GestureComponents.web.tsx b/src/components/GestureComponents.web.tsx index 91c166dd36..6ab8ba63ef 100644 --- a/src/components/GestureComponents.web.tsx +++ b/src/components/GestureComponents.web.tsx @@ -9,7 +9,6 @@ import { } from 'react-native'; import createNativeWrapper from '../handlers/createNativeWrapper'; -import { forwardRef } from '../forwardRefCompat'; export const ScrollView = createNativeWrapper(RNScrollView, { disallowInterruption: false, @@ -31,7 +30,7 @@ export const DrawerLayoutAndroid = () => { // on functional components export const RefreshControl = createNativeWrapper(View); -export const FlatList = forwardRef( +export const FlatList = React.forwardRef( (props: FlatListProps, ref: any) => ( ((props, ref) => ( +export default React.forwardRef((props, ref) => ( )); diff --git a/src/components/touchables/TouchableWithoutFeedback.tsx b/src/components/touchables/TouchableWithoutFeedback.tsx index d2222f18c6..577e568a8a 100644 --- a/src/components/touchables/TouchableWithoutFeedback.tsx +++ b/src/components/touchables/TouchableWithoutFeedback.tsx @@ -1,11 +1,10 @@ import * as React from 'react'; import { PropsWithChildren } from 'react'; import GenericTouchable, { GenericTouchableProps } from './GenericTouchable'; -import { forwardRef } from '../../forwardRefCompat'; export type TouchableWithoutFeedbackProps = GenericTouchableProps; -const TouchableWithoutFeedback = forwardRef< +const TouchableWithoutFeedback = React.forwardRef< GenericTouchable, PropsWithChildren >((props, ref) => ); diff --git a/src/forwardRefCompat.tsx b/src/forwardRefCompat.tsx deleted file mode 100644 index 9a89b5aa1d..0000000000 --- a/src/forwardRefCompat.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; - -let forwardRef: typeof React.forwardRef; - -// @ts-ignore React.createFactory was removed in React 0.19, we can rely on this to determine the version -if (React.createFactory) { - // React 0.18 - forwardRef = React.forwardRef; -} else { - // React 0.19 - // @ts-ignore The difference between this one and the one from React Native is $$typeof symbol - forwardRef = (render) => { - return ({ ref, ...rest }) => { - return render(rest as any, ref ?? null); - }; - }; -} - -export { forwardRef }; diff --git a/src/handlers/createNativeWrapper.tsx b/src/handlers/createNativeWrapper.tsx index 11d92dcda2..8dfc32c2b9 100644 --- a/src/handlers/createNativeWrapper.tsx +++ b/src/handlers/createNativeWrapper.tsx @@ -6,7 +6,6 @@ import { NativeViewGestureHandlerProps, nativeViewProps, } from './NativeViewGestureHandler'; -import { forwardRef } from '../forwardRefCompat'; /* * This array should consist of: @@ -25,7 +24,7 @@ export default function createNativeWrapper

( Component: React.ComponentType

, config: Readonly = {} ) { - const ComponentWrapper = forwardRef< + const ComponentWrapper = React.forwardRef< React.ComponentType, P & NativeViewGestureHandlerProps >((props, ref) => { From f237ecf962bf40141cd3af8e4854e23721c5d6a6 Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Fri, 5 Jul 2024 08:44:29 +0200 Subject: [PATCH 5/9] Update android/src/main/jni/cpp-adapter.cpp Co-authored-by: Tomek Zawadzki --- android/src/main/jni/cpp-adapter.cpp | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/android/src/main/jni/cpp-adapter.cpp b/android/src/main/jni/cpp-adapter.cpp index 6f7d03ec3e..4d4c6c7b00 100644 --- a/android/src/main/jni/cpp-adapter.cpp +++ b/android/src/main/jni/cpp-adapter.cpp @@ -19,16 +19,12 @@ void decorateRuntime(jsi::Runtime &runtime) { return jsi::Value::null(); } - auto arg = arguments[0].asObject(runtime); + auto shadowNodeWrapper = arguments[0] + .asObject(runtime).getNativeState(runtime); + bool isFormsStackingContext = shadowNodeWrapper->shadowNode->getTraits() + .check(ShadowNodeTraits::FormsStackingContext); - // TODO: this condition always fails? - if (arg.hasNativeState(runtime)) { - auto shadowNodeWrapper = arg.getNativeState(runtime); - bool isFormsStackingContext = shadowNodeWrapper->shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); - return jsi::Value(isFormsStackingContext); - } - - return jsi::Value(true); + return jsi::Value(isFormsStackingContext); }); runtime.global().setProperty( runtime, "isFormsStackingContext", std::move(isFormsStackingContext)); From 26e45291fadc93ee96a18108fe136c3d70d84bcc Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Thu, 11 Jul 2024 10:23:10 +0200 Subject: [PATCH 6/9] Bump to rc4 --- FabricExample/ios/Podfile.lock | 522 ++++++++++++++++----------------- FabricExample/package.json | 10 +- FabricExample/yarn.lock | 178 +++++------ 3 files changed, 355 insertions(+), 355 deletions(-) diff --git a/FabricExample/ios/Podfile.lock b/FabricExample/ios/Podfile.lock index 46b564f29e..e665d22e98 100644 --- a/FabricExample/ios/Podfile.lock +++ b/FabricExample/ios/Podfile.lock @@ -1,12 +1,12 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.75.0-rc.2) + - FBLazyVector (0.75.0-rc.4) - fmt (9.1.0) - glog (0.3.5) - - hermes-engine (0.75.0-rc.2): - - hermes-engine/Pre-built (= 0.75.0-rc.2) - - hermes-engine/Pre-built (0.75.0-rc.2) + - hermes-engine (0.75.0-rc.4): + - hermes-engine/Pre-built (= 0.75.0-rc.4) + - hermes-engine/Pre-built (0.75.0-rc.4) - RCT-Folly (2024.01.01.00): - boost - DoubleConversion @@ -23,32 +23,32 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.75.0-rc.2) - - RCTRequired (0.75.0-rc.2) - - RCTTypeSafety (0.75.0-rc.2): - - FBLazyVector (= 0.75.0-rc.2) - - RCTRequired (= 0.75.0-rc.2) - - React-Core (= 0.75.0-rc.2) - - React (0.75.0-rc.2): - - React-Core (= 0.75.0-rc.2) - - React-Core/DevSupport (= 0.75.0-rc.2) - - React-Core/RCTWebSocket (= 0.75.0-rc.2) - - React-RCTActionSheet (= 0.75.0-rc.2) - - React-RCTAnimation (= 0.75.0-rc.2) - - React-RCTBlob (= 0.75.0-rc.2) - - React-RCTImage (= 0.75.0-rc.2) - - React-RCTLinking (= 0.75.0-rc.2) - - React-RCTNetwork (= 0.75.0-rc.2) - - React-RCTSettings (= 0.75.0-rc.2) - - React-RCTText (= 0.75.0-rc.2) - - React-RCTVibration (= 0.75.0-rc.2) - - React-callinvoker (0.75.0-rc.2) - - React-Core (0.75.0-rc.2): + - RCTDeprecation (0.75.0-rc.4) + - RCTRequired (0.75.0-rc.4) + - RCTTypeSafety (0.75.0-rc.4): + - FBLazyVector (= 0.75.0-rc.4) + - RCTRequired (= 0.75.0-rc.4) + - React-Core (= 0.75.0-rc.4) + - React (0.75.0-rc.4): + - React-Core (= 0.75.0-rc.4) + - React-Core/DevSupport (= 0.75.0-rc.4) + - React-Core/RCTWebSocket (= 0.75.0-rc.4) + - React-RCTActionSheet (= 0.75.0-rc.4) + - React-RCTAnimation (= 0.75.0-rc.4) + - React-RCTBlob (= 0.75.0-rc.4) + - React-RCTImage (= 0.75.0-rc.4) + - React-RCTLinking (= 0.75.0-rc.4) + - React-RCTNetwork (= 0.75.0-rc.4) + - React-RCTSettings (= 0.75.0-rc.4) + - React-RCTText (= 0.75.0-rc.4) + - React-RCTVibration (= 0.75.0-rc.4) + - React-callinvoker (0.75.0-rc.4) + - React-Core (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.2) + - React-Core/Default (= 0.75.0-rc.4) - React-cxxreact - React-featureflags - React-hermes @@ -60,7 +60,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.75.0-rc.2): + - React-Core/CoreModulesHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -77,7 +77,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.75.0-rc.2): + - React-Core/Default (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -93,13 +93,13 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.75.0-rc.2): + - React-Core/DevSupport (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.2) - - React-Core/RCTWebSocket (= 0.75.0-rc.2) + - React-Core/Default (= 0.75.0-rc.4) + - React-Core/RCTWebSocket (= 0.75.0-rc.4) - React-cxxreact - React-featureflags - React-hermes @@ -111,7 +111,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.75.0-rc.2): + - React-Core/RCTActionSheetHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -128,7 +128,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.75.0-rc.2): + - React-Core/RCTAnimationHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -145,7 +145,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.75.0-rc.2): + - React-Core/RCTBlobHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -162,7 +162,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.75.0-rc.2): + - React-Core/RCTImageHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -179,7 +179,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.75.0-rc.2): + - React-Core/RCTLinkingHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -196,7 +196,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.75.0-rc.2): + - React-Core/RCTNetworkHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -213,7 +213,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.75.0-rc.2): + - React-Core/RCTSettingsHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -230,7 +230,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.75.0-rc.2): + - React-Core/RCTTextHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -247,7 +247,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.75.0-rc.2): + - React-Core/RCTVibrationHeaders (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -264,12 +264,12 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.75.0-rc.2): + - React-Core/RCTWebSocket (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.2) + - React-Core/Default (= 0.75.0-rc.4) - React-cxxreact - React-featureflags - React-hermes @@ -281,36 +281,36 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.75.0-rc.2): + - React-CoreModules (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.75.0-rc.2) - - React-Core/CoreModulesHeaders (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) + - RCTTypeSafety (= 0.75.0-rc.4) + - React-Core/CoreModulesHeaders (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.75.0-rc.2) + - React-RCTImage (= 0.75.0-rc.4) - ReactCodegen - ReactCommon - SocketRocket (= 0.7.0) - - React-cxxreact (0.75.0-rc.2): + - React-cxxreact (0.75.0-rc.4): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.2) - - React-debug (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) + - React-callinvoker (= 0.75.0-rc.4) + - React-debug (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) - React-jsinspector - - React-logger (= 0.75.0-rc.2) - - React-perflogger (= 0.75.0-rc.2) - - React-runtimeexecutor (= 0.75.0-rc.2) - - React-debug (0.75.0-rc.2) - - React-defaultsnativemodule (0.75.0-rc.2): + - React-logger (= 0.75.0-rc.4) + - React-perflogger (= 0.75.0-rc.4) + - React-runtimeexecutor (= 0.75.0-rc.4) + - React-debug (0.75.0-rc.4) + - React-defaultsnativemodule (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine @@ -335,7 +335,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-domnativemodule (0.75.0-rc.2): + - React-domnativemodule (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine @@ -357,7 +357,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.75.0-rc.2): + - React-Fabric (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -368,21 +368,21 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.75.0-rc.2) - - React-Fabric/attributedstring (= 0.75.0-rc.2) - - React-Fabric/componentregistry (= 0.75.0-rc.2) - - React-Fabric/componentregistrynative (= 0.75.0-rc.2) - - React-Fabric/components (= 0.75.0-rc.2) - - React-Fabric/core (= 0.75.0-rc.2) - - React-Fabric/dom (= 0.75.0-rc.2) - - React-Fabric/imagemanager (= 0.75.0-rc.2) - - React-Fabric/leakchecker (= 0.75.0-rc.2) - - React-Fabric/mounting (= 0.75.0-rc.2) - - React-Fabric/observers (= 0.75.0-rc.2) - - React-Fabric/scheduler (= 0.75.0-rc.2) - - React-Fabric/telemetry (= 0.75.0-rc.2) - - React-Fabric/templateprocessor (= 0.75.0-rc.2) - - React-Fabric/uimanager (= 0.75.0-rc.2) + - React-Fabric/animations (= 0.75.0-rc.4) + - React-Fabric/attributedstring (= 0.75.0-rc.4) + - React-Fabric/componentregistry (= 0.75.0-rc.4) + - React-Fabric/componentregistrynative (= 0.75.0-rc.4) + - React-Fabric/components (= 0.75.0-rc.4) + - React-Fabric/core (= 0.75.0-rc.4) + - React-Fabric/dom (= 0.75.0-rc.4) + - React-Fabric/imagemanager (= 0.75.0-rc.4) + - React-Fabric/leakchecker (= 0.75.0-rc.4) + - React-Fabric/mounting (= 0.75.0-rc.4) + - React-Fabric/observers (= 0.75.0-rc.4) + - React-Fabric/scheduler (= 0.75.0-rc.4) + - React-Fabric/telemetry (= 0.75.0-rc.4) + - React-Fabric/templateprocessor (= 0.75.0-rc.4) + - React-Fabric/uimanager (= 0.75.0-rc.4) - React-featureflags - React-graphics - React-jsi @@ -392,7 +392,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.75.0-rc.2): + - React-Fabric/animations (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -412,7 +412,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.75.0-rc.2): + - React-Fabric/attributedstring (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -432,7 +432,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.75.0-rc.2): + - React-Fabric/componentregistry (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -452,7 +452,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.75.0-rc.2): + - React-Fabric/componentregistrynative (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -472,7 +472,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.75.0-rc.2): + - React-Fabric/components (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -483,9 +483,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.2) - - React-Fabric/components/root (= 0.75.0-rc.2) - - React-Fabric/components/view (= 0.75.0-rc.2) + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.4) + - React-Fabric/components/root (= 0.75.0-rc.4) + - React-Fabric/components/view (= 0.75.0-rc.4) - React-featureflags - React-graphics - React-jsi @@ -495,7 +495,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.2): + - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -515,7 +515,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.75.0-rc.2): + - React-Fabric/components/root (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -535,7 +535,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.75.0-rc.2): + - React-Fabric/components/view (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -556,7 +556,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.75.0-rc.2): + - React-Fabric/core (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -576,7 +576,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.75.0-rc.2): + - React-Fabric/dom (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -596,7 +596,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.75.0-rc.2): + - React-Fabric/imagemanager (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -616,7 +616,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.75.0-rc.2): + - React-Fabric/leakchecker (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -636,7 +636,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.75.0-rc.2): + - React-Fabric/mounting (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -656,7 +656,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.75.0-rc.2): + - React-Fabric/observers (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -667,7 +667,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.75.0-rc.2) + - React-Fabric/observers/events (= 0.75.0-rc.4) - React-featureflags - React-graphics - React-jsi @@ -677,7 +677,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.75.0-rc.2): + - React-Fabric/observers/events (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -697,7 +697,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.75.0-rc.2): + - React-Fabric/scheduler (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -719,7 +719,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.75.0-rc.2): + - React-Fabric/telemetry (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -739,7 +739,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.75.0-rc.2): + - React-Fabric/templateprocessor (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -759,7 +759,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.75.0-rc.2): + - React-Fabric/uimanager (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -770,7 +770,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.75.0-rc.2) + - React-Fabric/uimanager/consistency (= 0.75.0-rc.4) - React-featureflags - React-graphics - React-jsi @@ -781,7 +781,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.75.0-rc.2): + - React-Fabric/uimanager/consistency (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -802,7 +802,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.75.0-rc.2): + - React-FabricComponents (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -814,8 +814,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.75.0-rc.2) - - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.2) + - React-FabricComponents/components (= 0.75.0-rc.4) + - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.4) - React-featureflags - React-graphics - React-jsi @@ -827,7 +827,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.75.0-rc.2): + - React-FabricComponents/components (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -839,15 +839,15 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.2) - - React-FabricComponents/components/iostextinput (= 0.75.0-rc.2) - - React-FabricComponents/components/modal (= 0.75.0-rc.2) - - React-FabricComponents/components/rncore (= 0.75.0-rc.2) - - React-FabricComponents/components/safeareaview (= 0.75.0-rc.2) - - React-FabricComponents/components/scrollview (= 0.75.0-rc.2) - - React-FabricComponents/components/text (= 0.75.0-rc.2) - - React-FabricComponents/components/textinput (= 0.75.0-rc.2) - - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.2) + - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.4) + - React-FabricComponents/components/iostextinput (= 0.75.0-rc.4) + - React-FabricComponents/components/modal (= 0.75.0-rc.4) + - React-FabricComponents/components/rncore (= 0.75.0-rc.4) + - React-FabricComponents/components/safeareaview (= 0.75.0-rc.4) + - React-FabricComponents/components/scrollview (= 0.75.0-rc.4) + - React-FabricComponents/components/text (= 0.75.0-rc.4) + - React-FabricComponents/components/textinput (= 0.75.0-rc.4) + - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.4) - React-featureflags - React-graphics - React-jsi @@ -859,7 +859,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.75.0-rc.2): + - React-FabricComponents/components/inputaccessory (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -882,7 +882,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.75.0-rc.2): + - React-FabricComponents/components/iostextinput (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -905,7 +905,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.75.0-rc.2): + - React-FabricComponents/components/modal (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -928,7 +928,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.75.0-rc.2): + - React-FabricComponents/components/rncore (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -951,7 +951,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.75.0-rc.2): + - React-FabricComponents/components/safeareaview (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -974,7 +974,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.75.0-rc.2): + - React-FabricComponents/components/scrollview (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -997,7 +997,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.75.0-rc.2): + - React-FabricComponents/components/text (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1020,7 +1020,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.75.0-rc.2): + - React-FabricComponents/components/textinput (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1043,7 +1043,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.75.0-rc.2): + - React-FabricComponents/components/unimplementedview (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1066,7 +1066,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.75.0-rc.2): + - React-FabricComponents/textlayoutmanager (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1089,26 +1089,26 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.75.0-rc.2): + - React-FabricImage (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.75.0-rc.2) - - RCTTypeSafety (= 0.75.0-rc.2) + - RCTRequired (= 0.75.0-rc.4) + - RCTTypeSafety (= 0.75.0-rc.4) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.75.0-rc.2) + - React-jsiexecutor (= 0.75.0-rc.4) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.75.0-rc.2) - - React-featureflagsnativemodule (0.75.0-rc.2): + - React-featureflags (0.75.0-rc.4) + - React-featureflagsnativemodule (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine @@ -1129,7 +1129,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-graphics (0.75.0-rc.2): + - React-graphics (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1137,19 +1137,19 @@ PODS: - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.75.0-rc.2): + - React-hermes (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.0-rc.2) + - React-cxxreact (= 0.75.0-rc.4) - React-jsi - - React-jsiexecutor (= 0.75.0-rc.2) + - React-jsiexecutor (= 0.75.0-rc.4) - React-jsinspector - - React-perflogger (= 0.75.0-rc.2) + - React-perflogger (= 0.75.0-rc.4) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.75.0-rc.2): + - React-idlecallbacksnativemodule (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine @@ -1171,7 +1171,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-ImageManager (0.75.0-rc.2): + - React-ImageManager (0.75.0-rc.4): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1180,43 +1180,43 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.75.0-rc.2): + - React-jserrorhandler (0.75.0-rc.4): - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-jsi (0.75.0-rc.2): + - React-jsi (0.75.0-rc.4): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.75.0-rc.2): + - React-jsiexecutor (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) + - React-cxxreact (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) - React-jsinspector - - React-perflogger (= 0.75.0-rc.2) - - React-jsinspector (0.75.0-rc.2): + - React-perflogger (= 0.75.0-rc.4) + - React-jsinspector (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-runtimeexecutor (= 0.75.0-rc.2) - - React-jsitracing (0.75.0-rc.2): + - React-runtimeexecutor (= 0.75.0-rc.4) + - React-jsitracing (0.75.0-rc.4): - React-jsi - - React-logger (0.75.0-rc.2): + - React-logger (0.75.0-rc.4): - glog - - React-Mapbuffer (0.75.0-rc.2): + - React-Mapbuffer (0.75.0-rc.4): - glog - React-debug - - React-microtasksnativemodule (0.75.0-rc.2): + - React-microtasksnativemodule (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine @@ -1237,8 +1237,8 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.75.0-rc.2) - - React-NativeModulesApple (0.75.0-rc.2): + - React-nativeconfig (0.75.0-rc.4) + - React-NativeModulesApple (0.75.0-rc.4): - glog - hermes-engine - React-callinvoker @@ -1249,13 +1249,13 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.75.0-rc.2) - - React-performancetimeline (0.75.0-rc.2): + - React-perflogger (0.75.0-rc.4) + - React-performancetimeline (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - React-cxxreact - - React-RCTActionSheet (0.75.0-rc.2): - - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.2) - - React-RCTAnimation (0.75.0-rc.2): + - React-RCTActionSheet (0.75.0-rc.4): + - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.4) + - React-RCTAnimation (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders @@ -1263,7 +1263,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.75.0-rc.2): + - React-RCTAppDelegate (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1288,7 +1288,7 @@ PODS: - React-utils - ReactCodegen - ReactCommon - - React-RCTBlob (0.75.0-rc.2): + - React-RCTBlob (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - hermes-engine @@ -1301,7 +1301,7 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTFabric (0.75.0-rc.2): + - React-RCTFabric (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1324,7 +1324,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.75.0-rc.2): + - React-RCTImage (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTImageHeaders @@ -1333,14 +1333,14 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTLinking (0.75.0-rc.2): - - React-Core/RCTLinkingHeaders (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) + - React-RCTLinking (0.75.0-rc.4): + - React-Core/RCTLinkingHeaders (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) - React-NativeModulesApple - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.75.0-rc.2) - - React-RCTNetwork (0.75.0-rc.2): + - ReactCommon/turbomodule/core (= 0.75.0-rc.4) + - React-RCTNetwork (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders @@ -1348,7 +1348,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTSettings (0.75.0-rc.2): + - React-RCTSettings (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders @@ -1356,24 +1356,24 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTText (0.75.0-rc.2): - - React-Core/RCTTextHeaders (= 0.75.0-rc.2) + - React-RCTText (0.75.0-rc.4): + - React-Core/RCTTextHeaders (= 0.75.0-rc.4) - Yoga - - React-RCTVibration (0.75.0-rc.2): + - React-RCTVibration (0.75.0-rc.4): - RCT-Folly (= 2024.01.01.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-rendererconsistency (0.75.0-rc.2) - - React-rendererdebug (0.75.0-rc.2): + - React-rendererconsistency (0.75.0-rc.4) + - React-rendererdebug (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.75.0-rc.2) - - React-RuntimeApple (0.75.0-rc.2): + - React-rncore (0.75.0-rc.4) + - React-RuntimeApple (0.75.0-rc.4): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker @@ -1391,7 +1391,7 @@ PODS: - React-runtimeexecutor - React-RuntimeHermes - React-utils - - React-RuntimeCore (0.75.0-rc.2): + - React-RuntimeCore (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1404,9 +1404,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.75.0-rc.2): - - React-jsi (= 0.75.0-rc.2) - - React-RuntimeHermes (0.75.0-rc.2): + - React-runtimeexecutor (0.75.0-rc.4): + - React-jsi (= 0.75.0-rc.4) + - React-RuntimeHermes (0.75.0-rc.4): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-featureflags @@ -1417,7 +1417,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.75.0-rc.2): + - React-runtimescheduler (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -1430,13 +1430,13 @@ PODS: - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.75.0-rc.2): + - React-utils (0.75.0-rc.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsi (= 0.75.0-rc.2) - - ReactCodegen (0.75.0-rc.2): + - React-jsi (= 0.75.0-rc.4) + - ReactCodegen (0.75.0-rc.4): - DoubleConversion - glog - hermes-engine @@ -1456,46 +1456,46 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.75.0-rc.2): - - ReactCommon/turbomodule (= 0.75.0-rc.2) - - ReactCommon/turbomodule (0.75.0-rc.2): + - ReactCommon (0.75.0-rc.4): + - ReactCommon/turbomodule (= 0.75.0-rc.4) + - ReactCommon/turbomodule (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.2) - - React-cxxreact (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) - - React-logger (= 0.75.0-rc.2) - - React-perflogger (= 0.75.0-rc.2) - - ReactCommon/turbomodule/bridging (= 0.75.0-rc.2) - - ReactCommon/turbomodule/core (= 0.75.0-rc.2) - - ReactCommon/turbomodule/bridging (0.75.0-rc.2): + - React-callinvoker (= 0.75.0-rc.4) + - React-cxxreact (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) + - React-logger (= 0.75.0-rc.4) + - React-perflogger (= 0.75.0-rc.4) + - ReactCommon/turbomodule/bridging (= 0.75.0-rc.4) + - ReactCommon/turbomodule/core (= 0.75.0-rc.4) + - ReactCommon/turbomodule/bridging (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.2) - - React-cxxreact (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) - - React-logger (= 0.75.0-rc.2) - - React-perflogger (= 0.75.0-rc.2) - - ReactCommon/turbomodule/core (0.75.0-rc.2): + - React-callinvoker (= 0.75.0-rc.4) + - React-cxxreact (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) + - React-logger (= 0.75.0-rc.4) + - React-perflogger (= 0.75.0-rc.4) + - ReactCommon/turbomodule/core (0.75.0-rc.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.2) - - React-cxxreact (= 0.75.0-rc.2) - - React-debug (= 0.75.0-rc.2) - - React-featureflags (= 0.75.0-rc.2) - - React-jsi (= 0.75.0-rc.2) - - React-logger (= 0.75.0-rc.2) - - React-perflogger (= 0.75.0-rc.2) - - React-utils (= 0.75.0-rc.2) + - React-callinvoker (= 0.75.0-rc.4) + - React-cxxreact (= 0.75.0-rc.4) + - React-debug (= 0.75.0-rc.4) + - React-featureflags (= 0.75.0-rc.4) + - React-jsi (= 0.75.0-rc.4) + - React-logger (= 0.75.0-rc.4) + - React-perflogger (= 0.75.0-rc.4) + - React-utils (= 0.75.0-rc.4) - RNGestureHandler (2.17.1): - DoubleConversion - glog @@ -1604,7 +1604,7 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-06-17-RNv0.75.0-c2c4ee7dfcf4b006268ee215b63f79e9cbeedcf4 + :tag: hermes-2024-07-01-RNv0.75.0-1edbe36ce92fef2c4d427f5c4e104f2758f4b692 RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: @@ -1723,68 +1723,68 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 4cb898d0bf20404aab1850c656dcea009429d6c1 DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 - FBLazyVector: bc6824d4d258dcc02d6e4115e09eb96d93e6a9ed + FBLazyVector: abd8ca0c46f3123c35991eab132ce1cc5478a496 fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 glog: 69ef571f3de08433d766d614c73a9838a06bf7eb - hermes-engine: d5fd477f592d499f4d94612671d3daf3e1b4ba28 + hermes-engine: 6f5b6ffaedbbed262e36f6367d91068231204cbf RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740 - RCTDeprecation: ceaf98f63a0386c79f99322190b0688b4a50d082 - RCTRequired: cab142bdf5441acdfc75fd28013455371457d11e - RCTTypeSafety: 410e547c7179edd6f14ca481638f4e78abe13383 - React: b1c7193139a582b8001b774a5b5f3ef85e86f0c1 - React-callinvoker: fdb22bb9a657d4312c018740664fb3e4e2a10c52 - React-Core: 18648faf3a95ac0d7bf4a62ca9fa8afc47641b3d - React-CoreModules: df177cab93aea5980cfbc622c0d4739822537874 - React-cxxreact: cf01b1fc6299c00ad138d5480bf64bd8606517ec - React-debug: 2ecad5b214b5f35ea49cd9138593eb724595c5b4 - React-defaultsnativemodule: 42abb7057edaaeb93dae68c681ca22a983912806 - React-domnativemodule: 1a6ed843c4c3d7e5abc179f80c1e72bc29800742 - React-Fabric: 8c235d1223d56de6112a80db946d1a606422d4c6 - React-FabricComponents: f2c19e0526ac7523dc915b3f411e243b08dd373b - React-FabricImage: 5296ccb7859113ea1d22276ed4b6c1e71e5aa152 - React-featureflags: 37b7ef04ebf572436ff8acf3761767fab6eb8f24 - React-featureflagsnativemodule: 89de4fd4eb075be7fb3a2480c8bf9017da290a3e - React-graphics: 3532cc34f170d1e14dc34244a3c0c4b8bf65aafd - React-hermes: a0cdac1cfdafcebe9b306f5c939d25535b1c9a91 - React-idlecallbacksnativemodule: 72393a42eb547071e19abb1e2b32fe78d7bd5a77 - React-ImageManager: 2d1e8f5adf154b1279b87e4823abb3bdf42134ce - React-jserrorhandler: 0e788d649ef1380513eb31aea8f893db819cb31c - React-jsi: de4fa78dc49b87bce802df6614b5a61ea6357142 - React-jsiexecutor: d805124f4381e17642edf472bcf9ec871cce9d35 - React-jsinspector: 432916fedd77319e0b194456da8a565c768777a1 - React-jsitracing: 7f621064fec85ae24dc4b6c535c0596150044df7 - React-logger: cb4d92b9be4bb17c1b06e744aabb6050e698d99c - React-Mapbuffer: 1588662ee7b5409a320e20e96f5b02698fa16a3c - React-microtasksnativemodule: 4d7b18a8d7b75550bcffe2812a864bfe67e3d9e5 - React-nativeconfig: c2d74b45e79321898409eba6c99592fe76d505b5 - React-NativeModulesApple: 397450c2d8fc900823f4a76ebad211230ffdffc6 - React-perflogger: 1ac7f172cded306cd5383fdf407d53e3778fcc31 - React-performancetimeline: 1e35a9ef949f2fe109b9726553782521dbc3a419 - React-RCTActionSheet: c03bf9d40949aeb145d17c1a896174c8f11c6d0b - React-RCTAnimation: a94c49a018c00cb3a3c44e8885350fcbedf70634 - React-RCTAppDelegate: 898287769b48c90b3c3ed2e80ea595b874c498e1 - React-RCTBlob: d14c29655cccb05d6c646e42eb19b77bb9b5beaf - React-RCTFabric: 5b57fe981e93bab7db3be6fc7d7b1dbd59c6ea57 - React-RCTImage: b1d8af4665f66995d7a85c5ceaf292e06a363582 - React-RCTLinking: 772e9a129d41a2fe26682ce0b381088846c36d02 - React-RCTNetwork: 187dc9ac475eb472d90ad081989a505b5b44e946 - React-RCTSettings: 8b664365e955a2405294c8ad794131547212ff51 - React-RCTText: a8f5c9af271cc2b89c26b50f521646e02b5cb518 - React-RCTVibration: 50e0dd066fed5087aeec2c785dce3e873eb2265a - React-rendererconsistency: ef7dab0f9564396973a24028cdf2be0472a57344 - React-rendererdebug: 22c68617130deb98f866b2b596c3e8f3aa7116a1 - React-rncore: 590391113fc0e9990378ddd526d4a2175b41caad - React-RuntimeApple: 64134c4881f6d1058da9ad2e399996fb69a7e8fd - React-RuntimeCore: 6a776fb2ce9de1a1c0e9f35170507e5443238d6e - React-runtimeexecutor: f4183eb2b35227d74c9a4a3cc7b1361dfa0efb81 - React-RuntimeHermes: 49974a6f05ded7e3f123e5dee1902b873465102a - React-runtimescheduler: 79321179726b3f274d036c669c4d351f4a4ab933 - React-utils: 1adc0800b6e9fd0c69540eee4a7501f29f4d3a88 - ReactCodegen: 43004925e3cd918f86e532a07c3999f3489e09bf - ReactCommon: aba6076ebe8b3a16cab4fae5b3e6d4aa60def61f + RCTDeprecation: 3c7e2ec22d9faa9ea271c60232b197f871d033d8 + RCTRequired: 5b0d43d7ad21a98d94ba6631c46664edefd7e215 + RCTTypeSafety: 5c24dd64651dd4f48fe4909ef3ab201f9e39bfd6 + React: 4902992e5ab4d0c58e4b264d74509586d6d2bc23 + React-callinvoker: 78ebe7b5fa81868ff88628ecb62a8ab8116fce1f + React-Core: 2835b279d46067161c4ffa3639402e3707367c00 + React-CoreModules: fa947cc15bf6b4517ade803bb06c024ca4a58df1 + React-cxxreact: d1937a1448653efb62e00dde5028559fd541a79a + React-debug: 022b1f8c5c48e9e755ef9db15fe434a45c07b487 + React-defaultsnativemodule: ea5a7447a15bd6e2f93f2c1dbddd2cbe9fd22e4b + React-domnativemodule: b04f400886069a7e755752e26a03d33c1bce5a4d + React-Fabric: 100f6f963fb1b92e7d6f65bf8d38170b11e4adf0 + React-FabricComponents: e83b713e6176ed9b5fd24ebf637b6bd1ef394a22 + React-FabricImage: 53ad95b2bfb947678d4108b8bc669433c71f4fcf + React-featureflags: 5ccbb1254347cb223c5286291737dca4f8a596a5 + React-featureflagsnativemodule: ac5d2cbe8a990ddaa1c2f20e1039a89358b9b214 + React-graphics: bf3945355fde57a0ebfd087e12283ad6e809bc30 + React-hermes: 91ac71b7998e0c692ce62d4426400c952a7d4334 + React-idlecallbacksnativemodule: 9951b913d445d9209b8300b3fd5bf6f2297c312b + React-ImageManager: c0c6af9477dc21e9c13abe7d6e12e8eb580c8d98 + React-jserrorhandler: 5535fb12e2cb4854ff5ba69297fde5a1ad7dc9f2 + React-jsi: 804711b7f34559f4e6659281a8ba97fd1f16fdce + React-jsiexecutor: 153150c393d8c361cc1263994e4825c6acb4afaf + React-jsinspector: 7b7d3515362f17a2bb111685748b70e4c85696ac + React-jsitracing: 51a40ea8a59cd77c568c31f084de0fffc2e52d9d + React-logger: 4519165efa410d66bd66cfcc3d1affaab6328505 + React-Mapbuffer: 9296d429e276349c7191b02aea83290e46023597 + React-microtasksnativemodule: 4fd6ef9b81209ab7bc51d6144fe899823c7cf5de + React-nativeconfig: 19c11c393ea8d14e3e172df7f97a909014a6ec11 + React-NativeModulesApple: c254c827b10bdffba1f0c6a5d952a9cb50b5d00c + React-perflogger: ed334ad2e4363e9a4c593473030e0be2263e1165 + React-performancetimeline: 124ccd9565cae0428d6e6024e55ade0a7b92aaa3 + React-RCTActionSheet: 391c1ef2a5928adb1fb0d75fa951c3f619628a2c + React-RCTAnimation: 9d472c477c4197fb8391e518a1b579b57bc25436 + React-RCTAppDelegate: cc5b2fe8266e56b83ab43863b824af2e09e2dc38 + React-RCTBlob: 7e7e5452a36e0736fced341153ba526fb6ef161c + React-RCTFabric: 7f99cf1f659ad97343576061f1fea07aefeb5444 + React-RCTImage: c9bcd8b3d539c598e546e664eac6b503d666d153 + React-RCTLinking: 28a05890cee1b1cc77d77950ee91958c2bc6961d + React-RCTNetwork: bca47ea5eddfe695144568f706c6ca291262df67 + React-RCTSettings: 110716a4bdda4f90128c1723082b0db897950d71 + React-RCTText: bdae984aef89223b32a13a66ab7cd387eae00307 + React-RCTVibration: 2f967ac4659562c96d597db499863a5b5f2ee368 + React-rendererconsistency: f63337474af1da1baf5fa7d8674d0b011167ff4b + React-rendererdebug: 9bcd00296b8c0556b107222ccfd5f16941d0d59a + React-rncore: d9d0b61606456e3f5ce53ada54ddc556eaaeb674 + React-RuntimeApple: e76d604bbb9edc492771607b653493295f46eaa3 + React-RuntimeCore: ad246b49aa8fdd2fef7aec9af5b009d3db162114 + React-runtimeexecutor: 4ab42f130e3bc5c4fe34772c94262dc610fd22fd + React-RuntimeHermes: 9039b59043732a99ef5446750f83d9a101819127 + React-runtimescheduler: 63e05c97cfefa6c3ec18d22af4cbcf41142163ab + React-utils: 656d5c9d6569519f3f6e4168e99c54fb5a2d3363 + ReactCodegen: 66b9d409aab4b63699db598dbeb91c74e2e94c97 + ReactCommon: 7b8080ee8edb31deaa03fb2c3877bc98cee834e7 RNGestureHandler: f6a669a7d4ed470acebf8637d347eb52ae07d401 SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d - Yoga: e6e2771038ae851f1e660ba208dbbeb9d341ed28 + Yoga: 7a6e39b87687ab57cf466f72c97af32cc5a85130 PODFILE CHECKSUM: 2938316990faaa0507be8ddd9716fed018b28bde diff --git a/FabricExample/package.json b/FabricExample/package.json index 9d3e31ab59..cc844bbb95 100644 --- a/FabricExample/package.json +++ b/FabricExample/package.json @@ -16,17 +16,17 @@ "patch-package": "^6.5.0", "postinstall-postinstall": "^2.1.0", "react": "19.0.0-rc-fb9a90fa48-20240614", - "react-native": "0.75.0-rc.2", + "react-native": "0.75.0-rc.4", "react-native-gesture-handler": "link:../" }, "devDependencies": { "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", - "@react-native/babel-preset": "0.75.0-rc.2", - "@react-native/eslint-config": "0.75.0-rc.2", - "@react-native/metro-config": "0.75.0-rc.2", - "@react-native/typescript-config": "0.75.0-rc.2", + "@react-native/babel-preset": "0.75.0-rc.4", + "@react-native/eslint-config": "0.75.0-rc.4", + "@react-native/metro-config": "0.75.0-rc.4", + "@react-native/typescript-config": "0.75.0-rc.4", "@tsconfig/react-native": "^3.0.0", "@types/jest": "^29.2.1", "@types/metro-config": "^0.76.3", diff --git a/FabricExample/yarn.lock b/FabricExample/yarn.lock index e881bbc2fa..460dc08c42 100644 --- a/FabricExample/yarn.lock +++ b/FabricExample/yarn.lock @@ -2304,22 +2304,22 @@ prompts "^2.4.2" semver "^7.5.2" -"@react-native/assets-registry@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.2.tgz#dbb4723362a3ad8c7cf1845343cd1443a7bfd451" - integrity sha512-EaNced6TJiPD3xfRXDzfjh9jdFMmAaiAnXecEb622jueBWKATx9Rdo5KxgkKOqSotTF09G6LC3QMKz/bNWKLnQ== +"@react-native/assets-registry@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.4.tgz#de4706ff419259129cd1b231cca17f70173ffac1" + integrity sha512-cuXxygov13XYiXBwlWUYQuWD7/KjI8xryQM7zAe+Qw+v3DLhBLBnDg0lq6cez0fAD1prFH2H764tgFcz18gZtQ== -"@react-native/babel-plugin-codegen@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.2.tgz#ff161624025f79b7ad95fe3d4b6557632bf85361" - integrity sha512-XAyyLav3w8rJJhC1typYFXoxqzusc2r57tPTL8zvKhqoGxbuh+ewCyAsIl5DX06g/z8CySk7f3v1lEQHvbsIrA== +"@react-native/babel-plugin-codegen@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.4.tgz#3442e8067fdd66ad33bb39217dfd7a4913a708bc" + integrity sha512-oOz3sc6/5d7caeZ/1IKnWXTr7T3gg1qlTpDyv0msT9dfy72N8ntlugQi/C1bkQcZjVCrymo6DoLVJIWVxIs38w== dependencies: - "@react-native/codegen" "0.75.0-rc.2" + "@react-native/codegen" "0.75.0-rc.4" -"@react-native/babel-preset@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.2.tgz#3abb11694bb5742d5fee6ccd39f8a3e53eeec2d7" - integrity sha512-Tx7+47oDluBJOO0zD/lICPqmYWyaKRmj/2JOgm3kjM5Z28CaR7ZrE9rXkVDHwknB3Y/pEuG9nlpONyFrcmtp+Q== +"@react-native/babel-preset@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.4.tgz#676e04c15e7cb4f1297107526b36e6d1d7b73420" + integrity sha512-voBplFmpbS9Jgn7ofhVrpx/SX5pYyaZtavPz/6kr4VRtRVxCBnzGRldnwaW6QsCK7YHfAD+lHhrYwQwpmMQgDA== dependencies: "@babel/core" "^7.20.0" "@babel/plugin-proposal-export-default-from" "^7.0.0" @@ -2363,14 +2363,14 @@ "@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.75.0-rc.2" + "@react-native/babel-plugin-codegen" "0.75.0-rc.4" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" -"@react-native/codegen@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.2.tgz#f0ca7d153ce82bb42edb8c42ae5f00710849570d" - integrity sha512-yhcgOTduKrMhQTDHqzMI+PeDWoSMuHpMdw/C9kFaMBox6A943L2Lb4qc3ySnja2ZXk4KvM4Z6HoQt3F3ydeoHw== +"@react-native/codegen@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.4.tgz#145100b3e144e68ab4a9da069478209caf01fd73" + integrity sha512-fgTgnjSvUe7yNwX0YEYjApplLwRwCcSxgMgW/4khOdDrInFwRqH8DQwGatTQj9ojsBN4SdmZwoce6ibQrw5OMg== dependencies: "@babel/parser" "^7.20.0" glob "^7.1.1" @@ -2380,15 +2380,15 @@ mkdirp "^0.5.1" nullthrows "^1.1.1" -"@react-native/community-cli-plugin@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.2.tgz#0c381cde43d57b68e27ecab4d9423f13d5f958ed" - integrity sha512-PCxmzFyruBZ+ociWlHZVfiDiHX3TVjiEHqjHiUitzo+t/ic4SZ+lL2kvptkpYe+/ezFBxcfqm3xQSBS+izopqg== +"@react-native/community-cli-plugin@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.4.tgz#c38565cc1344d6b92d1e89f8fe4f5230ae74da94" + integrity sha512-80C70EcXGCxH6Mwj6L5JF25/Kp8BGw1SfrGOCb1uU7KHtJEowU0/0cOYSe4mh5pbkpPw+rGfkmuHLiId517zZw== dependencies: "@react-native-community/cli-server-api" "14.0.0-alpha.11" "@react-native-community/cli-tools" "14.0.0-alpha.11" - "@react-native/dev-middleware" "0.75.0-rc.2" - "@react-native/metro-babel-transformer" "0.75.0-rc.2" + "@react-native/dev-middleware" "0.75.0-rc.4" + "@react-native/metro-babel-transformer" "0.75.0-rc.4" chalk "^4.0.0" execa "^5.1.1" metro "^0.80.3" @@ -2398,18 +2398,18 @@ querystring "^0.2.1" readline "^1.3.0" -"@react-native/debugger-frontend@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.2.tgz#04a00165e51013a1ce2dee8ec43eb9ab4f95e5ba" - integrity sha512-pq1ceSiQkBU27YWCuhjLBCewne3diPtdiY9G73AAH8KxXe7/8PFvn2ffsnrY14cW8J/OoAVm0D/pmf71irG8Hg== +"@react-native/debugger-frontend@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.4.tgz#01b9fda4062bb69407f8d22033ba639c3a47c5e4" + integrity sha512-f1rcCEdH1bLD0+tYL9dzSSwDFWER2ONtwnkfPMnljR198UU3JFfvGgxsQVMD6mJVhltfg6mTdo6Wz9o1wlF/gQ== -"@react-native/dev-middleware@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.2.tgz#f9502012d5d3e5579df6e90ac7bc53ef51dde986" - integrity sha512-jpTEQ45ucJTRn14AcafxNEoOFsPddK1O+NJfAWL471+9cZhNnW+gpa4GxXLTwvRhTApUovCM4kdrwXuwIUtCnA== +"@react-native/dev-middleware@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.4.tgz#f7af83a4819dde99262c9cd9995e00cf70ba90ba" + integrity sha512-8Hc+vN3BUPQ5lPeI5Mc2Myk3WaTpz4yidkdyA2Yrab2Q/weZZxgJkPQBtDCtke9qfZFGTKg6QnZIYunfeGQCpw== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.75.0-rc.2" + "@react-native/debugger-frontend" "0.75.0-rc.4" chrome-launcher "^0.15.2" chromium-edge-launcher "^0.2.0" connect "^3.6.5" @@ -2421,14 +2421,14 @@ serve-static "^1.13.1" ws "^6.2.2" -"@react-native/eslint-config@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.2.tgz#c6d6c59b8efbca8cd1c5629a06cc62651a94ffff" - integrity sha512-tqYFvzStPxwzrNA8+R3Ha78Z7IHXKeY67tIn/JkmojjGApCT9nWnLfiJw9FIcBnbc/2RlbjvSLH3OintXBfqCg== +"@react-native/eslint-config@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.4.tgz#9ed76af00d439edb84d9ff1f8c15c20e6ac57170" + integrity sha512-XGBcOCeREToV6EyocJdHy/EVl4PPCqem6h+ohOCXZ20Aw50XP1TxNAtGxmRnE69iaYLSNVCNK1QR82sG8iIgZQ== dependencies: "@babel/core" "^7.20.0" "@babel/eslint-parser" "^7.20.0" - "@react-native/eslint-plugin" "0.75.0-rc.2" + "@react-native/eslint-plugin" "0.75.0-rc.4" "@typescript-eslint/eslint-plugin" "^7.1.1" "@typescript-eslint/parser" "^7.1.1" eslint-config-prettier "^8.5.0" @@ -2439,55 +2439,55 @@ eslint-plugin-react-hooks "^4.6.0" eslint-plugin-react-native "^4.0.0" -"@react-native/eslint-plugin@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.2.tgz#cc1a9063cc5933ebb57f8e3a201271d2aff5d40e" - integrity sha512-nedwJzGO8pl1Ep/syALqfMC26Y+I5STirhSCNPiB9+v92h6uT603pfo/zBYzqBYknLTvZpvg4uSOqwf6TWfXSA== +"@react-native/eslint-plugin@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.4.tgz#fb0888f3a2b80203006e12238136c297ce456e4c" + integrity sha512-fGJy0UAghFK4FxLUx1BTOYT+gROXFyvwSA3DlpjveDVFHT6KL4WdgvDiT0Xrlzciq58YKgZ2qImmuN/Z8WY58w== -"@react-native/gradle-plugin@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.2.tgz#6549e3176b14b7833c0b1bcb7765dcfc14a9f873" - integrity sha512-XGhOLxb6fP/N1DwM9tlWOx0yRE5sDjI6Qm2ADZk0tLdgJQzh+Le+fnPZcz0FjkqAiQx3yalO6/GQ47aQZe5LgQ== +"@react-native/gradle-plugin@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.4.tgz#b21d6a8f4f9926ff89bbebd8e6c5a703e7101e50" + integrity sha512-bQsTBOiz7kQutvWVLTwAup9huWvhF6ctD28pliNmSazKJemQkM9qDY8aA3xTvglGvFgsrFQQv5zHWKpski3m9g== -"@react-native/js-polyfills@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.2.tgz#649c32e0a48f39d79fb2b1a68cc1f2ab48bcdafe" - integrity sha512-iikwsNUR80kjhNNy9pnmdEeTawS0N25L3TL4ZGxenXwiiZQbVvOGOy/KunobIJDa0KS3i0g1RADOb1hqwJywFA== +"@react-native/js-polyfills@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.4.tgz#7a5fb8cd01db59d76f32b40e3ea04df2665351e1" + integrity sha512-2Z+qpXrB8roHpBamth84r3mGCplRaage+ex7d46npHTL7GAc98Mt/vOmfqjjkdKvU5JtkPOWyjo+DZ6th/aJjA== -"@react-native/metro-babel-transformer@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.2.tgz#e9e4c35ce7ab4d81a7eea8cca0c5c4d784f3b994" - integrity sha512-9DTwoXlEJyjr6D4jVUf5VzMX/mlzdb8QjoHUXRht5vHD/tavw237+Yk+Z94VScV7aj7Lbgtr7HcCGhLtLdp2PQ== +"@react-native/metro-babel-transformer@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.4.tgz#73dc9553ac799a492b82bc12a3dae32b9d80fb52" + integrity sha512-ZgyZnzzkvVzGlXuJDFfQzO09T2Z9JwaqqVWfi2E4IG4FHs/7a5v7cCNj3Jr1TreWzfWUOoRvuWDOXNjHR+bgmg== dependencies: "@babel/core" "^7.20.0" - "@react-native/babel-preset" "0.75.0-rc.2" + "@react-native/babel-preset" "0.75.0-rc.4" hermes-parser "0.22.0" nullthrows "^1.1.1" -"@react-native/metro-config@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.2.tgz#47c329c3aafd55abe093aa2e121c7f8e71697440" - integrity sha512-4l0ofUdqARIcK5hgpv73ZuM9yIQajBaaoGiU7iVcdurjqrJxs3ZVjJ8DM19gUTXZKrbYDfHmZawB63wMiOw85A== +"@react-native/metro-config@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.4.tgz#f954daff48429ef9273ee0dfbb2dfbfa9a82d932" + integrity sha512-KaQcKwQDtzvbQmNTSG7GA+NVTNjwq22vW3YHhdLJDRlMuzxRdvNAlHVZqAk/+UpPHnn4+nuy8HO7F7MXbcY6yw== dependencies: - "@react-native/js-polyfills" "0.75.0-rc.2" - "@react-native/metro-babel-transformer" "0.75.0-rc.2" + "@react-native/js-polyfills" "0.75.0-rc.4" + "@react-native/metro-babel-transformer" "0.75.0-rc.4" metro-config "^0.80.3" metro-runtime "^0.80.3" -"@react-native/normalize-colors@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.2.tgz#1280e0b42be8ca410b8459ac6761b53ad85e5901" - integrity sha512-4kv64O1aQExGKGFJ/30eqUwoIm5a8IU+5g3gmN0AHrBGDq2NmIDy9qakrU71wkp6kWkZVftLiy8Z6+Y/ni0ovg== +"@react-native/normalize-colors@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.4.tgz#83335cd7cf4cd31a057f9a4f74e8139ee1cc044f" + integrity sha512-yzeH6Q0wsq0FijmCPPTTsgfCfzeBbM6I+2PAwjVYpNgemsmcURJMiRhTZQLuvBsKoO+OYVpl2vzp9kiWYw40yw== -"@react-native/typescript-config@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.2.tgz#2dc4e8c6c0faf6c69e505a32b746d72958b85115" - integrity sha512-ZCuQ8v9piLpy+fg/n7EC8N+Qc/Eb+cBhRxKAYH9lkfsSj1LTiyRg/nQq3Bhkmg0i6Ia+snvUMsywDTAybDCouw== +"@react-native/typescript-config@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.4.tgz#c05fd711817b09ce5a68caaa8b9c24b38f440d9c" + integrity sha512-ibEqe/OUsEhCa5zQDyXVZesTbIcpr4T0jLI/IIbtt0Tt1vVk6o5k2te/dJ42QuMJyL+z2zQMLsPAk6k/zJDemA== -"@react-native/virtualized-lists@0.75.0-rc.2": - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.2.tgz#7bdcdeeba16ca5863ce95d8867ea026834be2afc" - integrity sha512-aA1nl0AJP2noCMGTEPyLKYCGZ6AWMGBPVm5dt8337S/HLclmvD5ivIUiPCp0deNFqoosKnbjZNaLDB4AnFN2QQ== +"@react-native/virtualized-lists@0.75.0-rc.4": + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.4.tgz#ee93fb5d5e9ad358a38343a2c505e01d899ab8f1" + integrity sha512-EjR7vldp2xblUVrjqM94gClQoqWSXdOkaU7X4pGkN7EBEg0GlC7i+0Prt40dwKSQMUfQ1e70ztIVD3I8zrmq7A== dependencies: invariant "^2.2.4" nullthrows "^1.1.1" @@ -6587,10 +6587,10 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -react-devtools-core@5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.1.0.tgz#3396494ac94b21602cac4fd657d600e0b52f4a0b" - integrity sha512-NRtLBqYVLrIY+lOa2oTpFiAhI7Hru0AUXI0tP9neCyaPPAzlZyeH0i+VZ0shIyRTJbpvyqbD/uCsewA2hpfZHw== +react-devtools-core@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.1.tgz#d57f5b8f74f16e622bd6a7bc270161e4ba162666" + integrity sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw== dependencies: shell-quote "^1.6.1" ws "^7" @@ -6619,22 +6619,22 @@ react-is@^18.0.0: version "0.0.0" uid "" -react-native@0.75.0-rc.2: - version "0.75.0-rc.2" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.2.tgz#2caaadf9ea76e853c7ec4f2b8a470bca6fe50fa4" - integrity sha512-K5DZ1VaoT1ppc8Djy8KBhBBr1wIH5v420NoRyd1gSzFtcXDHqKgv9lQyw5rHFrtuPzb299fVDLGEsf4QSLnz0g== +react-native@0.75.0-rc.4: + version "0.75.0-rc.4" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.4.tgz#106d93aca9ad8339c98ad51780547792107b7d12" + integrity sha512-gVrz7X/p8z/++/Tk+38HomXyFjFBMOcKouvtOZG5GKhtkHw6aHLMwtEycXljfPs5TLvJbMROvzBtSDRvwAoBfw== dependencies: "@jest/create-cache-key-function" "^29.6.3" "@react-native-community/cli" "14.0.0-alpha.11" "@react-native-community/cli-platform-android" "14.0.0-alpha.11" "@react-native-community/cli-platform-ios" "14.0.0-alpha.11" - "@react-native/assets-registry" "0.75.0-rc.2" - "@react-native/codegen" "0.75.0-rc.2" - "@react-native/community-cli-plugin" "0.75.0-rc.2" - "@react-native/gradle-plugin" "0.75.0-rc.2" - "@react-native/js-polyfills" "0.75.0-rc.2" - "@react-native/normalize-colors" "0.75.0-rc.2" - "@react-native/virtualized-lists" "0.75.0-rc.2" + "@react-native/assets-registry" "0.75.0-rc.4" + "@react-native/codegen" "0.75.0-rc.4" + "@react-native/community-cli-plugin" "0.75.0-rc.4" + "@react-native/gradle-plugin" "0.75.0-rc.4" + "@react-native/js-polyfills" "0.75.0-rc.4" + "@react-native/normalize-colors" "0.75.0-rc.4" + "@react-native/virtualized-lists" "0.75.0-rc.4" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" @@ -6653,7 +6653,7 @@ react-native@0.75.0-rc.2: nullthrows "^1.1.1" pretty-format "^26.5.2" promise "^8.3.0" - react-devtools-core "5.1.0" + react-devtools-core "^5.3.1" react-refresh "^0.14.0" regenerator-runtime "^0.13.2" scheduler "0.25.0-rc-fb9a90fa48-20240614" From 74f7ed96021ee8dd971ce8d59fbfb887bda58beb Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Fri, 26 Jul 2024 11:28:36 +0200 Subject: [PATCH 7/9] Bump to rc.5 --- FabricExample/ios/Podfile.lock | 521 +++++++++++++++++---------------- FabricExample/package.json | 10 +- FabricExample/yarn.lock | 180 ++++++------ src/ghQueueMicrotask.ts | 8 +- 4 files changed, 360 insertions(+), 359 deletions(-) diff --git a/FabricExample/ios/Podfile.lock b/FabricExample/ios/Podfile.lock index e665d22e98..47ca06c398 100644 --- a/FabricExample/ios/Podfile.lock +++ b/FabricExample/ios/Podfile.lock @@ -1,12 +1,12 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.75.0-rc.4) + - FBLazyVector (0.75.0-rc.5) - fmt (9.1.0) - glog (0.3.5) - - hermes-engine (0.75.0-rc.4): - - hermes-engine/Pre-built (= 0.75.0-rc.4) - - hermes-engine/Pre-built (0.75.0-rc.4) + - hermes-engine (0.75.0-rc.5): + - hermes-engine/Pre-built (= 0.75.0-rc.5) + - hermes-engine/Pre-built (0.75.0-rc.5) - RCT-Folly (2024.01.01.00): - boost - DoubleConversion @@ -23,32 +23,32 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.75.0-rc.4) - - RCTRequired (0.75.0-rc.4) - - RCTTypeSafety (0.75.0-rc.4): - - FBLazyVector (= 0.75.0-rc.4) - - RCTRequired (= 0.75.0-rc.4) - - React-Core (= 0.75.0-rc.4) - - React (0.75.0-rc.4): - - React-Core (= 0.75.0-rc.4) - - React-Core/DevSupport (= 0.75.0-rc.4) - - React-Core/RCTWebSocket (= 0.75.0-rc.4) - - React-RCTActionSheet (= 0.75.0-rc.4) - - React-RCTAnimation (= 0.75.0-rc.4) - - React-RCTBlob (= 0.75.0-rc.4) - - React-RCTImage (= 0.75.0-rc.4) - - React-RCTLinking (= 0.75.0-rc.4) - - React-RCTNetwork (= 0.75.0-rc.4) - - React-RCTSettings (= 0.75.0-rc.4) - - React-RCTText (= 0.75.0-rc.4) - - React-RCTVibration (= 0.75.0-rc.4) - - React-callinvoker (0.75.0-rc.4) - - React-Core (0.75.0-rc.4): + - RCTDeprecation (0.75.0-rc.5) + - RCTRequired (0.75.0-rc.5) + - RCTTypeSafety (0.75.0-rc.5): + - FBLazyVector (= 0.75.0-rc.5) + - RCTRequired (= 0.75.0-rc.5) + - React-Core (= 0.75.0-rc.5) + - React (0.75.0-rc.5): + - React-Core (= 0.75.0-rc.5) + - React-Core/DevSupport (= 0.75.0-rc.5) + - React-Core/RCTWebSocket (= 0.75.0-rc.5) + - React-RCTActionSheet (= 0.75.0-rc.5) + - React-RCTAnimation (= 0.75.0-rc.5) + - React-RCTBlob (= 0.75.0-rc.5) + - React-RCTImage (= 0.75.0-rc.5) + - React-RCTLinking (= 0.75.0-rc.5) + - React-RCTNetwork (= 0.75.0-rc.5) + - React-RCTSettings (= 0.75.0-rc.5) + - React-RCTText (= 0.75.0-rc.5) + - React-RCTVibration (= 0.75.0-rc.5) + - React-callinvoker (0.75.0-rc.5) + - React-Core (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.4) + - React-Core/Default (= 0.75.0-rc.5) - React-cxxreact - React-featureflags - React-hermes @@ -60,7 +60,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.75.0-rc.4): + - React-Core/CoreModulesHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -77,7 +77,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.75.0-rc.4): + - React-Core/Default (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -93,13 +93,13 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.75.0-rc.4): + - React-Core/DevSupport (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.4) - - React-Core/RCTWebSocket (= 0.75.0-rc.4) + - React-Core/Default (= 0.75.0-rc.5) + - React-Core/RCTWebSocket (= 0.75.0-rc.5) - React-cxxreact - React-featureflags - React-hermes @@ -111,7 +111,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.75.0-rc.4): + - React-Core/RCTActionSheetHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -128,7 +128,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.75.0-rc.4): + - React-Core/RCTAnimationHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -145,7 +145,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.75.0-rc.4): + - React-Core/RCTBlobHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -162,7 +162,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.75.0-rc.4): + - React-Core/RCTImageHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -179,7 +179,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.75.0-rc.4): + - React-Core/RCTLinkingHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -196,7 +196,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.75.0-rc.4): + - React-Core/RCTNetworkHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -213,7 +213,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.75.0-rc.4): + - React-Core/RCTSettingsHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -230,7 +230,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.75.0-rc.4): + - React-Core/RCTTextHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -247,7 +247,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.75.0-rc.4): + - React-Core/RCTVibrationHeaders (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -264,12 +264,12 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.75.0-rc.4): + - React-Core/RCTWebSocket (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.4) + - React-Core/Default (= 0.75.0-rc.5) - React-cxxreact - React-featureflags - React-hermes @@ -281,36 +281,36 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.75.0-rc.4): + - React-CoreModules (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.75.0-rc.4) - - React-Core/CoreModulesHeaders (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) + - RCTTypeSafety (= 0.75.0-rc.5) + - React-Core/CoreModulesHeaders (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.75.0-rc.4) + - React-RCTImage (= 0.75.0-rc.5) - ReactCodegen - ReactCommon - SocketRocket (= 0.7.0) - - React-cxxreact (0.75.0-rc.4): + - React-cxxreact (0.75.0-rc.5): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.4) - - React-debug (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) + - React-callinvoker (= 0.75.0-rc.5) + - React-debug (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) - React-jsinspector - - React-logger (= 0.75.0-rc.4) - - React-perflogger (= 0.75.0-rc.4) - - React-runtimeexecutor (= 0.75.0-rc.4) - - React-debug (0.75.0-rc.4) - - React-defaultsnativemodule (0.75.0-rc.4): + - React-logger (= 0.75.0-rc.5) + - React-perflogger (= 0.75.0-rc.5) + - React-runtimeexecutor (= 0.75.0-rc.5) + - React-debug (0.75.0-rc.5) + - React-defaultsnativemodule (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine @@ -335,7 +335,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-domnativemodule (0.75.0-rc.4): + - React-domnativemodule (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine @@ -357,7 +357,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.75.0-rc.4): + - React-Fabric (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -368,21 +368,21 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.75.0-rc.4) - - React-Fabric/attributedstring (= 0.75.0-rc.4) - - React-Fabric/componentregistry (= 0.75.0-rc.4) - - React-Fabric/componentregistrynative (= 0.75.0-rc.4) - - React-Fabric/components (= 0.75.0-rc.4) - - React-Fabric/core (= 0.75.0-rc.4) - - React-Fabric/dom (= 0.75.0-rc.4) - - React-Fabric/imagemanager (= 0.75.0-rc.4) - - React-Fabric/leakchecker (= 0.75.0-rc.4) - - React-Fabric/mounting (= 0.75.0-rc.4) - - React-Fabric/observers (= 0.75.0-rc.4) - - React-Fabric/scheduler (= 0.75.0-rc.4) - - React-Fabric/telemetry (= 0.75.0-rc.4) - - React-Fabric/templateprocessor (= 0.75.0-rc.4) - - React-Fabric/uimanager (= 0.75.0-rc.4) + - React-Fabric/animations (= 0.75.0-rc.5) + - React-Fabric/attributedstring (= 0.75.0-rc.5) + - React-Fabric/componentregistry (= 0.75.0-rc.5) + - React-Fabric/componentregistrynative (= 0.75.0-rc.5) + - React-Fabric/components (= 0.75.0-rc.5) + - React-Fabric/core (= 0.75.0-rc.5) + - React-Fabric/dom (= 0.75.0-rc.5) + - React-Fabric/imagemanager (= 0.75.0-rc.5) + - React-Fabric/leakchecker (= 0.75.0-rc.5) + - React-Fabric/mounting (= 0.75.0-rc.5) + - React-Fabric/observers (= 0.75.0-rc.5) + - React-Fabric/scheduler (= 0.75.0-rc.5) + - React-Fabric/telemetry (= 0.75.0-rc.5) + - React-Fabric/templateprocessor (= 0.75.0-rc.5) + - React-Fabric/uimanager (= 0.75.0-rc.5) - React-featureflags - React-graphics - React-jsi @@ -392,7 +392,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.75.0-rc.4): + - React-Fabric/animations (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -412,7 +412,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.75.0-rc.4): + - React-Fabric/attributedstring (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -432,7 +432,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.75.0-rc.4): + - React-Fabric/componentregistry (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -452,7 +452,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.75.0-rc.4): + - React-Fabric/componentregistrynative (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -472,7 +472,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.75.0-rc.4): + - React-Fabric/components (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -483,9 +483,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.4) - - React-Fabric/components/root (= 0.75.0-rc.4) - - React-Fabric/components/view (= 0.75.0-rc.4) + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.5) + - React-Fabric/components/root (= 0.75.0-rc.5) + - React-Fabric/components/view (= 0.75.0-rc.5) - React-featureflags - React-graphics - React-jsi @@ -495,7 +495,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.4): + - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -515,7 +515,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.75.0-rc.4): + - React-Fabric/components/root (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -535,7 +535,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.75.0-rc.4): + - React-Fabric/components/view (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -556,7 +556,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.75.0-rc.4): + - React-Fabric/core (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -576,7 +576,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.75.0-rc.4): + - React-Fabric/dom (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -596,7 +596,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.75.0-rc.4): + - React-Fabric/imagemanager (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -616,7 +616,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.75.0-rc.4): + - React-Fabric/leakchecker (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -636,7 +636,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.75.0-rc.4): + - React-Fabric/mounting (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -656,7 +656,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.75.0-rc.4): + - React-Fabric/observers (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -667,7 +667,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.75.0-rc.4) + - React-Fabric/observers/events (= 0.75.0-rc.5) - React-featureflags - React-graphics - React-jsi @@ -677,7 +677,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.75.0-rc.4): + - React-Fabric/observers/events (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -697,7 +697,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.75.0-rc.4): + - React-Fabric/scheduler (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -719,7 +719,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.75.0-rc.4): + - React-Fabric/telemetry (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -739,7 +739,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.75.0-rc.4): + - React-Fabric/templateprocessor (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -759,7 +759,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.75.0-rc.4): + - React-Fabric/uimanager (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -770,7 +770,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.75.0-rc.4) + - React-Fabric/uimanager/consistency (= 0.75.0-rc.5) - React-featureflags - React-graphics - React-jsi @@ -781,7 +781,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.75.0-rc.4): + - React-Fabric/uimanager/consistency (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -802,7 +802,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.75.0-rc.4): + - React-FabricComponents (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -814,8 +814,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.75.0-rc.4) - - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.4) + - React-FabricComponents/components (= 0.75.0-rc.5) + - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.5) - React-featureflags - React-graphics - React-jsi @@ -827,7 +827,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.75.0-rc.4): + - React-FabricComponents/components (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -839,15 +839,15 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.4) - - React-FabricComponents/components/iostextinput (= 0.75.0-rc.4) - - React-FabricComponents/components/modal (= 0.75.0-rc.4) - - React-FabricComponents/components/rncore (= 0.75.0-rc.4) - - React-FabricComponents/components/safeareaview (= 0.75.0-rc.4) - - React-FabricComponents/components/scrollview (= 0.75.0-rc.4) - - React-FabricComponents/components/text (= 0.75.0-rc.4) - - React-FabricComponents/components/textinput (= 0.75.0-rc.4) - - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.4) + - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.5) + - React-FabricComponents/components/iostextinput (= 0.75.0-rc.5) + - React-FabricComponents/components/modal (= 0.75.0-rc.5) + - React-FabricComponents/components/rncore (= 0.75.0-rc.5) + - React-FabricComponents/components/safeareaview (= 0.75.0-rc.5) + - React-FabricComponents/components/scrollview (= 0.75.0-rc.5) + - React-FabricComponents/components/text (= 0.75.0-rc.5) + - React-FabricComponents/components/textinput (= 0.75.0-rc.5) + - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.5) - React-featureflags - React-graphics - React-jsi @@ -859,7 +859,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.75.0-rc.4): + - React-FabricComponents/components/inputaccessory (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -882,7 +882,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.75.0-rc.4): + - React-FabricComponents/components/iostextinput (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -905,7 +905,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.75.0-rc.4): + - React-FabricComponents/components/modal (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -928,7 +928,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.75.0-rc.4): + - React-FabricComponents/components/rncore (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -951,7 +951,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.75.0-rc.4): + - React-FabricComponents/components/safeareaview (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -974,7 +974,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.75.0-rc.4): + - React-FabricComponents/components/scrollview (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -997,7 +997,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.75.0-rc.4): + - React-FabricComponents/components/text (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1020,7 +1020,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.75.0-rc.4): + - React-FabricComponents/components/textinput (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1043,7 +1043,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.75.0-rc.4): + - React-FabricComponents/components/unimplementedview (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1066,7 +1066,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.75.0-rc.4): + - React-FabricComponents/textlayoutmanager (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1089,26 +1089,26 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.75.0-rc.4): + - React-FabricImage (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.75.0-rc.4) - - RCTTypeSafety (= 0.75.0-rc.4) + - RCTRequired (= 0.75.0-rc.5) + - RCTTypeSafety (= 0.75.0-rc.5) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.75.0-rc.4) + - React-jsiexecutor (= 0.75.0-rc.5) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.75.0-rc.4) - - React-featureflagsnativemodule (0.75.0-rc.4): + - React-featureflags (0.75.0-rc.5) + - React-featureflagsnativemodule (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine @@ -1129,7 +1129,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-graphics (0.75.0-rc.4): + - React-graphics (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1137,19 +1137,19 @@ PODS: - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.75.0-rc.4): + - React-hermes (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.0-rc.4) + - React-cxxreact (= 0.75.0-rc.5) - React-jsi - - React-jsiexecutor (= 0.75.0-rc.4) + - React-jsiexecutor (= 0.75.0-rc.5) - React-jsinspector - - React-perflogger (= 0.75.0-rc.4) + - React-perflogger (= 0.75.0-rc.5) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.75.0-rc.4): + - React-idlecallbacksnativemodule (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine @@ -1171,7 +1171,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-ImageManager (0.75.0-rc.4): + - React-ImageManager (0.75.0-rc.5): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1180,43 +1180,43 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.75.0-rc.4): + - React-jserrorhandler (0.75.0-rc.5): - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-jsi (0.75.0-rc.4): + - React-jsi (0.75.0-rc.5): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.75.0-rc.4): + - React-jsiexecutor (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) + - React-cxxreact (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) - React-jsinspector - - React-perflogger (= 0.75.0-rc.4) - - React-jsinspector (0.75.0-rc.4): + - React-perflogger (= 0.75.0-rc.5) + - React-jsinspector (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-runtimeexecutor (= 0.75.0-rc.4) - - React-jsitracing (0.75.0-rc.4): + - React-runtimeexecutor (= 0.75.0-rc.5) + - React-jsitracing (0.75.0-rc.5): - React-jsi - - React-logger (0.75.0-rc.4): + - React-logger (0.75.0-rc.5): - glog - - React-Mapbuffer (0.75.0-rc.4): + - React-Mapbuffer (0.75.0-rc.5): - glog - React-debug - - React-microtasksnativemodule (0.75.0-rc.4): + - React-microtasksnativemodule (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine @@ -1237,8 +1237,8 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.75.0-rc.4) - - React-NativeModulesApple (0.75.0-rc.4): + - React-nativeconfig (0.75.0-rc.5) + - React-NativeModulesApple (0.75.0-rc.5): - glog - hermes-engine - React-callinvoker @@ -1249,13 +1249,13 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.75.0-rc.4) - - React-performancetimeline (0.75.0-rc.4): + - React-perflogger (0.75.0-rc.5) + - React-performancetimeline (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - React-cxxreact - - React-RCTActionSheet (0.75.0-rc.4): - - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.4) - - React-RCTAnimation (0.75.0-rc.4): + - React-RCTActionSheet (0.75.0-rc.5): + - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.5) + - React-RCTAnimation (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders @@ -1263,7 +1263,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.75.0-rc.4): + - React-RCTAppDelegate (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1288,7 +1288,7 @@ PODS: - React-utils - ReactCodegen - ReactCommon - - React-RCTBlob (0.75.0-rc.4): + - React-RCTBlob (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - hermes-engine @@ -1301,7 +1301,7 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTFabric (0.75.0-rc.4): + - React-RCTFabric (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1324,7 +1324,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.75.0-rc.4): + - React-RCTImage (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTImageHeaders @@ -1333,14 +1333,14 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTLinking (0.75.0-rc.4): - - React-Core/RCTLinkingHeaders (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) + - React-RCTLinking (0.75.0-rc.5): + - React-Core/RCTLinkingHeaders (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) - React-NativeModulesApple - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.75.0-rc.4) - - React-RCTNetwork (0.75.0-rc.4): + - ReactCommon/turbomodule/core (= 0.75.0-rc.5) + - React-RCTNetwork (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders @@ -1348,7 +1348,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTSettings (0.75.0-rc.4): + - React-RCTSettings (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders @@ -1356,24 +1356,24 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTText (0.75.0-rc.4): - - React-Core/RCTTextHeaders (= 0.75.0-rc.4) + - React-RCTText (0.75.0-rc.5): + - React-Core/RCTTextHeaders (= 0.75.0-rc.5) - Yoga - - React-RCTVibration (0.75.0-rc.4): + - React-RCTVibration (0.75.0-rc.5): - RCT-Folly (= 2024.01.01.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-rendererconsistency (0.75.0-rc.4) - - React-rendererdebug (0.75.0-rc.4): + - React-rendererconsistency (0.75.0-rc.5) + - React-rendererdebug (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.75.0-rc.4) - - React-RuntimeApple (0.75.0-rc.4): + - React-rncore (0.75.0-rc.5) + - React-RuntimeApple (0.75.0-rc.5): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker @@ -1390,8 +1390,9 @@ PODS: - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes + - React-runtimescheduler - React-utils - - React-RuntimeCore (0.75.0-rc.4): + - React-RuntimeCore (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1404,9 +1405,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.75.0-rc.4): - - React-jsi (= 0.75.0-rc.4) - - React-RuntimeHermes (0.75.0-rc.4): + - React-runtimeexecutor (0.75.0-rc.5): + - React-jsi (= 0.75.0-rc.5) + - React-RuntimeHermes (0.75.0-rc.5): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-featureflags @@ -1417,7 +1418,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.75.0-rc.4): + - React-runtimescheduler (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -1430,13 +1431,13 @@ PODS: - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.75.0-rc.4): + - React-utils (0.75.0-rc.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsi (= 0.75.0-rc.4) - - ReactCodegen (0.75.0-rc.4): + - React-jsi (= 0.75.0-rc.5) + - ReactCodegen (0.75.0-rc.5): - DoubleConversion - glog - hermes-engine @@ -1456,46 +1457,46 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.75.0-rc.4): - - ReactCommon/turbomodule (= 0.75.0-rc.4) - - ReactCommon/turbomodule (0.75.0-rc.4): + - ReactCommon (0.75.0-rc.5): + - ReactCommon/turbomodule (= 0.75.0-rc.5) + - ReactCommon/turbomodule (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.4) - - React-cxxreact (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) - - React-logger (= 0.75.0-rc.4) - - React-perflogger (= 0.75.0-rc.4) - - ReactCommon/turbomodule/bridging (= 0.75.0-rc.4) - - ReactCommon/turbomodule/core (= 0.75.0-rc.4) - - ReactCommon/turbomodule/bridging (0.75.0-rc.4): + - React-callinvoker (= 0.75.0-rc.5) + - React-cxxreact (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) + - React-logger (= 0.75.0-rc.5) + - React-perflogger (= 0.75.0-rc.5) + - ReactCommon/turbomodule/bridging (= 0.75.0-rc.5) + - ReactCommon/turbomodule/core (= 0.75.0-rc.5) + - ReactCommon/turbomodule/bridging (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.4) - - React-cxxreact (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) - - React-logger (= 0.75.0-rc.4) - - React-perflogger (= 0.75.0-rc.4) - - ReactCommon/turbomodule/core (0.75.0-rc.4): + - React-callinvoker (= 0.75.0-rc.5) + - React-cxxreact (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) + - React-logger (= 0.75.0-rc.5) + - React-perflogger (= 0.75.0-rc.5) + - ReactCommon/turbomodule/core (0.75.0-rc.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.4) - - React-cxxreact (= 0.75.0-rc.4) - - React-debug (= 0.75.0-rc.4) - - React-featureflags (= 0.75.0-rc.4) - - React-jsi (= 0.75.0-rc.4) - - React-logger (= 0.75.0-rc.4) - - React-perflogger (= 0.75.0-rc.4) - - React-utils (= 0.75.0-rc.4) + - React-callinvoker (= 0.75.0-rc.5) + - React-cxxreact (= 0.75.0-rc.5) + - React-debug (= 0.75.0-rc.5) + - React-featureflags (= 0.75.0-rc.5) + - React-jsi (= 0.75.0-rc.5) + - React-logger (= 0.75.0-rc.5) + - React-perflogger (= 0.75.0-rc.5) + - React-utils (= 0.75.0-rc.5) - RNGestureHandler (2.17.1): - DoubleConversion - glog @@ -1723,68 +1724,68 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 4cb898d0bf20404aab1850c656dcea009429d6c1 DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 - FBLazyVector: abd8ca0c46f3123c35991eab132ce1cc5478a496 + FBLazyVector: ef2d8805f4910e0fd527cca94cf657ef5ec74f0a fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 glog: 69ef571f3de08433d766d614c73a9838a06bf7eb - hermes-engine: 6f5b6ffaedbbed262e36f6367d91068231204cbf + hermes-engine: a8e85fde08f5659a7a3389b3cd49805835e42c07 RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740 - RCTDeprecation: 3c7e2ec22d9faa9ea271c60232b197f871d033d8 - RCTRequired: 5b0d43d7ad21a98d94ba6631c46664edefd7e215 - RCTTypeSafety: 5c24dd64651dd4f48fe4909ef3ab201f9e39bfd6 - React: 4902992e5ab4d0c58e4b264d74509586d6d2bc23 - React-callinvoker: 78ebe7b5fa81868ff88628ecb62a8ab8116fce1f - React-Core: 2835b279d46067161c4ffa3639402e3707367c00 - React-CoreModules: fa947cc15bf6b4517ade803bb06c024ca4a58df1 - React-cxxreact: d1937a1448653efb62e00dde5028559fd541a79a - React-debug: 022b1f8c5c48e9e755ef9db15fe434a45c07b487 - React-defaultsnativemodule: ea5a7447a15bd6e2f93f2c1dbddd2cbe9fd22e4b - React-domnativemodule: b04f400886069a7e755752e26a03d33c1bce5a4d - React-Fabric: 100f6f963fb1b92e7d6f65bf8d38170b11e4adf0 - React-FabricComponents: e83b713e6176ed9b5fd24ebf637b6bd1ef394a22 - React-FabricImage: 53ad95b2bfb947678d4108b8bc669433c71f4fcf - React-featureflags: 5ccbb1254347cb223c5286291737dca4f8a596a5 - React-featureflagsnativemodule: ac5d2cbe8a990ddaa1c2f20e1039a89358b9b214 - React-graphics: bf3945355fde57a0ebfd087e12283ad6e809bc30 - React-hermes: 91ac71b7998e0c692ce62d4426400c952a7d4334 - React-idlecallbacksnativemodule: 9951b913d445d9209b8300b3fd5bf6f2297c312b - React-ImageManager: c0c6af9477dc21e9c13abe7d6e12e8eb580c8d98 - React-jserrorhandler: 5535fb12e2cb4854ff5ba69297fde5a1ad7dc9f2 - React-jsi: 804711b7f34559f4e6659281a8ba97fd1f16fdce - React-jsiexecutor: 153150c393d8c361cc1263994e4825c6acb4afaf - React-jsinspector: 7b7d3515362f17a2bb111685748b70e4c85696ac - React-jsitracing: 51a40ea8a59cd77c568c31f084de0fffc2e52d9d - React-logger: 4519165efa410d66bd66cfcc3d1affaab6328505 - React-Mapbuffer: 9296d429e276349c7191b02aea83290e46023597 - React-microtasksnativemodule: 4fd6ef9b81209ab7bc51d6144fe899823c7cf5de - React-nativeconfig: 19c11c393ea8d14e3e172df7f97a909014a6ec11 - React-NativeModulesApple: c254c827b10bdffba1f0c6a5d952a9cb50b5d00c - React-perflogger: ed334ad2e4363e9a4c593473030e0be2263e1165 - React-performancetimeline: 124ccd9565cae0428d6e6024e55ade0a7b92aaa3 - React-RCTActionSheet: 391c1ef2a5928adb1fb0d75fa951c3f619628a2c - React-RCTAnimation: 9d472c477c4197fb8391e518a1b579b57bc25436 - React-RCTAppDelegate: cc5b2fe8266e56b83ab43863b824af2e09e2dc38 - React-RCTBlob: 7e7e5452a36e0736fced341153ba526fb6ef161c - React-RCTFabric: 7f99cf1f659ad97343576061f1fea07aefeb5444 - React-RCTImage: c9bcd8b3d539c598e546e664eac6b503d666d153 - React-RCTLinking: 28a05890cee1b1cc77d77950ee91958c2bc6961d - React-RCTNetwork: bca47ea5eddfe695144568f706c6ca291262df67 - React-RCTSettings: 110716a4bdda4f90128c1723082b0db897950d71 - React-RCTText: bdae984aef89223b32a13a66ab7cd387eae00307 - React-RCTVibration: 2f967ac4659562c96d597db499863a5b5f2ee368 - React-rendererconsistency: f63337474af1da1baf5fa7d8674d0b011167ff4b - React-rendererdebug: 9bcd00296b8c0556b107222ccfd5f16941d0d59a - React-rncore: d9d0b61606456e3f5ce53ada54ddc556eaaeb674 - React-RuntimeApple: e76d604bbb9edc492771607b653493295f46eaa3 - React-RuntimeCore: ad246b49aa8fdd2fef7aec9af5b009d3db162114 - React-runtimeexecutor: 4ab42f130e3bc5c4fe34772c94262dc610fd22fd - React-RuntimeHermes: 9039b59043732a99ef5446750f83d9a101819127 - React-runtimescheduler: 63e05c97cfefa6c3ec18d22af4cbcf41142163ab - React-utils: 656d5c9d6569519f3f6e4168e99c54fb5a2d3363 - ReactCodegen: 66b9d409aab4b63699db598dbeb91c74e2e94c97 - ReactCommon: 7b8080ee8edb31deaa03fb2c3877bc98cee834e7 + RCTDeprecation: ad5d0aa8ca58822fc812b7d1d14cadd35655284e + RCTRequired: 669d843dfd6d4b798d1528efce99132fd5aa0034 + RCTTypeSafety: a897280f4afdd7317043bccf8d0eef28c8f04218 + React: e3ff42d7dc840d926f404e8fddbdff83280277df + React-callinvoker: ee1a4aff922a1d8286e2db12f916305774f77fb4 + React-Core: d209509b1b787e8094e226acf06be30869d0888d + React-CoreModules: 495574aa0b75c253204614a278296195e7b7cb97 + React-cxxreact: 92f199214b96dfb694e4282a637e10fa90f48b4e + React-debug: 48e6b8e265977572f7993fb45675d4fb548ba0d0 + React-defaultsnativemodule: 62581c3b0099888201817bc819c6d975eb30d9f2 + React-domnativemodule: 5f96d10931e33a99674d3e18f029cb00e73c0ca6 + React-Fabric: c43e8769d6b720d2c32611b0ae7ffface76842bf + React-FabricComponents: 6972a6edabe96ac5cfefc8dd143963ba17272dcc + React-FabricImage: c052e4b3425e11de92d9dd1ee25a227134db2ba0 + React-featureflags: ef6d9f325c734948e78f33b8efb43bf977238468 + React-featureflagsnativemodule: 2251f9e8e0b40d2a37f5bdc00b273fcd329125f6 + React-graphics: 5a2770b6b286ba0ad72a14a9509861534c5eef3f + React-hermes: f359a48260528566f8f853bddf384c02b8cb2949 + React-idlecallbacksnativemodule: 03dbf07c8bf26f984df8190d3d7e2098e98b6dd5 + React-ImageManager: 6d45b6e394d6cf69bde02547f4b983f016b7141a + React-jserrorhandler: 7fcaca531916f83234c8ad149be7b617692bcc4a + React-jsi: dbfdf73cb3d6a643492f8ec5467f297be288e84a + React-jsiexecutor: 038b28ee4409b628fe2586965116720979e871a4 + React-jsinspector: 0f5e764dd1850129b89c669481655014f031ff56 + React-jsitracing: 44186c47f5c62bf7ba749b558b2bf711c3f33673 + React-logger: 9ba366e9cfa3e79ec3a8c410aefd4b17a4d0644b + React-Mapbuffer: 927b8179119d7c93f99508a7742eed98c2b084c5 + React-microtasksnativemodule: 18725ac176e6c06fc71f67d9baff9df2b1c49a8b + React-nativeconfig: a51e940e762664df72120e346f8a2411a8bf812b + React-NativeModulesApple: c5e9540097b9c43e10bd2d266ac23f281e55205d + React-perflogger: 6bc56e58320de192e61bce3a100e220d8870726e + React-performancetimeline: c97d7ed315c1014d27a441137d2d5c58805dc501 + React-RCTActionSheet: 940fb97b71ba9d9bf9006c4020596a2eb8bc1978 + React-RCTAnimation: 9a37fb56131c5760bcc3cb70cc33e580e3d29bbe + React-RCTAppDelegate: 3c12256673678b3f99402e594714e27e295e5d78 + React-RCTBlob: c6ac4fd9618815fd8ebaf5b5f1437b0237d7ea7e + React-RCTFabric: 0c8652844c41b29ed462f429dd94427a99cda188 + React-RCTImage: b8f90eeb40674a0ff6c6e24ac36f957c81d2c415 + React-RCTLinking: 75e8e2c890f73ace7e0711ba6720f3c8d63405c9 + React-RCTNetwork: 0eaac9e4d785bddb436050d5e66a62d502414b72 + React-RCTSettings: 2a4f1805b0e39a2cd0750db1c3a77587e3ff0fcf + React-RCTText: 7fa8de5043a0f4702d6e386cfa826852879a2d56 + React-RCTVibration: 6b28bacddaf1bbd9aead461e0f5a45a0e8fbf8c4 + React-rendererconsistency: 8599386d08814d071a3fcbbc731e936c7dcbecc2 + React-rendererdebug: 6a84e15872a09be0d26ae0ec62995d470063bd11 + React-rncore: 76f4e761106f182df3f4e1e1d7ae44f46a6a64b1 + React-RuntimeApple: 3f16cfbce698599fa1e3cddc99c901e07c7d63e5 + React-RuntimeCore: 86f39814a5d678a59c0a615ba44f8d53cb874be4 + React-runtimeexecutor: 882acfb23c688b22f5c29bc1a350163897f3cdbd + React-RuntimeHermes: 09b1dbd989ee69369c4a5454dae2e8a7d86ee2ca + React-runtimescheduler: c00b8de08f6fcd2b81b8ca747b1a5fa2ec368027 + React-utils: 3196837be56621a7994d279d3d1d1ee5df76d16a + ReactCodegen: e3c804e0e5ff95a5b0d612872f4d6b6976d5ce98 + ReactCommon: f41153c76e3681a145804f60644fb4516a8931e4 RNGestureHandler: f6a669a7d4ed470acebf8637d347eb52ae07d401 SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d - Yoga: 7a6e39b87687ab57cf466f72c97af32cc5a85130 + Yoga: ac38ef8dfa1ce56514c8197f19175e97ab7e7c2d PODFILE CHECKSUM: 2938316990faaa0507be8ddd9716fed018b28bde diff --git a/FabricExample/package.json b/FabricExample/package.json index 901ffcf0c4..5bca03b0ab 100644 --- a/FabricExample/package.json +++ b/FabricExample/package.json @@ -16,17 +16,17 @@ "patch-package": "^6.5.0", "postinstall-postinstall": "^2.1.0", "react": "19.0.0-rc-fb9a90fa48-20240614", - "react-native": "0.75.0-rc.4", + "react-native": "0.75.0-rc.5", "react-native-gesture-handler": "link:../" }, "devDependencies": { "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", - "@react-native/babel-preset": "0.75.0-rc.4", - "@react-native/eslint-config": "0.75.0-rc.4", - "@react-native/metro-config": "0.75.0-rc.4", - "@react-native/typescript-config": "0.75.0-rc.4", + "@react-native/babel-preset": "0.75.0-rc.5", + "@react-native/eslint-config": "0.75.0-rc.5", + "@react-native/metro-config": "0.75.0-rc.5", + "@react-native/typescript-config": "0.75.0-rc.5", "@tsconfig/react-native": "^3.0.0", "@types/jest": "^29.2.1", "@types/metro-config": "^0.76.3", diff --git a/FabricExample/yarn.lock b/FabricExample/yarn.lock index 046007f591..7c632eb639 100644 --- a/FabricExample/yarn.lock +++ b/FabricExample/yarn.lock @@ -2304,22 +2304,22 @@ prompts "^2.4.2" semver "^7.5.2" -"@react-native/assets-registry@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.4.tgz#de4706ff419259129cd1b231cca17f70173ffac1" - integrity sha512-cuXxygov13XYiXBwlWUYQuWD7/KjI8xryQM7zAe+Qw+v3DLhBLBnDg0lq6cez0fAD1prFH2H764tgFcz18gZtQ== +"@react-native/assets-registry@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.5.tgz#738a524747a4a833365bd7920e71b2a8efd30d30" + integrity sha512-2nbPA2x1EbnEBj9kt3lMTS43lztjHEUWDqv8kiXoWeoOeqO6q4JZRMk6XMhjTmBwdC0Dx8r372npvD/qb8ZBnQ== -"@react-native/babel-plugin-codegen@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.4.tgz#3442e8067fdd66ad33bb39217dfd7a4913a708bc" - integrity sha512-oOz3sc6/5d7caeZ/1IKnWXTr7T3gg1qlTpDyv0msT9dfy72N8ntlugQi/C1bkQcZjVCrymo6DoLVJIWVxIs38w== +"@react-native/babel-plugin-codegen@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.5.tgz#3212a11fa68370d20095c4ffde57aad921d44d36" + integrity sha512-menDCxTfAf3sW011AJY7baggXsQ58nH8qB+SeJGRdNc6LykpPN1G74zdd7jw3SdG/6xe9kKiixD8r5hwtPW8xw== dependencies: - "@react-native/codegen" "0.75.0-rc.4" + "@react-native/codegen" "0.75.0-rc.5" -"@react-native/babel-preset@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.4.tgz#676e04c15e7cb4f1297107526b36e6d1d7b73420" - integrity sha512-voBplFmpbS9Jgn7ofhVrpx/SX5pYyaZtavPz/6kr4VRtRVxCBnzGRldnwaW6QsCK7YHfAD+lHhrYwQwpmMQgDA== +"@react-native/babel-preset@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.5.tgz#5c6f63ad2673cbfc0a4838bff6da122ce0e38c22" + integrity sha512-ZlseSyNQkxnzefNasjldtV9mlpnZprnp7luHsyxtfV8FqGxBM4pMJTMl1Oryrwoo7gcXUGnwXncaHMLHtfkn5w== dependencies: "@babel/core" "^7.20.0" "@babel/plugin-proposal-export-default-from" "^7.0.0" @@ -2363,14 +2363,14 @@ "@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.75.0-rc.4" + "@react-native/babel-plugin-codegen" "0.75.0-rc.5" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" -"@react-native/codegen@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.4.tgz#145100b3e144e68ab4a9da069478209caf01fd73" - integrity sha512-fgTgnjSvUe7yNwX0YEYjApplLwRwCcSxgMgW/4khOdDrInFwRqH8DQwGatTQj9ojsBN4SdmZwoce6ibQrw5OMg== +"@react-native/codegen@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.5.tgz#51192698c9994afd7ff7204161c2a6d77aa3a9fd" + integrity sha512-s442iu2etAKZVTPKw+qj1hQhkzAEwhiHi4SdoIlJxn2ZqBCRXJb9JkrdwYMtl64Y2aZeM2fgt1OMgWc5jXrHPA== dependencies: "@babel/parser" "^7.20.0" glob "^7.1.1" @@ -2380,15 +2380,15 @@ mkdirp "^0.5.1" nullthrows "^1.1.1" -"@react-native/community-cli-plugin@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.4.tgz#c38565cc1344d6b92d1e89f8fe4f5230ae74da94" - integrity sha512-80C70EcXGCxH6Mwj6L5JF25/Kp8BGw1SfrGOCb1uU7KHtJEowU0/0cOYSe4mh5pbkpPw+rGfkmuHLiId517zZw== +"@react-native/community-cli-plugin@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.5.tgz#c367e8b12ca0b679c32f572fe18454a2e553f14a" + integrity sha512-NGVi7RsdCTa1lnmS0GY8mn6+epa+SrDAkaar0/nYRbKAHhA6O8MyjC7t5p3vx2F1UUDNjrfW7NPSH/tii5gr9Q== dependencies: "@react-native-community/cli-server-api" "14.0.0-alpha.11" "@react-native-community/cli-tools" "14.0.0-alpha.11" - "@react-native/dev-middleware" "0.75.0-rc.4" - "@react-native/metro-babel-transformer" "0.75.0-rc.4" + "@react-native/dev-middleware" "0.75.0-rc.5" + "@react-native/metro-babel-transformer" "0.75.0-rc.5" chalk "^4.0.0" execa "^5.1.1" metro "^0.80.3" @@ -2398,18 +2398,18 @@ querystring "^0.2.1" readline "^1.3.0" -"@react-native/debugger-frontend@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.4.tgz#01b9fda4062bb69407f8d22033ba639c3a47c5e4" - integrity sha512-f1rcCEdH1bLD0+tYL9dzSSwDFWER2ONtwnkfPMnljR198UU3JFfvGgxsQVMD6mJVhltfg6mTdo6Wz9o1wlF/gQ== +"@react-native/debugger-frontend@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.5.tgz#2201a6beda17e0dc7a9fb32b9053ce11a5eb4ce9" + integrity sha512-m+e3/+V06bNG6P8e+3hu4DcNP1GH3FflPLMtEY1SD4T7PyPJXlFWu8ApOm1FCuQA8ObY8nx6C3vzMlyjoYQFUA== -"@react-native/dev-middleware@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.4.tgz#f7af83a4819dde99262c9cd9995e00cf70ba90ba" - integrity sha512-8Hc+vN3BUPQ5lPeI5Mc2Myk3WaTpz4yidkdyA2Yrab2Q/weZZxgJkPQBtDCtke9qfZFGTKg6QnZIYunfeGQCpw== +"@react-native/dev-middleware@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.5.tgz#60a50aa41be8907455d86d301328a7e72e1008eb" + integrity sha512-NbMISFfV2XzBsxzbn/QGS6wqAxLPUKoKwFASRWKRpqo23q62H5xWRuvvvMPFpemb/MoFEGpTxc5ce5niNds/aQ== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.75.0-rc.4" + "@react-native/debugger-frontend" "0.75.0-rc.5" chrome-launcher "^0.15.2" chromium-edge-launcher "^0.2.0" connect "^3.6.5" @@ -2421,14 +2421,14 @@ serve-static "^1.13.1" ws "^6.2.2" -"@react-native/eslint-config@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.4.tgz#9ed76af00d439edb84d9ff1f8c15c20e6ac57170" - integrity sha512-XGBcOCeREToV6EyocJdHy/EVl4PPCqem6h+ohOCXZ20Aw50XP1TxNAtGxmRnE69iaYLSNVCNK1QR82sG8iIgZQ== +"@react-native/eslint-config@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.5.tgz#9ae039466cd88797ef48fe63c6e3e9ba23f2e6ba" + integrity sha512-FGR0LEyhyhjBnA4SDEo6Vk6En/00dVgcCc+3aynZr1pOadg9mg25dVCz6Y5tQENQZntKDRijUb1Yt1yVeuyKXA== dependencies: "@babel/core" "^7.20.0" "@babel/eslint-parser" "^7.20.0" - "@react-native/eslint-plugin" "0.75.0-rc.4" + "@react-native/eslint-plugin" "0.75.0-rc.5" "@typescript-eslint/eslint-plugin" "^7.1.1" "@typescript-eslint/parser" "^7.1.1" eslint-config-prettier "^8.5.0" @@ -2439,55 +2439,55 @@ eslint-plugin-react-hooks "^4.6.0" eslint-plugin-react-native "^4.0.0" -"@react-native/eslint-plugin@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.4.tgz#fb0888f3a2b80203006e12238136c297ce456e4c" - integrity sha512-fGJy0UAghFK4FxLUx1BTOYT+gROXFyvwSA3DlpjveDVFHT6KL4WdgvDiT0Xrlzciq58YKgZ2qImmuN/Z8WY58w== +"@react-native/eslint-plugin@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.5.tgz#e831422062a6ff6d32f4fa6dfad0e57d54c1c483" + integrity sha512-w56HbJySehyIOtYCYWvDaJtsGt26YP99YmMcoa6YVSWacOKC9rokW0XTBTjSnaZHiXPoj09IgARi6w65ec9OKA== -"@react-native/gradle-plugin@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.4.tgz#b21d6a8f4f9926ff89bbebd8e6c5a703e7101e50" - integrity sha512-bQsTBOiz7kQutvWVLTwAup9huWvhF6ctD28pliNmSazKJemQkM9qDY8aA3xTvglGvFgsrFQQv5zHWKpski3m9g== +"@react-native/gradle-plugin@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.5.tgz#e12c92a74dab6dc8e484aff555a0419a7612a6dc" + integrity sha512-Cvl1y+KcbO/bxWi67QgV3tJO/yaoCNNXMjrnlRPpBkhNNBoGSfgdmxVHV7vGQH+rUToSC28TeEARXkJ1Rig3Ng== -"@react-native/js-polyfills@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.4.tgz#7a5fb8cd01db59d76f32b40e3ea04df2665351e1" - integrity sha512-2Z+qpXrB8roHpBamth84r3mGCplRaage+ex7d46npHTL7GAc98Mt/vOmfqjjkdKvU5JtkPOWyjo+DZ6th/aJjA== +"@react-native/js-polyfills@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.5.tgz#c0392451d8de607e61abf7ae4da6a270b1d8d4ea" + integrity sha512-CCkSco2YwgDqRltJ9XxU1474gMTTom4Cf28MeOdTZezn5jmuJ7naJNaD/UTvik1MyR3CShrS9GMQ61u6Rf57lw== -"@react-native/metro-babel-transformer@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.4.tgz#73dc9553ac799a492b82bc12a3dae32b9d80fb52" - integrity sha512-ZgyZnzzkvVzGlXuJDFfQzO09T2Z9JwaqqVWfi2E4IG4FHs/7a5v7cCNj3Jr1TreWzfWUOoRvuWDOXNjHR+bgmg== +"@react-native/metro-babel-transformer@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.5.tgz#51420a77f176985d71ff1b8d259e4fbfb4508298" + integrity sha512-XMCvT8oz11Vwa0PjE3xg5T6Qu1Q1ZwhkBn9RDXKnPMjULkELOyNWxHPfwoyjLEemS7ThK7SGQbPZF2YpyKzTPA== dependencies: "@babel/core" "^7.20.0" - "@react-native/babel-preset" "0.75.0-rc.4" + "@react-native/babel-preset" "0.75.0-rc.5" hermes-parser "0.22.0" nullthrows "^1.1.1" -"@react-native/metro-config@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.4.tgz#f954daff48429ef9273ee0dfbb2dfbfa9a82d932" - integrity sha512-KaQcKwQDtzvbQmNTSG7GA+NVTNjwq22vW3YHhdLJDRlMuzxRdvNAlHVZqAk/+UpPHnn4+nuy8HO7F7MXbcY6yw== +"@react-native/metro-config@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.5.tgz#2723f9adea97acfda733eeba30d9325db5603798" + integrity sha512-41xBYcYXzwDOcaxeFp8gcuxblF1F7xBvkPNEQkYIijaoP+ePqGnvO3lnanx7ZnRyNJ2avH+GqujVtovh9Ayq+g== dependencies: - "@react-native/js-polyfills" "0.75.0-rc.4" - "@react-native/metro-babel-transformer" "0.75.0-rc.4" + "@react-native/js-polyfills" "0.75.0-rc.5" + "@react-native/metro-babel-transformer" "0.75.0-rc.5" metro-config "^0.80.3" metro-runtime "^0.80.3" -"@react-native/normalize-colors@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.4.tgz#83335cd7cf4cd31a057f9a4f74e8139ee1cc044f" - integrity sha512-yzeH6Q0wsq0FijmCPPTTsgfCfzeBbM6I+2PAwjVYpNgemsmcURJMiRhTZQLuvBsKoO+OYVpl2vzp9kiWYw40yw== +"@react-native/normalize-colors@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.5.tgz#edfa51fa3f11607128a44b42446acf762ce6af19" + integrity sha512-44PBsJXIhKB/2ahLK10HNt/YYHDQWPuqIy36FYPpKTbk3HJWeJaMgdEBq3qmuRQhaS7dIIrNU5cWT6sHpa83dA== -"@react-native/typescript-config@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.4.tgz#c05fd711817b09ce5a68caaa8b9c24b38f440d9c" - integrity sha512-ibEqe/OUsEhCa5zQDyXVZesTbIcpr4T0jLI/IIbtt0Tt1vVk6o5k2te/dJ42QuMJyL+z2zQMLsPAk6k/zJDemA== +"@react-native/typescript-config@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.5.tgz#f4d611330c56d8ace758caf1c6c0a1dc75bd5925" + integrity sha512-sI+A0jMgdljrlXK5nDer6Ui+Ve8NRYHgvJU6cW+32Bweuje2rhQgtuUWL5UIA5DmguIEkTDWAqcyCUgTVZE47Q== -"@react-native/virtualized-lists@0.75.0-rc.4": - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.4.tgz#ee93fb5d5e9ad358a38343a2c505e01d899ab8f1" - integrity sha512-EjR7vldp2xblUVrjqM94gClQoqWSXdOkaU7X4pGkN7EBEg0GlC7i+0Prt40dwKSQMUfQ1e70ztIVD3I8zrmq7A== +"@react-native/virtualized-lists@0.75.0-rc.5": + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.5.tgz#3ceec57aa398c3dd68d5402916ba24b4494bea1c" + integrity sha512-TkZsh0+aMaeI95Up1uFypTvjHbRT9rLo+ZseSctW02U5RgGwIjtSbBtjvj+V6xP4qU3uTLSC4EguiOgJrMEiqA== dependencies: invariant "^2.2.4" nullthrows "^1.1.1" @@ -6498,13 +6498,6 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - prettier@2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" @@ -6617,26 +6610,31 @@ 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@^18.0.0: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== + "react-native-gesture-handler@link:..": version "0.0.0" uid "" -react-native@0.75.0-rc.4: - version "0.75.0-rc.4" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.4.tgz#106d93aca9ad8339c98ad51780547792107b7d12" - integrity sha512-gVrz7X/p8z/++/Tk+38HomXyFjFBMOcKouvtOZG5GKhtkHw6aHLMwtEycXljfPs5TLvJbMROvzBtSDRvwAoBfw== +react-native@0.75.0-rc.5: + version "0.75.0-rc.5" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.5.tgz#8dd53b602d2adf0a233f68642ca272cbd72945b6" + integrity sha512-MqkKVr/jSvMhGKGRubVs61sHyybiZk50dc6saLsUgYeTQBSLQPqileKvIfNvvrrkdMgPw3FgROE1DJIxHj8nRw== dependencies: "@jest/create-cache-key-function" "^29.6.3" "@react-native-community/cli" "14.0.0-alpha.11" "@react-native-community/cli-platform-android" "14.0.0-alpha.11" "@react-native-community/cli-platform-ios" "14.0.0-alpha.11" - "@react-native/assets-registry" "0.75.0-rc.4" - "@react-native/codegen" "0.75.0-rc.4" - "@react-native/community-cli-plugin" "0.75.0-rc.4" - "@react-native/gradle-plugin" "0.75.0-rc.4" - "@react-native/js-polyfills" "0.75.0-rc.4" - "@react-native/normalize-colors" "0.75.0-rc.4" - "@react-native/virtualized-lists" "0.75.0-rc.4" + "@react-native/assets-registry" "0.75.0-rc.5" + "@react-native/codegen" "0.75.0-rc.5" + "@react-native/community-cli-plugin" "0.75.0-rc.5" + "@react-native/gradle-plugin" "0.75.0-rc.5" + "@react-native/js-polyfills" "0.75.0-rc.5" + "@react-native/normalize-colors" "0.75.0-rc.5" + "@react-native/virtualized-lists" "0.75.0-rc.5" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" diff --git a/src/ghQueueMicrotask.ts b/src/ghQueueMicrotask.ts index 1efcbc21bf..70c69eb596 100644 --- a/src/ghQueueMicrotask.ts +++ b/src/ghQueueMicrotask.ts @@ -1,6 +1,8 @@ // We check for typeof requestAnimationFrame because of SSR +// Functions are bound to null to avoid issues with scope when using Metro inline requires. export const ghQueueMicrotask = - typeof requestAnimationFrame === 'function' - ? // Functions are bound to null to avoid issues with scope when using Metro inline requires. - requestAnimationFrame.bind(null) + typeof setImmediate === 'function' + ? setImmediate.bind(null) + : typeof requestAnimationFrame === 'function' + ? requestAnimationFrame.bind(null) : queueMicrotask.bind(null); From 574606abf922390ccbba62fb555f077f01e495f4 Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Tue, 30 Jul 2024 08:49:18 +0200 Subject: [PATCH 8/9] Bump to rc.6 --- FabricExample/__tests__/App-test.tsx | 16 +- FabricExample/ios/Podfile.lock | 520 +++++++++++++-------------- FabricExample/package.json | 14 +- FabricExample/yarn.lock | 387 +++++++++++--------- src/handlers/createHandler.tsx | 6 +- 5 files changed, 493 insertions(+), 450 deletions(-) diff --git a/FabricExample/__tests__/App-test.tsx b/FabricExample/__tests__/App-test.tsx index c541ecfa55..42728ea90e 100644 --- a/FabricExample/__tests__/App-test.tsx +++ b/FabricExample/__tests__/App-test.tsx @@ -1,19 +1,9 @@ -/** - * @format - */ - -import 'react-native'; import React from 'react'; -import App from '../App'; - -// Note: import explicitly to use the types shiped with jest. import { it } from '@jest/globals'; // Note: test renderer must be required after react-native. -import ReactTestRenderer from 'react-test-renderer'; +import renderer from 'react-test-renderer'; -it('renders correctly', async () => { - await ReactTestRenderer.act(() => { - ReactTestRenderer.create(); - }); +it('renders correctly', () => { + renderer.create(); }); diff --git a/FabricExample/ios/Podfile.lock b/FabricExample/ios/Podfile.lock index 47ca06c398..91a74acc71 100644 --- a/FabricExample/ios/Podfile.lock +++ b/FabricExample/ios/Podfile.lock @@ -1,12 +1,12 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.75.0-rc.5) + - FBLazyVector (0.75.0-rc.6) - fmt (9.1.0) - glog (0.3.5) - - hermes-engine (0.75.0-rc.5): - - hermes-engine/Pre-built (= 0.75.0-rc.5) - - hermes-engine/Pre-built (0.75.0-rc.5) + - hermes-engine (0.75.0-rc.6): + - hermes-engine/Pre-built (= 0.75.0-rc.6) + - hermes-engine/Pre-built (0.75.0-rc.6) - RCT-Folly (2024.01.01.00): - boost - DoubleConversion @@ -23,32 +23,32 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.75.0-rc.5) - - RCTRequired (0.75.0-rc.5) - - RCTTypeSafety (0.75.0-rc.5): - - FBLazyVector (= 0.75.0-rc.5) - - RCTRequired (= 0.75.0-rc.5) - - React-Core (= 0.75.0-rc.5) - - React (0.75.0-rc.5): - - React-Core (= 0.75.0-rc.5) - - React-Core/DevSupport (= 0.75.0-rc.5) - - React-Core/RCTWebSocket (= 0.75.0-rc.5) - - React-RCTActionSheet (= 0.75.0-rc.5) - - React-RCTAnimation (= 0.75.0-rc.5) - - React-RCTBlob (= 0.75.0-rc.5) - - React-RCTImage (= 0.75.0-rc.5) - - React-RCTLinking (= 0.75.0-rc.5) - - React-RCTNetwork (= 0.75.0-rc.5) - - React-RCTSettings (= 0.75.0-rc.5) - - React-RCTText (= 0.75.0-rc.5) - - React-RCTVibration (= 0.75.0-rc.5) - - React-callinvoker (0.75.0-rc.5) - - React-Core (0.75.0-rc.5): + - RCTDeprecation (0.75.0-rc.6) + - RCTRequired (0.75.0-rc.6) + - RCTTypeSafety (0.75.0-rc.6): + - FBLazyVector (= 0.75.0-rc.6) + - RCTRequired (= 0.75.0-rc.6) + - React-Core (= 0.75.0-rc.6) + - React (0.75.0-rc.6): + - React-Core (= 0.75.0-rc.6) + - React-Core/DevSupport (= 0.75.0-rc.6) + - React-Core/RCTWebSocket (= 0.75.0-rc.6) + - React-RCTActionSheet (= 0.75.0-rc.6) + - React-RCTAnimation (= 0.75.0-rc.6) + - React-RCTBlob (= 0.75.0-rc.6) + - React-RCTImage (= 0.75.0-rc.6) + - React-RCTLinking (= 0.75.0-rc.6) + - React-RCTNetwork (= 0.75.0-rc.6) + - React-RCTSettings (= 0.75.0-rc.6) + - React-RCTText (= 0.75.0-rc.6) + - React-RCTVibration (= 0.75.0-rc.6) + - React-callinvoker (0.75.0-rc.6) + - React-Core (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.5) + - React-Core/Default (= 0.75.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -60,7 +60,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.75.0-rc.5): + - React-Core/CoreModulesHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -77,7 +77,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.75.0-rc.5): + - React-Core/Default (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -93,13 +93,13 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.75.0-rc.5): + - React-Core/DevSupport (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.5) - - React-Core/RCTWebSocket (= 0.75.0-rc.5) + - React-Core/Default (= 0.75.0-rc.6) + - React-Core/RCTWebSocket (= 0.75.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -111,7 +111,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.75.0-rc.5): + - React-Core/RCTActionSheetHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -128,7 +128,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.75.0-rc.5): + - React-Core/RCTAnimationHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -145,7 +145,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.75.0-rc.5): + - React-Core/RCTBlobHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -162,7 +162,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.75.0-rc.5): + - React-Core/RCTImageHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -179,7 +179,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.75.0-rc.5): + - React-Core/RCTLinkingHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -196,7 +196,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.75.0-rc.5): + - React-Core/RCTNetworkHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -213,7 +213,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.75.0-rc.5): + - React-Core/RCTSettingsHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -230,7 +230,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.75.0-rc.5): + - React-Core/RCTTextHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -247,7 +247,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.75.0-rc.5): + - React-Core/RCTVibrationHeaders (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -264,12 +264,12 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.75.0-rc.5): + - React-Core/RCTWebSocket (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.0-rc.5) + - React-Core/Default (= 0.75.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -281,36 +281,36 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.75.0-rc.5): + - React-CoreModules (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.75.0-rc.5) - - React-Core/CoreModulesHeaders (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) + - RCTTypeSafety (= 0.75.0-rc.6) + - React-Core/CoreModulesHeaders (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.75.0-rc.5) + - React-RCTImage (= 0.75.0-rc.6) - ReactCodegen - ReactCommon - SocketRocket (= 0.7.0) - - React-cxxreact (0.75.0-rc.5): + - React-cxxreact (0.75.0-rc.6): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.5) - - React-debug (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) + - React-callinvoker (= 0.75.0-rc.6) + - React-debug (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) - React-jsinspector - - React-logger (= 0.75.0-rc.5) - - React-perflogger (= 0.75.0-rc.5) - - React-runtimeexecutor (= 0.75.0-rc.5) - - React-debug (0.75.0-rc.5) - - React-defaultsnativemodule (0.75.0-rc.5): + - React-logger (= 0.75.0-rc.6) + - React-perflogger (= 0.75.0-rc.6) + - React-runtimeexecutor (= 0.75.0-rc.6) + - React-debug (0.75.0-rc.6) + - React-defaultsnativemodule (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -335,7 +335,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-domnativemodule (0.75.0-rc.5): + - React-domnativemodule (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -357,7 +357,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.75.0-rc.5): + - React-Fabric (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -368,21 +368,21 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.75.0-rc.5) - - React-Fabric/attributedstring (= 0.75.0-rc.5) - - React-Fabric/componentregistry (= 0.75.0-rc.5) - - React-Fabric/componentregistrynative (= 0.75.0-rc.5) - - React-Fabric/components (= 0.75.0-rc.5) - - React-Fabric/core (= 0.75.0-rc.5) - - React-Fabric/dom (= 0.75.0-rc.5) - - React-Fabric/imagemanager (= 0.75.0-rc.5) - - React-Fabric/leakchecker (= 0.75.0-rc.5) - - React-Fabric/mounting (= 0.75.0-rc.5) - - React-Fabric/observers (= 0.75.0-rc.5) - - React-Fabric/scheduler (= 0.75.0-rc.5) - - React-Fabric/telemetry (= 0.75.0-rc.5) - - React-Fabric/templateprocessor (= 0.75.0-rc.5) - - React-Fabric/uimanager (= 0.75.0-rc.5) + - React-Fabric/animations (= 0.75.0-rc.6) + - React-Fabric/attributedstring (= 0.75.0-rc.6) + - React-Fabric/componentregistry (= 0.75.0-rc.6) + - React-Fabric/componentregistrynative (= 0.75.0-rc.6) + - React-Fabric/components (= 0.75.0-rc.6) + - React-Fabric/core (= 0.75.0-rc.6) + - React-Fabric/dom (= 0.75.0-rc.6) + - React-Fabric/imagemanager (= 0.75.0-rc.6) + - React-Fabric/leakchecker (= 0.75.0-rc.6) + - React-Fabric/mounting (= 0.75.0-rc.6) + - React-Fabric/observers (= 0.75.0-rc.6) + - React-Fabric/scheduler (= 0.75.0-rc.6) + - React-Fabric/telemetry (= 0.75.0-rc.6) + - React-Fabric/templateprocessor (= 0.75.0-rc.6) + - React-Fabric/uimanager (= 0.75.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -392,7 +392,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.75.0-rc.5): + - React-Fabric/animations (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -412,7 +412,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.75.0-rc.5): + - React-Fabric/attributedstring (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -432,7 +432,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.75.0-rc.5): + - React-Fabric/componentregistry (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -452,7 +452,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.75.0-rc.5): + - React-Fabric/componentregistrynative (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -472,7 +472,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.75.0-rc.5): + - React-Fabric/components (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -483,9 +483,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.5) - - React-Fabric/components/root (= 0.75.0-rc.5) - - React-Fabric/components/view (= 0.75.0-rc.5) + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.0-rc.6) + - React-Fabric/components/root (= 0.75.0-rc.6) + - React-Fabric/components/view (= 0.75.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -495,7 +495,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.5): + - React-Fabric/components/legacyviewmanagerinterop (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -515,7 +515,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.75.0-rc.5): + - React-Fabric/components/root (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -535,7 +535,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.75.0-rc.5): + - React-Fabric/components/view (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -556,7 +556,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.75.0-rc.5): + - React-Fabric/core (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -576,7 +576,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.75.0-rc.5): + - React-Fabric/dom (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -596,7 +596,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.75.0-rc.5): + - React-Fabric/imagemanager (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -616,7 +616,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.75.0-rc.5): + - React-Fabric/leakchecker (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -636,7 +636,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.75.0-rc.5): + - React-Fabric/mounting (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -656,7 +656,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.75.0-rc.5): + - React-Fabric/observers (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -667,7 +667,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.75.0-rc.5) + - React-Fabric/observers/events (= 0.75.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -677,7 +677,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.75.0-rc.5): + - React-Fabric/observers/events (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -697,7 +697,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.75.0-rc.5): + - React-Fabric/scheduler (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -719,7 +719,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.75.0-rc.5): + - React-Fabric/telemetry (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -739,7 +739,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.75.0-rc.5): + - React-Fabric/templateprocessor (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -759,7 +759,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.75.0-rc.5): + - React-Fabric/uimanager (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -770,7 +770,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.75.0-rc.5) + - React-Fabric/uimanager/consistency (= 0.75.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -781,7 +781,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.75.0-rc.5): + - React-Fabric/uimanager/consistency (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -802,7 +802,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.75.0-rc.5): + - React-FabricComponents (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -814,8 +814,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.75.0-rc.5) - - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.5) + - React-FabricComponents/components (= 0.75.0-rc.6) + - React-FabricComponents/textlayoutmanager (= 0.75.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -827,7 +827,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.75.0-rc.5): + - React-FabricComponents/components (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -839,15 +839,15 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.5) - - React-FabricComponents/components/iostextinput (= 0.75.0-rc.5) - - React-FabricComponents/components/modal (= 0.75.0-rc.5) - - React-FabricComponents/components/rncore (= 0.75.0-rc.5) - - React-FabricComponents/components/safeareaview (= 0.75.0-rc.5) - - React-FabricComponents/components/scrollview (= 0.75.0-rc.5) - - React-FabricComponents/components/text (= 0.75.0-rc.5) - - React-FabricComponents/components/textinput (= 0.75.0-rc.5) - - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.5) + - React-FabricComponents/components/inputaccessory (= 0.75.0-rc.6) + - React-FabricComponents/components/iostextinput (= 0.75.0-rc.6) + - React-FabricComponents/components/modal (= 0.75.0-rc.6) + - React-FabricComponents/components/rncore (= 0.75.0-rc.6) + - React-FabricComponents/components/safeareaview (= 0.75.0-rc.6) + - React-FabricComponents/components/scrollview (= 0.75.0-rc.6) + - React-FabricComponents/components/text (= 0.75.0-rc.6) + - React-FabricComponents/components/textinput (= 0.75.0-rc.6) + - React-FabricComponents/components/unimplementedview (= 0.75.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -859,7 +859,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.75.0-rc.5): + - React-FabricComponents/components/inputaccessory (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -882,7 +882,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.75.0-rc.5): + - React-FabricComponents/components/iostextinput (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -905,7 +905,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.75.0-rc.5): + - React-FabricComponents/components/modal (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -928,7 +928,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.75.0-rc.5): + - React-FabricComponents/components/rncore (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -951,7 +951,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.75.0-rc.5): + - React-FabricComponents/components/safeareaview (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -974,7 +974,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.75.0-rc.5): + - React-FabricComponents/components/scrollview (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -997,7 +997,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.75.0-rc.5): + - React-FabricComponents/components/text (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1020,7 +1020,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.75.0-rc.5): + - React-FabricComponents/components/textinput (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1043,7 +1043,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.75.0-rc.5): + - React-FabricComponents/components/unimplementedview (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1066,7 +1066,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.75.0-rc.5): + - React-FabricComponents/textlayoutmanager (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1089,26 +1089,26 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.75.0-rc.5): + - React-FabricImage (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.75.0-rc.5) - - RCTTypeSafety (= 0.75.0-rc.5) + - RCTRequired (= 0.75.0-rc.6) + - RCTTypeSafety (= 0.75.0-rc.6) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.75.0-rc.5) + - React-jsiexecutor (= 0.75.0-rc.6) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.75.0-rc.5) - - React-featureflagsnativemodule (0.75.0-rc.5): + - React-featureflags (0.75.0-rc.6) + - React-featureflagsnativemodule (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -1129,7 +1129,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-graphics (0.75.0-rc.5): + - React-graphics (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1137,19 +1137,19 @@ PODS: - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.75.0-rc.5): + - React-hermes (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.0-rc.5) + - React-cxxreact (= 0.75.0-rc.6) - React-jsi - - React-jsiexecutor (= 0.75.0-rc.5) + - React-jsiexecutor (= 0.75.0-rc.6) - React-jsinspector - - React-perflogger (= 0.75.0-rc.5) + - React-perflogger (= 0.75.0-rc.6) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.75.0-rc.5): + - React-idlecallbacksnativemodule (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -1171,7 +1171,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-ImageManager (0.75.0-rc.5): + - React-ImageManager (0.75.0-rc.6): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1180,43 +1180,43 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.75.0-rc.5): + - React-jserrorhandler (0.75.0-rc.6): - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-jsi (0.75.0-rc.5): + - React-jsi (0.75.0-rc.6): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.75.0-rc.5): + - React-jsiexecutor (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) + - React-cxxreact (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) - React-jsinspector - - React-perflogger (= 0.75.0-rc.5) - - React-jsinspector (0.75.0-rc.5): + - React-perflogger (= 0.75.0-rc.6) + - React-jsinspector (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-runtimeexecutor (= 0.75.0-rc.5) - - React-jsitracing (0.75.0-rc.5): + - React-runtimeexecutor (= 0.75.0-rc.6) + - React-jsitracing (0.75.0-rc.6): - React-jsi - - React-logger (0.75.0-rc.5): + - React-logger (0.75.0-rc.6): - glog - - React-Mapbuffer (0.75.0-rc.5): + - React-Mapbuffer (0.75.0-rc.6): - glog - React-debug - - React-microtasksnativemodule (0.75.0-rc.5): + - React-microtasksnativemodule (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -1237,8 +1237,8 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.75.0-rc.5) - - React-NativeModulesApple (0.75.0-rc.5): + - React-nativeconfig (0.75.0-rc.6) + - React-NativeModulesApple (0.75.0-rc.6): - glog - hermes-engine - React-callinvoker @@ -1249,13 +1249,13 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.75.0-rc.5) - - React-performancetimeline (0.75.0-rc.5): + - React-perflogger (0.75.0-rc.6) + - React-performancetimeline (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - React-cxxreact - - React-RCTActionSheet (0.75.0-rc.5): - - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.5) - - React-RCTAnimation (0.75.0-rc.5): + - React-RCTActionSheet (0.75.0-rc.6): + - React-Core/RCTActionSheetHeaders (= 0.75.0-rc.6) + - React-RCTAnimation (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders @@ -1263,7 +1263,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.75.0-rc.5): + - React-RCTAppDelegate (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1288,7 +1288,7 @@ PODS: - React-utils - ReactCodegen - ReactCommon - - React-RCTBlob (0.75.0-rc.5): + - React-RCTBlob (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - hermes-engine @@ -1301,7 +1301,7 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTFabric (0.75.0-rc.5): + - React-RCTFabric (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1324,7 +1324,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.75.0-rc.5): + - React-RCTImage (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTImageHeaders @@ -1333,14 +1333,14 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTLinking (0.75.0-rc.5): - - React-Core/RCTLinkingHeaders (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) + - React-RCTLinking (0.75.0-rc.6): + - React-Core/RCTLinkingHeaders (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) - React-NativeModulesApple - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.75.0-rc.5) - - React-RCTNetwork (0.75.0-rc.5): + - ReactCommon/turbomodule/core (= 0.75.0-rc.6) + - React-RCTNetwork (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders @@ -1348,7 +1348,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTSettings (0.75.0-rc.5): + - React-RCTSettings (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders @@ -1356,24 +1356,24 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTText (0.75.0-rc.5): - - React-Core/RCTTextHeaders (= 0.75.0-rc.5) + - React-RCTText (0.75.0-rc.6): + - React-Core/RCTTextHeaders (= 0.75.0-rc.6) - Yoga - - React-RCTVibration (0.75.0-rc.5): + - React-RCTVibration (0.75.0-rc.6): - RCT-Folly (= 2024.01.01.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-rendererconsistency (0.75.0-rc.5) - - React-rendererdebug (0.75.0-rc.5): + - React-rendererconsistency (0.75.0-rc.6) + - React-rendererdebug (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.75.0-rc.5) - - React-RuntimeApple (0.75.0-rc.5): + - React-rncore (0.75.0-rc.6) + - React-RuntimeApple (0.75.0-rc.6): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker @@ -1392,7 +1392,7 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.75.0-rc.5): + - React-RuntimeCore (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1405,9 +1405,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.75.0-rc.5): - - React-jsi (= 0.75.0-rc.5) - - React-RuntimeHermes (0.75.0-rc.5): + - React-runtimeexecutor (0.75.0-rc.6): + - React-jsi (= 0.75.0-rc.6) + - React-RuntimeHermes (0.75.0-rc.6): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-featureflags @@ -1418,7 +1418,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.75.0-rc.5): + - React-runtimescheduler (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -1431,13 +1431,13 @@ PODS: - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.75.0-rc.5): + - React-utils (0.75.0-rc.6): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsi (= 0.75.0-rc.5) - - ReactCodegen (0.75.0-rc.5): + - React-jsi (= 0.75.0-rc.6) + - ReactCodegen (0.75.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -1457,46 +1457,46 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.75.0-rc.5): - - ReactCommon/turbomodule (= 0.75.0-rc.5) - - ReactCommon/turbomodule (0.75.0-rc.5): + - ReactCommon (0.75.0-rc.6): + - ReactCommon/turbomodule (= 0.75.0-rc.6) + - ReactCommon/turbomodule (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.5) - - React-cxxreact (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) - - React-logger (= 0.75.0-rc.5) - - React-perflogger (= 0.75.0-rc.5) - - ReactCommon/turbomodule/bridging (= 0.75.0-rc.5) - - ReactCommon/turbomodule/core (= 0.75.0-rc.5) - - ReactCommon/turbomodule/bridging (0.75.0-rc.5): + - React-callinvoker (= 0.75.0-rc.6) + - React-cxxreact (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) + - React-logger (= 0.75.0-rc.6) + - React-perflogger (= 0.75.0-rc.6) + - ReactCommon/turbomodule/bridging (= 0.75.0-rc.6) + - ReactCommon/turbomodule/core (= 0.75.0-rc.6) + - ReactCommon/turbomodule/bridging (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.5) - - React-cxxreact (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) - - React-logger (= 0.75.0-rc.5) - - React-perflogger (= 0.75.0-rc.5) - - ReactCommon/turbomodule/core (0.75.0-rc.5): + - React-callinvoker (= 0.75.0-rc.6) + - React-cxxreact (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) + - React-logger (= 0.75.0-rc.6) + - React-perflogger (= 0.75.0-rc.6) + - ReactCommon/turbomodule/core (0.75.0-rc.6): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.0-rc.5) - - React-cxxreact (= 0.75.0-rc.5) - - React-debug (= 0.75.0-rc.5) - - React-featureflags (= 0.75.0-rc.5) - - React-jsi (= 0.75.0-rc.5) - - React-logger (= 0.75.0-rc.5) - - React-perflogger (= 0.75.0-rc.5) - - React-utils (= 0.75.0-rc.5) + - React-callinvoker (= 0.75.0-rc.6) + - React-cxxreact (= 0.75.0-rc.6) + - React-debug (= 0.75.0-rc.6) + - React-featureflags (= 0.75.0-rc.6) + - React-jsi (= 0.75.0-rc.6) + - React-logger (= 0.75.0-rc.6) + - React-perflogger (= 0.75.0-rc.6) + - React-utils (= 0.75.0-rc.6) - RNGestureHandler (2.17.1): - DoubleConversion - glog @@ -1724,68 +1724,68 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 4cb898d0bf20404aab1850c656dcea009429d6c1 DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 - FBLazyVector: ef2d8805f4910e0fd527cca94cf657ef5ec74f0a + FBLazyVector: d08b51db67e61e1adaed7aefdb43b43f247ee46a fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 glog: 69ef571f3de08433d766d614c73a9838a06bf7eb - hermes-engine: a8e85fde08f5659a7a3389b3cd49805835e42c07 + hermes-engine: b205fccb3c7b52031e5bdb458a40f85f806bb7e8 RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740 - RCTDeprecation: ad5d0aa8ca58822fc812b7d1d14cadd35655284e - RCTRequired: 669d843dfd6d4b798d1528efce99132fd5aa0034 - RCTTypeSafety: a897280f4afdd7317043bccf8d0eef28c8f04218 - React: e3ff42d7dc840d926f404e8fddbdff83280277df - React-callinvoker: ee1a4aff922a1d8286e2db12f916305774f77fb4 - React-Core: d209509b1b787e8094e226acf06be30869d0888d - React-CoreModules: 495574aa0b75c253204614a278296195e7b7cb97 - React-cxxreact: 92f199214b96dfb694e4282a637e10fa90f48b4e - React-debug: 48e6b8e265977572f7993fb45675d4fb548ba0d0 - React-defaultsnativemodule: 62581c3b0099888201817bc819c6d975eb30d9f2 - React-domnativemodule: 5f96d10931e33a99674d3e18f029cb00e73c0ca6 - React-Fabric: c43e8769d6b720d2c32611b0ae7ffface76842bf - React-FabricComponents: 6972a6edabe96ac5cfefc8dd143963ba17272dcc - React-FabricImage: c052e4b3425e11de92d9dd1ee25a227134db2ba0 - React-featureflags: ef6d9f325c734948e78f33b8efb43bf977238468 - React-featureflagsnativemodule: 2251f9e8e0b40d2a37f5bdc00b273fcd329125f6 - React-graphics: 5a2770b6b286ba0ad72a14a9509861534c5eef3f - React-hermes: f359a48260528566f8f853bddf384c02b8cb2949 - React-idlecallbacksnativemodule: 03dbf07c8bf26f984df8190d3d7e2098e98b6dd5 - React-ImageManager: 6d45b6e394d6cf69bde02547f4b983f016b7141a - React-jserrorhandler: 7fcaca531916f83234c8ad149be7b617692bcc4a - React-jsi: dbfdf73cb3d6a643492f8ec5467f297be288e84a - React-jsiexecutor: 038b28ee4409b628fe2586965116720979e871a4 - React-jsinspector: 0f5e764dd1850129b89c669481655014f031ff56 - React-jsitracing: 44186c47f5c62bf7ba749b558b2bf711c3f33673 - React-logger: 9ba366e9cfa3e79ec3a8c410aefd4b17a4d0644b - React-Mapbuffer: 927b8179119d7c93f99508a7742eed98c2b084c5 - React-microtasksnativemodule: 18725ac176e6c06fc71f67d9baff9df2b1c49a8b - React-nativeconfig: a51e940e762664df72120e346f8a2411a8bf812b - React-NativeModulesApple: c5e9540097b9c43e10bd2d266ac23f281e55205d - React-perflogger: 6bc56e58320de192e61bce3a100e220d8870726e - React-performancetimeline: c97d7ed315c1014d27a441137d2d5c58805dc501 - React-RCTActionSheet: 940fb97b71ba9d9bf9006c4020596a2eb8bc1978 - React-RCTAnimation: 9a37fb56131c5760bcc3cb70cc33e580e3d29bbe - React-RCTAppDelegate: 3c12256673678b3f99402e594714e27e295e5d78 - React-RCTBlob: c6ac4fd9618815fd8ebaf5b5f1437b0237d7ea7e - React-RCTFabric: 0c8652844c41b29ed462f429dd94427a99cda188 - React-RCTImage: b8f90eeb40674a0ff6c6e24ac36f957c81d2c415 - React-RCTLinking: 75e8e2c890f73ace7e0711ba6720f3c8d63405c9 - React-RCTNetwork: 0eaac9e4d785bddb436050d5e66a62d502414b72 - React-RCTSettings: 2a4f1805b0e39a2cd0750db1c3a77587e3ff0fcf - React-RCTText: 7fa8de5043a0f4702d6e386cfa826852879a2d56 - React-RCTVibration: 6b28bacddaf1bbd9aead461e0f5a45a0e8fbf8c4 - React-rendererconsistency: 8599386d08814d071a3fcbbc731e936c7dcbecc2 - React-rendererdebug: 6a84e15872a09be0d26ae0ec62995d470063bd11 - React-rncore: 76f4e761106f182df3f4e1e1d7ae44f46a6a64b1 - React-RuntimeApple: 3f16cfbce698599fa1e3cddc99c901e07c7d63e5 - React-RuntimeCore: 86f39814a5d678a59c0a615ba44f8d53cb874be4 - React-runtimeexecutor: 882acfb23c688b22f5c29bc1a350163897f3cdbd - React-RuntimeHermes: 09b1dbd989ee69369c4a5454dae2e8a7d86ee2ca - React-runtimescheduler: c00b8de08f6fcd2b81b8ca747b1a5fa2ec368027 - React-utils: 3196837be56621a7994d279d3d1d1ee5df76d16a - ReactCodegen: e3c804e0e5ff95a5b0d612872f4d6b6976d5ce98 - ReactCommon: f41153c76e3681a145804f60644fb4516a8931e4 + RCTDeprecation: 8c3d64b4ab77cf28adefa261e04fd205c2715607 + RCTRequired: 70f9b55e176be07e234e2efe43b31de14d7cd5ba + RCTTypeSafety: 570d25d58d8795b1a146f5dee4965a05b6fdf8ac + React: 98bef15f5713ae63f574001e3bcaf9a92c5a5424 + React-callinvoker: 098d6fa440e4c5e26e86d95ab1a27ffe92ccbba2 + React-Core: ec4c0c63ca46f12e24bd380238b9272b3bc579cc + React-CoreModules: 8e67736ac9022e7fa9a09d9c30c91e6e611d86bf + React-cxxreact: a54e4a7230fc9c331ea59058cf39f1a41c0a7496 + React-debug: 4cb7435949a3bbb5cbdf29d274d50c3059c23535 + React-defaultsnativemodule: dcd579dc5f1f59c5031627ba54151e56889d9343 + React-domnativemodule: 20be56c3eb2c124822f82331458a6e60927fc3da + React-Fabric: 77a4b75a202c1975b0524a9d04987e93c2ee53d1 + React-FabricComponents: 65ef3f72de97661dc55674a3ce0b0708263cc1ea + React-FabricImage: 6e2bfb85cc05894d3f988f889e6a8362139d3a22 + React-featureflags: a98714f9f408d989f7fb16d1ea6f6058dd24372f + React-featureflagsnativemodule: 3831e8c7aa960816d00eeb7cd7953f4267e37423 + React-graphics: 9f5203606cfa89e7914239bdc5771fd1dfcaca15 + React-hermes: c94237d303bbd3aba0d43417ca8e4ecfb9f00706 + React-idlecallbacksnativemodule: 95ef9d135371a5a7a728a5c59f87a22b4a9ad9e7 + React-ImageManager: deba0bfa54716aa04f32c9648141faf469c1f511 + React-jserrorhandler: 9b892a7e328e6441f8c7831e667b478bc31d80c2 + React-jsi: e1e17756579b2ed1554ed803bc48aff1651a4035 + React-jsiexecutor: ad5d6786aa00d8aae50fb2bd6be72eaac23c3f76 + React-jsinspector: 77ceb59c0e01c163ddceccdb5183d021df99f632 + React-jsitracing: ebda4db50d6c053827906e06512e6bb0d51a3122 + React-logger: ea5ec74d80d24207594538033ff4cf7fdcdb6d23 + React-Mapbuffer: 147255f4cd32dc73987c067ed2e01024381d2835 + React-microtasksnativemodule: e5cb8c0ee48bc3876d073a322e5ab0cc5c1befa1 + React-nativeconfig: 3459eaba25311b605e292915276865acff79edd7 + React-NativeModulesApple: 5b960996730025e53bb942f3cb935e35f4fe1200 + React-perflogger: a854dbc279c26468748a4bbd844949f961b398ee + React-performancetimeline: 72af739db3ff110cbc62ea818beb41cdfa8c286b + React-RCTActionSheet: bdbdec4861ab93751210842f91b98477dfc0d3ce + React-RCTAnimation: f8dcd9090a96745571ccf4f4bb905353b20d6f97 + React-RCTAppDelegate: fa3c5f7fba3261db2ac533f81f6095d49af23bb2 + React-RCTBlob: ecc207c405e65b5c8c4e948c3d1169572269e4e8 + React-RCTFabric: b2c2dc2cd127806b6ebf1f937fe41b6747f04eb7 + React-RCTImage: ff4e8b9d8aae12f29c129b6849c433400c1dedb8 + React-RCTLinking: 452076a1fd482d293d1b13ca522a5f41472d42db + React-RCTNetwork: 8ed8baf8e46a5ba1658671c2330680a2214ad107 + React-RCTSettings: 714edfbe123921e8801df6ed5f054a12a5306592 + React-RCTText: a2b5b7b2a19bf80584a7395ec1a560db53162532 + React-RCTVibration: d68337b40ca102d47fe3a592590e1b8440cfb7d9 + React-rendererconsistency: c82e563e647840faaf5bd02a4061199608e7460b + React-rendererdebug: 9299a7ad9f021dfacbf021980f7e4cff5fa9e5ca + React-rncore: f8ad3c06d0054e8aa4646ca83d63c14b53ae80d7 + React-RuntimeApple: a71b7ad4cf7bfe432141a9f728004805fa759a2c + React-RuntimeCore: 6df4d5adcbd5abc24e78ec151a13471223552bf4 + React-runtimeexecutor: a2797d4cf81db77472d014aeb0a6a6e4efa6dd3b + React-RuntimeHermes: 5c952d1915a3e0c74348f254a48888da6014bf38 + React-runtimescheduler: 2b7837766e405dad8614b937febf36ef7b1b06c3 + React-utils: 6017adaa51a567cc397b13fa0e67a1e50480b42c + ReactCodegen: 670fa196b178d871d113afbef58fd45fd60c7903 + ReactCommon: dcc6f8545034e6f3d82f9555b39a2c03c2ccd005 RNGestureHandler: f6a669a7d4ed470acebf8637d347eb52ae07d401 SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d - Yoga: ac38ef8dfa1ce56514c8197f19175e97ab7e7c2d + Yoga: 132f64c229103548a5c95fe12e2ab492fbd5c793 PODFILE CHECKSUM: 2938316990faaa0507be8ddd9716fed018b28bde diff --git a/FabricExample/package.json b/FabricExample/package.json index 5bca03b0ab..f5175a87a8 100644 --- a/FabricExample/package.json +++ b/FabricExample/package.json @@ -15,18 +15,18 @@ "dependencies": { "patch-package": "^6.5.0", "postinstall-postinstall": "^2.1.0", - "react": "19.0.0-rc-fb9a90fa48-20240614", - "react-native": "0.75.0-rc.5", + "react": "18.3.1", + "react-native": "0.75.0-rc.6", "react-native-gesture-handler": "link:../" }, "devDependencies": { "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", - "@react-native/babel-preset": "0.75.0-rc.5", - "@react-native/eslint-config": "0.75.0-rc.5", - "@react-native/metro-config": "0.75.0-rc.5", - "@react-native/typescript-config": "0.75.0-rc.5", + "@react-native/babel-preset": "0.75.0-rc.6", + "@react-native/eslint-config": "0.75.0-rc.6", + "@react-native/metro-config": "0.75.0-rc.6", + "@react-native/typescript-config": "0.75.0-rc.6", "@tsconfig/react-native": "^3.0.0", "@types/jest": "^29.2.1", "@types/metro-config": "^0.76.3", @@ -38,7 +38,7 @@ "eslint": "^8.19.0", "jest": "^29.2.1", "prettier": "2.7.1", - "react-test-renderer": "19.0.0-rc-fb9a90fa48-20240614", + "react-test-renderer": "18.3.1", "typescript": "5.0.4" }, "engines": { diff --git a/FabricExample/yarn.lock b/FabricExample/yarn.lock index 7c632eb639..a3b8a85b82 100644 --- a/FabricExample/yarn.lock +++ b/FabricExample/yarn.lock @@ -2162,28 +2162,35 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@react-native-community/cli-clean@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-14.0.0-alpha.11.tgz#6b7b95533ec9483562e33d2aae4c0501d4fa41c1" - integrity sha512-pGhrL7xncBv6ciE6vybJHCRAz5c+ejchEdtIcuMBk3GDSP+cWh9A8jwwezMo/6zKDh1FMWSN7KxXFL0fr11Eyw== +"@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-alpha.11" + "@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-config@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-14.0.0-alpha.11.tgz#44605edc66f4fb7f65e7c9aeb71ed4c4a54e3abd" - integrity sha512-6De3iEH71LnEPUTQZXORnl8J5t1p3Lsp1iweFf5oaHdYlBPqPLt2pGZxtSc09oNIOdtmYW9RHm14OM6/mJm/xA== +"@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-alpha.11" + "@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-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@14.0.0-alpha.11": version "14.0.0-alpha.11" resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-14.0.0-alpha.11.tgz#952bb7c162e136ebff1950e7e80706eb3155fe21" @@ -2191,20 +2198,20 @@ dependencies: serve-static "^1.13.1" -"@react-native-community/cli-doctor@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-14.0.0-alpha.11.tgz#1ee0910be05113c920027bd042c3a658908ec203" - integrity sha512-i+awVrt964+MxneGuw/6GXdzm+MJtFyS9Jpuc87HApLxOY9AC4pVjFSi6tUUjC5SlORN3zuMo87DmzgQuqBR+w== +"@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-alpha.11" - "@react-native-community/cli-platform-android" "14.0.0-alpha.11" - "@react-native-community/cli-platform-apple" "14.0.0-alpha.11" - "@react-native-community/cli-platform-ios" "14.0.0-alpha.11" - "@react-native-community/cli-tools" "14.0.0-alpha.11" + "@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.10.0" + envinfo "^7.13.0" execa "^5.0.0" node-stream-zip "^1.9.1" ora "^5.4.1" @@ -2213,36 +2220,51 @@ wcwidth "^1.0.1" yaml "^2.2.1" -"@react-native-community/cli-platform-android@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-14.0.0-alpha.11.tgz#29bb5ee9e55eea0199d824335f54f7adc0cf50f5" - integrity sha512-DIKku0qcJ2pB75YTqBCHdJiQaMtFBkp8Hhloq57OpNMspDqLTuWjDDbcCtqD7LQb9MGpaf+b6FWUQFw9BNtVkQ== +"@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-alpha.11" + "@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-apple@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-14.0.0-alpha.11.tgz#7085a08b2f71f78291722196834e1e47a5d74ae5" - integrity sha512-tNKKte5K/tNNHy0Pxy/vJaSUw0jS7Cuo+F7tTT2ZgDmarp7IlfWnfVMKCtlSC3rR8ZCktmgPgteTf9SicSldxg== +"@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-alpha.11" + "@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-ios@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-14.0.0-alpha.11.tgz#d446583ebf1eeaf0066ddb649e28b345aa32149e" - integrity sha512-coHbTcymVsrOBYvch0M7JtKIRlfCc2GwXs7JEyG54CUKTfhLGDgWWTGOdAwWxiF4cDbj46Qr/4Es2AGJbmTBGA== +"@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-alpha.11" + "@react-native-community/cli-platform-apple" "14.0.0" + +"@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@14.0.0-alpha.11": version "14.0.0-alpha.11" @@ -2259,6 +2281,22 @@ 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@14.0.0-alpha.11": version "14.0.0-alpha.11" resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-14.0.0-alpha.11.tgz#95b148a3e65a4c2519af608b27ed7091e7e8b78a" @@ -2275,25 +2313,25 @@ shell-quote "^1.7.3" sudo-prompt "^9.0.0" -"@react-native-community/cli-types@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-14.0.0-alpha.11.tgz#d8ca6352659bc44d569bae3fb321ed52502168f0" - integrity sha512-jujAIipCmgc0mHXh9G+6cVT8wPaw1m8L3OSpajNKuARtjva+jGNYmx4itRP05c+SgFqN4eASEV563nNfI4Ja/g== +"@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@14.0.0-alpha.11": - version "14.0.0-alpha.11" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-14.0.0-alpha.11.tgz#e2fe662a68f0597b3ab738240c997301ce11b404" - integrity sha512-V32VYYa1dZJWt7ohxCYQIRa7DVGAXpw3RnP36BSfm4rqv1DD8ymDLM71PVZHoeHG6UWyNABXbTHTY+FOUYjKlQ== - dependencies: - "@react-native-community/cli-clean" "14.0.0-alpha.11" - "@react-native-community/cli-config" "14.0.0-alpha.11" - "@react-native-community/cli-debugger-ui" "14.0.0-alpha.11" - "@react-native-community/cli-doctor" "14.0.0-alpha.11" - "@react-native-community/cli-server-api" "14.0.0-alpha.11" - "@react-native-community/cli-tools" "14.0.0-alpha.11" - "@react-native-community/cli-types" "14.0.0-alpha.11" +"@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" @@ -2304,22 +2342,22 @@ prompts "^2.4.2" semver "^7.5.2" -"@react-native/assets-registry@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.5.tgz#738a524747a4a833365bd7920e71b2a8efd30d30" - integrity sha512-2nbPA2x1EbnEBj9kt3lMTS43lztjHEUWDqv8kiXoWeoOeqO6q4JZRMk6XMhjTmBwdC0Dx8r372npvD/qb8ZBnQ== +"@react-native/assets-registry@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.0-rc.6.tgz#8cc9a4f04f3e30685971fdad11a17fd13c098e36" + integrity sha512-oYZR7ctZxqOmeY2pSQeM07lCxHQlnaHUfKO7THPWFPjDZPl5qI6PucZ4OPL+1bcpYuBtTMw1TcHFyUkPQxyrwg== -"@react-native/babel-plugin-codegen@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.5.tgz#3212a11fa68370d20095c4ffde57aad921d44d36" - integrity sha512-menDCxTfAf3sW011AJY7baggXsQ58nH8qB+SeJGRdNc6LykpPN1G74zdd7jw3SdG/6xe9kKiixD8r5hwtPW8xw== +"@react-native/babel-plugin-codegen@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.0-rc.6.tgz#a5394046a9a0ca6424d8eb195de8d846cc2a0f19" + integrity sha512-exNlBthKDpTNK7uJGqFbjPOmmuaFYN/psbDbr+6Hl4d8GpCBwLIKx7yFu0ZPbgn0dmDnZZMgHTL3FmucAx1f2Q== dependencies: - "@react-native/codegen" "0.75.0-rc.5" + "@react-native/codegen" "0.75.0-rc.6" -"@react-native/babel-preset@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.5.tgz#5c6f63ad2673cbfc0a4838bff6da122ce0e38c22" - integrity sha512-ZlseSyNQkxnzefNasjldtV9mlpnZprnp7luHsyxtfV8FqGxBM4pMJTMl1Oryrwoo7gcXUGnwXncaHMLHtfkn5w== +"@react-native/babel-preset@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.0-rc.6.tgz#fcad77a2b6a87161c86919e08d72c02dc06e6c79" + integrity sha512-/hKumY+h1HRehmjWn33cvK+CzByamjAFxnmSMsBpbt86CQWSSqZt+0m360gtEwjnZOar2a08tAWxSF1LbdNv0Q== dependencies: "@babel/core" "^7.20.0" "@babel/plugin-proposal-export-default-from" "^7.0.0" @@ -2363,14 +2401,14 @@ "@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.75.0-rc.5" + "@react-native/babel-plugin-codegen" "0.75.0-rc.6" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" -"@react-native/codegen@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.5.tgz#51192698c9994afd7ff7204161c2a6d77aa3a9fd" - integrity sha512-s442iu2etAKZVTPKw+qj1hQhkzAEwhiHi4SdoIlJxn2ZqBCRXJb9JkrdwYMtl64Y2aZeM2fgt1OMgWc5jXrHPA== +"@react-native/codegen@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.0-rc.6.tgz#14285bd0cf937f000464cfa5212839c98870747e" + integrity sha512-6BxKl/oIEz1Cjfm4QFXfZA8JDRsQpNQxvoJhmv/uAzhzW+MmVe1Q6hX9fptVQ+0YwJpYgcK03nvfy2oraaBBRQ== dependencies: "@babel/parser" "^7.20.0" glob "^7.1.1" @@ -2380,15 +2418,15 @@ mkdirp "^0.5.1" nullthrows "^1.1.1" -"@react-native/community-cli-plugin@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.5.tgz#c367e8b12ca0b679c32f572fe18454a2e553f14a" - integrity sha512-NGVi7RsdCTa1lnmS0GY8mn6+epa+SrDAkaar0/nYRbKAHhA6O8MyjC7t5p3vx2F1UUDNjrfW7NPSH/tii5gr9Q== +"@react-native/community-cli-plugin@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.0-rc.6.tgz#7e652c4dfecba52eb5821cf6f31eb3faefd8b35e" + integrity sha512-RaE/l1VzT1EPzQvGKDNdozWQVpc62dSg2RwWcMx96gsCSpCQnbjoUQhWovEcFFp0qELI+qJUpDmmJdpZlmajFw== dependencies: "@react-native-community/cli-server-api" "14.0.0-alpha.11" "@react-native-community/cli-tools" "14.0.0-alpha.11" - "@react-native/dev-middleware" "0.75.0-rc.5" - "@react-native/metro-babel-transformer" "0.75.0-rc.5" + "@react-native/dev-middleware" "0.75.0-rc.6" + "@react-native/metro-babel-transformer" "0.75.0-rc.6" chalk "^4.0.0" execa "^5.1.1" metro "^0.80.3" @@ -2398,18 +2436,18 @@ querystring "^0.2.1" readline "^1.3.0" -"@react-native/debugger-frontend@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.5.tgz#2201a6beda17e0dc7a9fb32b9053ce11a5eb4ce9" - integrity sha512-m+e3/+V06bNG6P8e+3hu4DcNP1GH3FflPLMtEY1SD4T7PyPJXlFWu8ApOm1FCuQA8ObY8nx6C3vzMlyjoYQFUA== +"@react-native/debugger-frontend@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.0-rc.6.tgz#f1659b55804844a0215e83dd0aa15500db4b2b5a" + integrity sha512-gMaZDGQtqU3Ces99Fip9vY/wboTkexln/aIejn17gNizeripJNj9CbxwfjbsrQYNIbUyV2p06FIJxJAIrMZh4Q== -"@react-native/dev-middleware@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.5.tgz#60a50aa41be8907455d86d301328a7e72e1008eb" - integrity sha512-NbMISFfV2XzBsxzbn/QGS6wqAxLPUKoKwFASRWKRpqo23q62H5xWRuvvvMPFpemb/MoFEGpTxc5ce5niNds/aQ== +"@react-native/dev-middleware@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.0-rc.6.tgz#e14d8308ba1d0d38961a53b52ec5ed63a37b665c" + integrity sha512-wlAAl5ThCn+J14rK0eXBzAtd6z/Q5MrS8+gAj7mqn8WlCOrfazdahyjeMDfdJg3ZGt9VK3rpit3hnK66xQH+Hw== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.75.0-rc.5" + "@react-native/debugger-frontend" "0.75.0-rc.6" chrome-launcher "^0.15.2" chromium-edge-launcher "^0.2.0" connect "^3.6.5" @@ -2421,14 +2459,14 @@ serve-static "^1.13.1" ws "^6.2.2" -"@react-native/eslint-config@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.5.tgz#9ae039466cd88797ef48fe63c6e3e9ba23f2e6ba" - integrity sha512-FGR0LEyhyhjBnA4SDEo6Vk6En/00dVgcCc+3aynZr1pOadg9mg25dVCz6Y5tQENQZntKDRijUb1Yt1yVeuyKXA== +"@react-native/eslint-config@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.75.0-rc.6.tgz#78a26ad620665a1005ea8e3e719042fbcc498841" + integrity sha512-E+TilsvtmcJQEj6dOcJDyQ8xcvyomPdi797a55lUFeofd6njO7XnysYlqHIFgDosbDVYIYCN1QnPoQh1JdiQfQ== dependencies: "@babel/core" "^7.20.0" "@babel/eslint-parser" "^7.20.0" - "@react-native/eslint-plugin" "0.75.0-rc.5" + "@react-native/eslint-plugin" "0.75.0-rc.6" "@typescript-eslint/eslint-plugin" "^7.1.1" "@typescript-eslint/parser" "^7.1.1" eslint-config-prettier "^8.5.0" @@ -2439,55 +2477,55 @@ eslint-plugin-react-hooks "^4.6.0" eslint-plugin-react-native "^4.0.0" -"@react-native/eslint-plugin@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.5.tgz#e831422062a6ff6d32f4fa6dfad0e57d54c1c483" - integrity sha512-w56HbJySehyIOtYCYWvDaJtsGt26YP99YmMcoa6YVSWacOKC9rokW0XTBTjSnaZHiXPoj09IgARi6w65ec9OKA== +"@react-native/eslint-plugin@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.75.0-rc.6.tgz#ff4babf59dc3b93b5f3c718d45eb09375e2ae38e" + integrity sha512-WKTxX3a+K4aJmqk+vBs+7btJ/XbwCmDYDAeLOxfXETHuzZzw3wLJlnYg8T8+hGVj1GqX8yAzIfxY+XDcvIaF/A== -"@react-native/gradle-plugin@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.5.tgz#e12c92a74dab6dc8e484aff555a0419a7612a6dc" - integrity sha512-Cvl1y+KcbO/bxWi67QgV3tJO/yaoCNNXMjrnlRPpBkhNNBoGSfgdmxVHV7vGQH+rUToSC28TeEARXkJ1Rig3Ng== +"@react-native/gradle-plugin@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.0-rc.6.tgz#5ec018abc3fc13d78b0533fcffcf797944b40dc7" + integrity sha512-9CSA48GI0xwK4D8ElIl9oZGE855+vCZNSHFy8wb/YQraRgVRCXY4SLPdcZxnXQ/a57nvjqkldo7gIB91TNITrw== -"@react-native/js-polyfills@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.5.tgz#c0392451d8de607e61abf7ae4da6a270b1d8d4ea" - integrity sha512-CCkSco2YwgDqRltJ9XxU1474gMTTom4Cf28MeOdTZezn5jmuJ7naJNaD/UTvik1MyR3CShrS9GMQ61u6Rf57lw== +"@react-native/js-polyfills@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.0-rc.6.tgz#baa51edd9dbd9d6b179ec205b247ca78a53c142f" + integrity sha512-cXw8mLNc+64QMQdm25d06pBb//6zi7uG2QOcyN1Yf9KXoRZPSlK9dO3LSRxOM8dcJZOUt13gHUc5XzpWMcY1oQ== -"@react-native/metro-babel-transformer@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.5.tgz#51420a77f176985d71ff1b8d259e4fbfb4508298" - integrity sha512-XMCvT8oz11Vwa0PjE3xg5T6Qu1Q1ZwhkBn9RDXKnPMjULkELOyNWxHPfwoyjLEemS7ThK7SGQbPZF2YpyKzTPA== +"@react-native/metro-babel-transformer@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.0-rc.6.tgz#3b4abdf111f5f69a98075e5f86690a2a92142f6e" + integrity sha512-cN9nvSgfqF5Ocv5ci0VZCULLZ03dYrunTN8YUtS93z21xk6fiuv/VbNriJ3tcQBqipyxHQUisAf/RFOhoCEmFw== dependencies: "@babel/core" "^7.20.0" - "@react-native/babel-preset" "0.75.0-rc.5" + "@react-native/babel-preset" "0.75.0-rc.6" hermes-parser "0.22.0" nullthrows "^1.1.1" -"@react-native/metro-config@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.5.tgz#2723f9adea97acfda733eeba30d9325db5603798" - integrity sha512-41xBYcYXzwDOcaxeFp8gcuxblF1F7xBvkPNEQkYIijaoP+ePqGnvO3lnanx7ZnRyNJ2avH+GqujVtovh9Ayq+g== +"@react-native/metro-config@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.0-rc.6.tgz#00bfb9a0f55043f0f164e0a65003ae16f422425c" + integrity sha512-aVbjvH7nIO7rXEC+fNAJh+frKE7hV+nm561TUMoVWdbgc1KQEAPBBySuX8jllRoa7QRlIXh2p86M3CH7A2aqbQ== dependencies: - "@react-native/js-polyfills" "0.75.0-rc.5" - "@react-native/metro-babel-transformer" "0.75.0-rc.5" + "@react-native/js-polyfills" "0.75.0-rc.6" + "@react-native/metro-babel-transformer" "0.75.0-rc.6" metro-config "^0.80.3" metro-runtime "^0.80.3" -"@react-native/normalize-colors@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.5.tgz#edfa51fa3f11607128a44b42446acf762ce6af19" - integrity sha512-44PBsJXIhKB/2ahLK10HNt/YYHDQWPuqIy36FYPpKTbk3HJWeJaMgdEBq3qmuRQhaS7dIIrNU5cWT6sHpa83dA== +"@react-native/normalize-colors@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.0-rc.6.tgz#23f5998f26a7a0ffb7daba7470a183abca7fd631" + integrity sha512-QVcA/LbhF+QanF7CkjKjGl81IcDwoqTFZ04uoORFayEFBtpdZ+ha5X+QkH3DMdBcZdOwGQHtX7q9Eso/6bA0vA== -"@react-native/typescript-config@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.5.tgz#f4d611330c56d8ace758caf1c6c0a1dc75bd5925" - integrity sha512-sI+A0jMgdljrlXK5nDer6Ui+Ve8NRYHgvJU6cW+32Bweuje2rhQgtuUWL5UIA5DmguIEkTDWAqcyCUgTVZE47Q== +"@react-native/typescript-config@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.75.0-rc.6.tgz#487bd93952b5c76011c3a5b22436b13bfdcb4ee2" + integrity sha512-19SbzOKLrRoevsY7Io2Gf7NMTEkEpKEq9Rc5Fo6NHUffvLAjDtavFnxF9zhAflPAm9Q8qYNBiSgbOzomteSN1A== -"@react-native/virtualized-lists@0.75.0-rc.5": - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.5.tgz#3ceec57aa398c3dd68d5402916ba24b4494bea1c" - integrity sha512-TkZsh0+aMaeI95Up1uFypTvjHbRT9rLo+ZseSctW02U5RgGwIjtSbBtjvj+V6xP4qU3uTLSC4EguiOgJrMEiqA== +"@react-native/virtualized-lists@0.75.0-rc.6": + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.0-rc.6.tgz#7e1ac59ce2bc9f7d4d3d12ff08c75f284eea028c" + integrity sha512-RyhY6yb3pHbOGmJc4tLlTxhrJ98OiwQJdm+7v1kl2KenpXWhBrsLK+bJ/KfnK8Lm6i1AonMznVsjitx9MlRjgg== dependencies: invariant "^2.2.4" nullthrows "^1.1.1" @@ -3739,10 +3777,10 @@ env-paths@^2.2.1: resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== -envinfo@^7.10.0: - version "7.11.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" - integrity sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg== +envinfo@^7.13.0: + version "7.13.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.13.0.tgz#81fbb81e5da35d74e814941aeab7c325a606fb31" + integrity sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q== error-ex@^1.3.1: version "1.3.2" @@ -5501,7 +5539,7 @@ logkitty@^0.7.1: dayjs "^1.8.15" yargs "^15.1.0" -loose-envify@^1.0.0, loose-envify@^1.4.0: +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== @@ -6595,10 +6633,10 @@ react-devtools-core@^5.3.1: shell-quote "^1.6.1" ws "^7" -react-is@19.0.0-rc-fb9a90fa48-20240614: - version "19.0.0-rc-fb9a90fa48-20240614" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.0.0-rc-fb9a90fa48-20240614.tgz#6987893799abdedf2e9929e31541cb6d7dc8285a" - integrity sha512-60qI7v1B9RhmZwjTCnAgzcuABOQsIH20vTbETQPaze96s1lY2lSawv9dvXAfF8Z1MIqOppWSKLNOshF0WsZ3OA== +"react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" @@ -6610,31 +6648,26 @@ 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@^18.0.0: - version "18.3.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" - integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== - "react-native-gesture-handler@link:..": version "0.0.0" uid "" -react-native@0.75.0-rc.5: - version "0.75.0-rc.5" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.5.tgz#8dd53b602d2adf0a233f68642ca272cbd72945b6" - integrity sha512-MqkKVr/jSvMhGKGRubVs61sHyybiZk50dc6saLsUgYeTQBSLQPqileKvIfNvvrrkdMgPw3FgROE1DJIxHj8nRw== +react-native@0.75.0-rc.6: + version "0.75.0-rc.6" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.0-rc.6.tgz#afae15029c742ccc378f1e289134da5bff7c9df4" + integrity sha512-mzWo+InmaS76jrWKEECdaqPeB+nD/4YXTYK+mWSzH4gOIs2DBDohmlckOs5k0+6rpa4ndr9GpghDTGQqzTr+jQ== dependencies: "@jest/create-cache-key-function" "^29.6.3" - "@react-native-community/cli" "14.0.0-alpha.11" - "@react-native-community/cli-platform-android" "14.0.0-alpha.11" - "@react-native-community/cli-platform-ios" "14.0.0-alpha.11" - "@react-native/assets-registry" "0.75.0-rc.5" - "@react-native/codegen" "0.75.0-rc.5" - "@react-native/community-cli-plugin" "0.75.0-rc.5" - "@react-native/gradle-plugin" "0.75.0-rc.5" - "@react-native/js-polyfills" "0.75.0-rc.5" - "@react-native/normalize-colors" "0.75.0-rc.5" - "@react-native/virtualized-lists" "0.75.0-rc.5" + "@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/assets-registry" "0.75.0-rc.6" + "@react-native/codegen" "0.75.0-rc.6" + "@react-native/community-cli-plugin" "0.75.0-rc.6" + "@react-native/gradle-plugin" "0.75.0-rc.6" + "@react-native/js-polyfills" "0.75.0-rc.6" + "@react-native/normalize-colors" "0.75.0-rc.6" + "@react-native/virtualized-lists" "0.75.0-rc.6" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" @@ -6656,7 +6689,7 @@ react-native@0.75.0-rc.5: react-devtools-core "^5.3.1" react-refresh "^0.14.0" regenerator-runtime "^0.13.2" - scheduler "0.25.0-rc-fb9a90fa48-20240614" + scheduler "0.24.0-canary-efb381bbf-20230505" semver "^7.1.3" stacktrace-parser "^0.1.10" whatwg-fetch "^3.0.0" @@ -6673,18 +6706,29 @@ react-refresh@^0.4.0: resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53" integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== -react-test-renderer@19.0.0-rc-fb9a90fa48-20240614: - version "19.0.0-rc-fb9a90fa48-20240614" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.0.0-rc-fb9a90fa48-20240614.tgz#6657b3d05a533afad5ea0516f9ed29cadf72334f" - integrity sha512-cV3mGgsKTJCB8f4tZxWIp0ot4PMgx791XTkwpapf06ZlUk5BCP3C1CbIqRXcKeiQODvFJClZX26TFTPAklTq7A== +react-shallow-renderer@^16.15.0: + version "16.15.0" + resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457" + integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA== + dependencies: + object-assign "^4.1.1" + react-is "^16.12.0 || ^17.0.0 || ^18.0.0" + +react-test-renderer@18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.3.1.tgz#e693608a1f96283400d4a3afead6893f958b80b4" + integrity sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA== dependencies: - react-is "19.0.0-rc-fb9a90fa48-20240614" - scheduler "0.25.0-rc-fb9a90fa48-20240614" + react-is "^18.3.1" + react-shallow-renderer "^16.15.0" + scheduler "^0.23.2" -react@19.0.0-rc-fb9a90fa48-20240614: - version "19.0.0-rc-fb9a90fa48-20240614" - resolved "https://registry.yarnpkg.com/react/-/react-19.0.0-rc-fb9a90fa48-20240614.tgz#90eb43a0b005e8cc3cbf0d801c14816d01df1b08" - integrity sha512-nvE3Gy+IOIfH/DXhkyxFVQSrITarFcQz4+shzC/McxQXEUSonpw2oDy/Wi9hdDtV3hlP12VYuDL95iiBREedNQ== +react@18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== + dependencies: + loose-envify "^1.1.0" readable-stream@^3.4.0: version "3.6.0" @@ -6924,10 +6968,19 @@ safe-regex-test@^1.0.0: get-intrinsic "^1.1.3" is-regex "^1.1.4" -scheduler@0.25.0-rc-fb9a90fa48-20240614: - version "0.25.0-rc-fb9a90fa48-20240614" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0-rc-fb9a90fa48-20240614.tgz#9ee11063b7c0f47aef3fea53d9f1be3f13794dce" - integrity sha512-HHqQ/SqbeiDfXXVKgNxTpbQTD4n7IUb4hZATvHjp03jr3TF7igehCyHdOjeYTrzIseLO93cTTfSb5f4qWcirMQ== +scheduler@0.24.0-canary-efb381bbf-20230505: + version "0.24.0-canary-efb381bbf-20230505" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz#5dddc60e29f91cd7f8b983d7ce4a99c2202d178f" + integrity sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA== + dependencies: + loose-envify "^1.1.0" + +scheduler@^0.23.2: + version "0.23.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" + integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== + dependencies: + loose-envify "^1.1.0" selfsigned@^2.4.1: version "2.4.1" diff --git a/src/handlers/createHandler.tsx b/src/handlers/createHandler.tsx index a14dbf05e6..c13807bf4a 100644 --- a/src/handlers/createHandler.tsx +++ b/src/handlers/createHandler.tsx @@ -291,9 +291,9 @@ export default function createHandler< this.viewNode = node; const child = React.Children.only(this.props.children); - // @ts-ignore React 19 moved ref to props and shows warning when trying to access it directly on a node - const ref: any = React.createFactory ? child?.ref : child?.props?.ref; - if (ref !== null && ref !== undefined) { + // TODO(TS) fix ref type + const { ref }: any = child; + if (ref !== null) { if (typeof ref === 'function') { ref(node); } else { From 2e0619802bb3db99a79f2ee7252b8374032b373c Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Tue, 30 Jul 2024 09:45:36 +0200 Subject: [PATCH 9/9] Unify `isFormsStackingContext` --- apple/RNGestureHandlerModule.mm | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/apple/RNGestureHandlerModule.mm b/apple/RNGestureHandlerModule.mm index c29d39ca87..1e6fb0a105 100644 --- a/apple/RNGestureHandlerModule.mm +++ b/apple/RNGestureHandlerModule.mm @@ -100,16 +100,10 @@ void decorateRuntime(jsi::Runtime &runtime) return jsi::Value::null(); } - auto arg = arguments[0].asObject(runtime); - - if (arg.hasNativeState(runtime)) { - auto shadowNodeWrapper = arg.getNativeState(runtime); - bool isFormsStackingContext = - shadowNodeWrapper->shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); - return jsi::Value(isFormsStackingContext); - } - - return jsi::Value(true); + auto shadowNodeWrapper = arguments[0].asObject(runtime).getNativeState(runtime); + bool isFormsStackingContext = + shadowNodeWrapper->shadowNode->getTraits().check(ShadowNodeTraits::FormsStackingContext); + return jsi::Value(isFormsStackingContext); }); runtime.global().setProperty(runtime, "isFormsStackingContext", std::move(isFormsStackingContext)); }