From 5d5a43505e45e2362b74c81cbd44b132979ba448 Mon Sep 17 00:00:00 2001 From: Tomek Zawadzki Date: Mon, 13 Jan 2025 08:36:01 +0100 Subject: [PATCH] Bump example apps to React Native 0.77 (#6768) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary This PR bumps `react-native` in paper-example and fabric-example from `0.76.5` to `0.77.0-rc.6` (golden RC) accordingly to https://react-native-community.github.io/upgrade-helper/?from=0.76.5&to=0.77.0-rc.6. Apart from this, changes have been made in macos-example, tvos-example and web-example to align versions of common native dependencies so they are hoisted by yarn. I had to patch `@shopify/flash-list`: * https://github.com/Shopify/flash-list/issues/1466 – fixes Android build * https://github.com/Shopify/flash-list/pull/1041 – fixes `scrollTo` example Changes required by Reanimated to support RN 0.77 have been moved to separate PRs for the sake of atomicity and transparency: * https://github.com/software-mansion/react-native-reanimated/pull/6875 * https://github.com/software-mansion/react-native-reanimated/pull/6876 * https://github.com/software-mansion/react-native-reanimated/pull/6883 * https://github.com/software-mansion/react-native-reanimated/pull/6884 ## Test plan --------- Co-authored-by: Krzysztof Piaskowy --- ...pify-flash-list-npm-1.7.2-2a363895ca.patch | 73 ++ apps/common-app/package.json | 20 +- apps/fabric-example/android/build.gradle | 4 +- .../FabricExample.xcodeproj/project.pbxproj | 97 +- .../ios/FabricExample/AppDelegate.h | 6 - .../ios/FabricExample/AppDelegate.mm | 36 - .../ios/FabricExample/AppDelegate.swift | 30 + apps/fabric-example/ios/FabricExample/main.m | 10 - apps/fabric-example/ios/Podfile | 5 - apps/fabric-example/ios/Podfile.lock | 1153 ++++++++--------- apps/fabric-example/package.json | 36 +- apps/macos-example/Gemfile.lock | 2 +- .../MacOSExample.xcodeproj/project.pbxproj | 2 + apps/macos-example/macos/Podfile.lock | 16 +- apps/macos-example/package.json | 18 +- apps/paper-example/android/build.gradle | 4 +- apps/paper-example/ios/Podfile | 5 - apps/paper-example/ios/Podfile.lock | 1113 ++++++++-------- .../project.pbxproj | 97 +- .../ios/ReanimatedExample/AppDelegate.h | 6 - .../ios/ReanimatedExample/AppDelegate.mm | 31 - .../ios/ReanimatedExample/AppDelegate.swift | 30 + .../ios/ReanimatedExample/main.m | 10 - apps/paper-example/package.json | 37 +- apps/tvos-example/Gemfile.lock | 2 +- apps/web-example/package.json | 2 +- .../eslint-plugin-reanimated/package.json | 2 +- packages/react-native-reanimated/package.json | 15 +- .../plugin/package.json | 2 +- yarn.lock | 1005 +++++++------- 30 files changed, 1887 insertions(+), 1982 deletions(-) create mode 100644 .yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch delete mode 100644 apps/fabric-example/ios/FabricExample/AppDelegate.h delete mode 100644 apps/fabric-example/ios/FabricExample/AppDelegate.mm create mode 100644 apps/fabric-example/ios/FabricExample/AppDelegate.swift delete mode 100644 apps/fabric-example/ios/FabricExample/main.m delete mode 100644 apps/paper-example/ios/ReanimatedExample/AppDelegate.h delete mode 100644 apps/paper-example/ios/ReanimatedExample/AppDelegate.mm create mode 100644 apps/paper-example/ios/ReanimatedExample/AppDelegate.swift delete mode 100644 apps/paper-example/ios/ReanimatedExample/main.m diff --git a/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch b/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch new file mode 100644 index 000000000000..1ed2079af493 --- /dev/null +++ b/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch @@ -0,0 +1,73 @@ +diff --git a/package.json b/package.json +index b30a5bacd99db50c5d09d7662f06bfbccca599a1..9915fa6b5d96243a00e16100da605e0f9596bf53 100644 +--- a/package.json ++++ b/package.json +@@ -26,6 +26,7 @@ + "license": "MIT", + "homepage": "https://shopify.github.io/flash-list/", + "main": "dist/index.js", ++ "react-native": "src/index.ts", + "types": "dist/index.d.ts", + "scripts": { + "up": "bundle install && yarn fixture:rn:up && yarn e2e:up && yarn build", +diff --git a/src/FlashList.tsx b/src/FlashList.tsx +index 0e9f071a53d113e85f3099ccf239d1f3d06361b6..877896f778b4fa27977b1aed9b550e2880c11e79 100644 +--- a/src/FlashList.tsx ++++ b/src/FlashList.tsx +@@ -4,6 +4,7 @@ import { + RefreshControl, + LayoutChangeEvent, + NativeSyntheticEvent, ++ ScrollViewComponent, + StyleSheet, + NativeScrollEvent, + } from "react-native"; +@@ -842,6 +843,12 @@ class FlashList extends React.PureComponent< + return this.rlvRef?.getScrollableNode?.() || null; + } + ++ public getNativeScrollRef(): React.ElementRef< ++ typeof ScrollViewComponent ++ > | null { ++ return this.rlvRef?.getNativeScrollRef?.() || null; ++ } ++ + /** + * Allows access to internal recyclerlistview. This is useful for enabling access to its public APIs. + * Warning: We may swap recyclerlistview for something else in the future. Use with caution. +diff --git a/android/src/paper/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java b/android/src/paper/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java +index 4c9080790230cc75f48e4ee68c84df1080986bd6..29f81e03caed5c97401de153c53fe71c3cce9e10 100644 +--- a/android/src/paper/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java ++++ b/android/src/paper/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java +@@ -11,10 +11,11 @@ package com.facebook.react.viewmanagers; + + import android.view.View; + import androidx.annotation.Nullable; ++import com.facebook.react.uimanager.BaseViewManager; + import com.facebook.react.uimanager.BaseViewManagerDelegate; +-import com.facebook.react.uimanager.BaseViewManagerInterface; ++import com.facebook.react.uimanager.LayoutShadowNode; + +-public class AutoLayoutViewManagerDelegate & AutoLayoutViewManagerInterface> extends BaseViewManagerDelegate { ++public class AutoLayoutViewManagerDelegate & AutoLayoutViewManagerInterface> extends BaseViewManagerDelegate { + public AutoLayoutViewManagerDelegate(U viewManager) { + super(viewManager); + } +diff --git a/android/src/paper/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java b/android/src/paper/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java +index 2b64af7d5ff936793bf027cba249f31777daba9f..4ba6e5fd815aeac1da56374c8c48a9fcd7f57061 100644 +--- a/android/src/paper/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java ++++ b/android/src/paper/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java +@@ -11,10 +11,11 @@ package com.facebook.react.viewmanagers; + + import android.view.View; + import androidx.annotation.Nullable; ++import com.facebook.react.uimanager.BaseViewManager; + import com.facebook.react.uimanager.BaseViewManagerDelegate; +-import com.facebook.react.uimanager.BaseViewManagerInterface; ++import com.facebook.react.uimanager.LayoutShadowNode; + +-public class CellContainerManagerDelegate & CellContainerManagerInterface> extends BaseViewManagerDelegate { ++public class CellContainerManagerDelegate & CellContainerManagerInterface> extends BaseViewManagerDelegate { + public CellContainerManagerDelegate(U viewManager) { + super(viewManager); + } diff --git a/apps/common-app/package.json b/apps/common-app/package.json index a42b01d9ec81..b29c3a976569 100644 --- a/apps/common-app/package.json +++ b/apps/common-app/package.json @@ -30,14 +30,14 @@ "react-strict-dom": "*" }, "devDependencies": { - "@react-native-async-storage/async-storage": "^1.24.0", - "@react-native-community/slider": "^4.5.5", - "@react-native-masked-view/masked-view": "^0.3.1", + "@react-native-async-storage/async-storage": "2.1.0", + "@react-native-community/slider": "4.5.5", + "@react-native-masked-view/masked-view": "0.3.2", "@react-navigation/bottom-tabs": "^7.0.0", "@react-navigation/native": "^7.0.0", "@react-navigation/native-stack": "^7.0.0", "@react-navigation/stack": "^7.0.0", - "@shopify/flash-list": "^1.7.1", + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch", "@tsconfig/react-native": "^3.0.0", "@types/d3-shape": "^3.1.1", "d3-shape": "^3.2.0", @@ -46,13 +46,13 @@ "patch-package": "^8.0.0", "prettier": "^3.3.3", "react": "18.3.1", - "react-native": "0.76.5", - "react-native-gesture-handler": "2.20.2", - "react-native-pager-view": "^6.4.1", + "react-native": "0.77.0-rc.6", + "react-native-gesture-handler": "2.22.0", + "react-native-pager-view": "6.6.1", "react-native-reanimated": "workspace:*", - "react-native-safe-area-context": "^4.13.1", - "react-native-screens": "^4.0.0", - "react-native-svg": "^15.8.0", + "react-native-safe-area-context": "5.1.0", + "react-native-screens": "4.5.0", + "react-native-svg": "15.11.1", "react-strict-dom": "0.0.27", "typescript": "~5.3.0" } diff --git a/apps/fabric-example/android/build.gradle b/apps/fabric-example/android/build.gradle index a9ea023695da..a62d6daa436a 100644 --- a/apps/fabric-example/android/build.gradle +++ b/apps/fabric-example/android/build.gradle @@ -4,8 +4,8 @@ buildscript { minSdkVersion = 24 compileSdkVersion = 35 targetSdkVersion = 34 - ndkVersion = "26.1.10909125" - kotlinVersion = "1.9.24" + ndkVersion = "27.1.12297006" + kotlinVersion = "2.0.21" } repositories { google() diff --git a/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj b/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj index 300f28d36dde..92b635050692 100644 --- a/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj +++ b/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj @@ -9,18 +9,16 @@ /* Begin PBXBuildFile section */ 00E356F31AD99517003FC87E /* FabricExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FabricExampleTests.m */; }; 0C80B921A6F3F58F76C31292 /* libPods-FabricExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */; }; - 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 */; }; 1C6897ED63B54A0EA3142771 /* Poppins-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B0F6A560FF814A07A5056D5C /* Poppins-Medium.ttf */; }; 3118F5EAAC1849B3A846F878 /* Poppins-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 192DDE7394C0421AABAD1E39 /* Poppins-ExtraBold.ttf */; }; 36CFC86374C74A93AFC6F37B /* Poppins-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 40201E86F4154AF6BA7D9D68 /* Poppins-ExtraLight.ttf */; }; 3ED29A9583024AB287A348E3 /* Poppins-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5EE828465DFA40CCAD4C2BBB /* Poppins-Light.ttf */; }; - 7699B88040F8A987B510C191 /* libPods-FabricExample-FabricExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */; }; 7E23737D7AB942FC9F2DB5BC /* Poppins-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F48B9C5F2C7F46D4AF205A72 /* Poppins-Black.ttf */; }; 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; BD279FF3747F4A548A65D128 /* Poppins-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E7907DF98A294F2D9672CB3E /* Poppins-Regular.ttf */; }; BDBBD9F50A6744649FFA1379 /* Poppins-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 849F4FC4D7AC4BA291D6C4B4 /* Poppins-Thin.ttf */; }; + C200C1022D33B96D00F25439 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C200C1012D33B96D00F25439 /* AppDelegate.swift */; }; D509140DC52141079A0DB2B6 /* OFL.txt in Resources */ = {isa = PBXBuildFile; fileRef = C06453E54CB742B58CB6EFDC /* OFL.txt */; }; E218AE03408043D2A0CDC9E8 /* Poppins-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 973BD397ECB7436F828E47A9 /* Poppins-Bold.ttf */; }; F089D8C46C244B0FB512E5C3 /* Poppins-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DCAC1E7776A4A36A864F95E /* Poppins-SemiBold.ttf */; }; @@ -42,26 +40,21 @@ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* FabricExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FabricExampleTests.m; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* FabricExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FabricExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = FabricExample/AppDelegate.h; sourceTree = ""; }; - 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = FabricExample/AppDelegate.mm; sourceTree = ""; }; 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FabricExample/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FabricExample/Info.plist; sourceTree = ""; }; - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FabricExample/main.m; sourceTree = ""; }; 192DDE7394C0421AABAD1E39 /* Poppins-ExtraBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-ExtraBold.ttf"; path = "../assets/fonts/Poppins/Poppins-ExtraBold.ttf"; sourceTree = ""; }; - 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FabricExample-FabricExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.debug.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.debug.xcconfig"; sourceTree = ""; }; 40201E86F4154AF6BA7D9D68 /* Poppins-ExtraLight.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-ExtraLight.ttf"; path = "../assets/fonts/Poppins/Poppins-ExtraLight.ttf"; sourceTree = ""; }; 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; }; 5EE828465DFA40CCAD4C2BBB /* Poppins-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Light.ttf"; path = "../assets/fonts/Poppins/Poppins-Light.ttf"; sourceTree = ""; }; 7DCAC1E7776A4A36A864F95E /* Poppins-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-SemiBold.ttf"; path = "../assets/fonts/Poppins/Poppins-SemiBold.ttf"; sourceTree = ""; }; 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = FabricExample/LaunchScreen.storyboard; sourceTree = ""; }; 849F4FC4D7AC4BA291D6C4B4 /* Poppins-Thin.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Thin.ttf"; path = "../assets/fonts/Poppins/Poppins-Thin.ttf"; 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 = ""; }; 973BD397ECB7436F828E47A9 /* Poppins-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Bold.ttf"; path = "../assets/fonts/Poppins/Poppins-Bold.ttf"; sourceTree = ""; }; B0F6A560FF814A07A5056D5C /* Poppins-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Medium.ttf"; path = "../assets/fonts/Poppins/Poppins-Medium.ttf"; sourceTree = ""; }; C06453E54CB742B58CB6EFDC /* OFL.txt */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = OFL.txt; path = ../assets/fonts/Poppins/OFL.txt; sourceTree = ""; }; + C200C1012D33B96D00F25439 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = FabricExample/AppDelegate.swift; sourceTree = ""; }; E7907DF98A294F2D9672CB3E /* Poppins-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Regular.ttf"; path = "../assets/fonts/Poppins/Poppins-Regular.ttf"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; F48B9C5F2C7F46D4AF205A72 /* Poppins-Black.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Black.ttf"; path = "../assets/fonts/Poppins/Poppins-Black.ttf"; sourceTree = ""; }; @@ -73,7 +66,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7699B88040F8A987B510C191 /* libPods-FabricExample-FabricExampleTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -108,12 +100,10 @@ 13B07FAE1A68108700A75B9A /* FabricExample */ = { isa = PBXGroup; children = ( - 13B07FAF1A68108700A75B9A /* AppDelegate.h */, - 13B07FB01A68108700A75B9A /* AppDelegate.mm */, + C200C1012D33B96D00F25439 /* AppDelegate.swift */, 13B07FB51A68108700A75B9A /* Images.xcassets */, 13B07FB61A68108700A75B9A /* Info.plist */, 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, - 13B07FB71A68108700A75B9A /* main.m */, F4C3F7612BCFD500008A4CDE /* PrivacyInfo.xcprivacy */, ); name = FabricExample; @@ -124,7 +114,6 @@ children = ( ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */, - 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */, ); name = Frameworks; sourceTree = ""; @@ -183,8 +172,6 @@ children = ( 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */, 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */, - 5B7EB9410499542E8C5724F5 /* Pods-FabricExample-FabricExampleTests.debug.xcconfig */, - 89C6BE57DB24E9ADA2F236DE /* Pods-FabricExample-FabricExampleTests.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -196,12 +183,9 @@ isa = PBXNativeTarget; buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FabricExampleTests" */; buildPhases = ( - A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */, 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, - C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, - F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -248,7 +232,7 @@ TestTargetID = 13B07F861A680F5B00A75B9A; }; 13B07F861A680F5B00A75B9A = { - LastSwiftMigration = 1120; + LastSwiftMigration = 1620; }; }; }; @@ -337,7 +321,7 @@ }; 1232BDDFC9DE5BCE2776187D /* [CP-User] Generate metadata for clangd */ = { isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = true; + alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); @@ -346,28 +330,6 @@ shellPath = /bin/bash; shellScript = "../../../packages/react-native-reanimated/scripts/clangd-generate-xcode-metadata.sh"; }; - A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-FabricExample-FabricExampleTests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -390,23 +352,6 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -424,23 +369,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources.sh\"\n"; showEnvVarsInLog = 0; }; - F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -456,8 +384,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, - 13B07FC11A68108700A75B9A /* main.m in Sources */, + C200C1022D33B96D00F25439 /* AppDelegate.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -474,7 +401,6 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-FabricExample-FabricExampleTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -501,7 +427,6 @@ }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-FabricExample-FabricExampleTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; @@ -648,10 +573,7 @@ "-DFOLLY_CFG_NO_COROUTINES=1", "-DFOLLY_HAVE_CLOCK_GETTIME=1", ); - OTHER_LDFLAGS = ( - "$(inherited)", - " ", - ); + OTHER_LDFLAGS = "$(inherited) "; REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native"; SDKROOT = iphoneos; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; @@ -724,10 +646,7 @@ "-DFOLLY_CFG_NO_COROUTINES=1", "-DFOLLY_HAVE_CLOCK_GETTIME=1", ); - OTHER_LDFLAGS = ( - "$(inherited)", - " ", - ); + OTHER_LDFLAGS = "$(inherited) "; REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true; diff --git a/apps/fabric-example/ios/FabricExample/AppDelegate.h b/apps/fabric-example/ios/FabricExample/AppDelegate.h deleted file mode 100644 index 5d2808256ca0..000000000000 --- a/apps/fabric-example/ios/FabricExample/AppDelegate.h +++ /dev/null @@ -1,6 +0,0 @@ -#import -#import - -@interface AppDelegate : RCTAppDelegate - -@end diff --git a/apps/fabric-example/ios/FabricExample/AppDelegate.mm b/apps/fabric-example/ios/FabricExample/AppDelegate.mm deleted file mode 100644 index a2a83d49ad61..000000000000 --- a/apps/fabric-example/ios/FabricExample/AppDelegate.mm +++ /dev/null @@ -1,36 +0,0 @@ -#import "AppDelegate.h" - -#import - -@implementation AppDelegate - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions -{ - self.moduleName = @"FabricExample"; - // You can add your custom initial props in the dictionary below. - // They will be passed down to the ViewController used by React Native. - self.initialProps = @{}; - - return [super application:application didFinishLaunchingWithOptions:launchOptions]; -} - -- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge -{ - return [self bundleURL]; -} - -- (NSURL *)bundleURL -{ -#if DEBUG - return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; -#else - return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; -#endif -} - -- (BOOL)bridgelessEnabled -{ - return YES; -} - -@end diff --git a/apps/fabric-example/ios/FabricExample/AppDelegate.swift b/apps/fabric-example/ios/FabricExample/AppDelegate.swift new file mode 100644 index 000000000000..b59a95bb7be0 --- /dev/null +++ b/apps/fabric-example/ios/FabricExample/AppDelegate.swift @@ -0,0 +1,30 @@ +import UIKit +import React +import React_RCTAppDelegate +import ReactAppDependencyProvider + +@main +class AppDelegate: RCTAppDelegate { + override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { + self.moduleName = "FabricExample" + self.dependencyProvider = RCTAppDependencyProvider() + + // You can add your custom initial props in the dictionary below. + // They will be passed down to the ViewController used by React Native. + self.initialProps = [:] + + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } + + override func sourceURL(for bridge: RCTBridge) -> URL? { + self.bundleURL() + } + + override func bundleURL() -> URL? { +#if DEBUG + RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index") +#else + Bundle.main.url(forResource: "main", withExtension: "jsbundle") +#endif + } +} diff --git a/apps/fabric-example/ios/FabricExample/main.m b/apps/fabric-example/ios/FabricExample/main.m deleted file mode 100644 index d645c7246c42..000000000000 --- a/apps/fabric-example/ios/FabricExample/main.m +++ /dev/null @@ -1,10 +0,0 @@ -#import - -#import "AppDelegate.h" - -int main(int argc, char *argv[]) -{ - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); - } -} diff --git a/apps/fabric-example/ios/Podfile b/apps/fabric-example/ios/Podfile index 2cdfd9e79b7a..b28f34c38a1c 100644 --- a/apps/fabric-example/ios/Podfile +++ b/apps/fabric-example/ios/Podfile @@ -28,11 +28,6 @@ target 'FabricExample' do :app_path => "#{Pod::Config.instance.installation_root}/.." ) - target 'FabricExampleTests' do - inherit! :complete - # Pods for testing - end - post_install do |installer| # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202 react_native_post_install( diff --git a/apps/fabric-example/ios/Podfile.lock b/apps/fabric-example/ios/Podfile.lock index 450440c34f1a..4c09f0df1bd0 100644 --- a/apps/fabric-example/ios/Podfile.lock +++ b/apps/fabric-example/ios/Podfile.lock @@ -1,54 +1,58 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.76.5) - - fmt (9.1.0) + - fast_float (6.1.4) + - FBLazyVector (0.77.0-rc.6) + - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.76.5): - - hermes-engine/Pre-built (= 0.76.5) - - hermes-engine/Pre-built (0.76.5) - - RCT-Folly (2024.01.01.00): + - hermes-engine (0.77.0-rc.6): + - hermes-engine/Pre-built (= 0.77.0-rc.6) + - hermes-engine/Pre-built (0.77.0-rc.6) + - RCT-Folly (2024.11.18.00): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Default (= 2024.01.01.00) - - RCT-Folly/Default (2024.01.01.00): + - RCT-Folly/Default (= 2024.11.18.00) + - RCT-Folly/Default (2024.11.18.00): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Fabric (2024.01.01.00): + - RCT-Folly/Fabric (2024.11.18.00): - boost - DoubleConversion - - fmt (= 9.1.0) - - glog - - RCTDeprecation (0.76.5) - - RCTRequired (0.76.5) - - RCTTypeSafety (0.76.5): - - FBLazyVector (= 0.76.5) - - RCTRequired (= 0.76.5) - - React-Core (= 0.76.5) - - React (0.76.5): - - React-Core (= 0.76.5) - - React-Core/DevSupport (= 0.76.5) - - React-Core/RCTWebSocket (= 0.76.5) - - React-RCTActionSheet (= 0.76.5) - - React-RCTAnimation (= 0.76.5) - - React-RCTBlob (= 0.76.5) - - React-RCTImage (= 0.76.5) - - React-RCTLinking (= 0.76.5) - - React-RCTNetwork (= 0.76.5) - - React-RCTSettings (= 0.76.5) - - React-RCTText (= 0.76.5) - - React-RCTVibration (= 0.76.5) - - React-callinvoker (0.76.5) - - React-Core (0.76.5): - - glog - - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - RCTDeprecation (0.77.0-rc.6) + - RCTRequired (0.77.0-rc.6) + - RCTTypeSafety (0.77.0-rc.6): + - FBLazyVector (= 0.77.0-rc.6) + - RCTRequired (= 0.77.0-rc.6) + - React-Core (= 0.77.0-rc.6) + - React (0.77.0-rc.6): + - React-Core (= 0.77.0-rc.6) + - React-Core/DevSupport (= 0.77.0-rc.6) + - React-Core/RCTWebSocket (= 0.77.0-rc.6) + - React-RCTActionSheet (= 0.77.0-rc.6) + - React-RCTAnimation (= 0.77.0-rc.6) + - React-RCTBlob (= 0.77.0-rc.6) + - React-RCTImage (= 0.77.0-rc.6) + - React-RCTLinking (= 0.77.0-rc.6) + - React-RCTNetwork (= 0.77.0-rc.6) + - React-RCTSettings (= 0.77.0-rc.6) + - React-RCTText (= 0.77.0-rc.6) + - React-RCTVibration (= 0.77.0-rc.6) + - React-callinvoker (0.77.0-rc.6) + - React-Core (0.77.0-rc.6): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.76.5) + - React-Core/Default (= 0.77.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -60,10 +64,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/CoreModulesHeaders (0.76.5): + - React-Core/CoreModulesHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -77,10 +81,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/Default (0.76.5): + - React-Core/Default (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-cxxreact - React-featureflags @@ -93,13 +97,13 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/DevSupport (0.76.5): + - React-Core/DevSupport (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.76.5) - - React-Core/RCTWebSocket (= 0.76.5) + - React-Core/Default (= 0.77.0-rc.6) + - React-Core/RCTWebSocket (= 0.77.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -111,10 +115,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.76.5): + - React-Core/RCTActionSheetHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -128,10 +132,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTAnimationHeaders (0.76.5): + - React-Core/RCTAnimationHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -145,10 +149,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTBlobHeaders (0.76.5): + - React-Core/RCTBlobHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -162,10 +166,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTImageHeaders (0.76.5): + - React-Core/RCTImageHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -179,10 +183,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTLinkingHeaders (0.76.5): + - React-Core/RCTLinkingHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -196,10 +200,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTNetworkHeaders (0.76.5): + - React-Core/RCTNetworkHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -213,10 +217,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTSettingsHeaders (0.76.5): + - React-Core/RCTSettingsHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -230,10 +234,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTTextHeaders (0.76.5): + - React-Core/RCTTextHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -247,10 +251,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTVibrationHeaders (0.76.5): + - React-Core/RCTVibrationHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -264,12 +268,12 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTWebSocket (0.76.5): + - React-Core/RCTWebSocket (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.76.5) + - React-Core/Default (= 0.77.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -281,109 +285,86 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-CoreModules (0.76.5): - - DoubleConversion - - fmt (= 9.1.0) - - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.76.5) - - React-Core/CoreModulesHeaders (= 0.76.5) - - React-jsi (= 0.76.5) + - React-CoreModules (0.77.0-rc.6): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety (= 0.77.0-rc.6) + - React-Core/CoreModulesHeaders (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.76.5) - - ReactCodegen + - React-RCTFBReactNativeSpec + - React-RCTImage (= 0.77.0-rc.6) - ReactCommon - SocketRocket (= 0.7.1) - - React-cxxreact (0.76.5): + - React-cxxreact (0.77.0-rc.6): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-debug (= 0.76.5) - - React-jsi (= 0.76.5) + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-debug (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-jsinspector - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - React-runtimeexecutor (= 0.76.5) - - React-timing (= 0.76.5) - - React-debug (0.76.5) - - React-defaultsnativemodule (0.76.5): - - DoubleConversion - - glog + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - React-runtimeexecutor (= 0.77.0-rc.6) + - React-timing (= 0.77.0-rc.6) + - React-debug (0.77.0-rc.6) + - React-defaultsnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug + - RCT-Folly - React-domnativemodule - - React-Fabric - - React-featureflags - React-featureflagsnativemodule - - React-graphics - React-idlecallbacksnativemodule - - React-ImageManager + - React-jsi + - React-jsiexecutor - React-microtasksnativemodule - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - Yoga - - React-domnativemodule (0.76.5): - - DoubleConversion - - glog + - React-RCTFBReactNativeSpec + - React-domnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug + - RCT-Folly - React-Fabric - React-FabricComponents - - React-featureflags - React-graphics - - React-ImageManager - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.76.5): + - React-Fabric (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.76.5) - - React-Fabric/attributedstring (= 0.76.5) - - React-Fabric/componentregistry (= 0.76.5) - - React-Fabric/componentregistrynative (= 0.76.5) - - React-Fabric/components (= 0.76.5) - - React-Fabric/core (= 0.76.5) - - React-Fabric/dom (= 0.76.5) - - React-Fabric/imagemanager (= 0.76.5) - - React-Fabric/leakchecker (= 0.76.5) - - React-Fabric/mounting (= 0.76.5) - - React-Fabric/observers (= 0.76.5) - - React-Fabric/scheduler (= 0.76.5) - - React-Fabric/telemetry (= 0.76.5) - - React-Fabric/templateprocessor (= 0.76.5) - - React-Fabric/uimanager (= 0.76.5) + - React-Fabric/animations (= 0.77.0-rc.6) + - React-Fabric/attributedstring (= 0.77.0-rc.6) + - React-Fabric/componentregistry (= 0.77.0-rc.6) + - React-Fabric/componentregistrynative (= 0.77.0-rc.6) + - React-Fabric/components (= 0.77.0-rc.6) + - React-Fabric/core (= 0.77.0-rc.6) + - React-Fabric/dom (= 0.77.0-rc.6) + - React-Fabric/imagemanager (= 0.77.0-rc.6) + - React-Fabric/leakchecker (= 0.77.0-rc.6) + - React-Fabric/mounting (= 0.77.0-rc.6) + - React-Fabric/observers (= 0.77.0-rc.6) + - React-Fabric/scheduler (= 0.77.0-rc.6) + - React-Fabric/telemetry (= 0.77.0-rc.6) + - React-Fabric/templateprocessor (= 0.77.0-rc.6) + - React-Fabric/uimanager (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -393,12 +374,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.76.5): + - React-Fabric/animations (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -413,12 +395,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.76.5): + - React-Fabric/attributedstring (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -433,12 +416,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.76.5): + - React-Fabric/componentregistry (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -453,12 +437,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.76.5): + - React-Fabric/componentregistrynative (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -473,20 +458,21 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.76.5): + - React-Fabric/components (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.76.5) - - React-Fabric/components/root (= 0.76.5) - - React-Fabric/components/view (= 0.76.5) + - React-Fabric/components/legacyviewmanagerinterop (= 0.77.0-rc.6) + - React-Fabric/components/root (= 0.77.0-rc.6) + - React-Fabric/components/view (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -496,12 +482,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.76.5): + - React-Fabric/components/legacyviewmanagerinterop (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -516,12 +503,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.76.5): + - React-Fabric/components/root (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -536,12 +524,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.76.5): + - React-Fabric/components/view (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -557,12 +546,13 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.76.5): + - React-Fabric/core (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -577,12 +567,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.76.5): + - React-Fabric/dom (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -597,12 +588,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.76.5): + - React-Fabric/imagemanager (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -617,12 +609,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.76.5): + - React-Fabric/leakchecker (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -637,12 +630,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.76.5): + - React-Fabric/mounting (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -657,18 +651,19 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.76.5): + - React-Fabric/observers (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.76.5) + - React-Fabric/observers/events (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -678,12 +673,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.76.5): + - React-Fabric/observers/events (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -698,12 +694,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.76.5): + - React-Fabric/scheduler (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -720,12 +717,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.76.5): + - React-Fabric/telemetry (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -740,12 +738,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.76.5): + - React-Fabric/templateprocessor (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -760,18 +759,19 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.76.5): + - React-Fabric/uimanager (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.76.5) + - React-Fabric/uimanager/consistency (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -782,12 +782,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.76.5): + - React-Fabric/uimanager/consistency (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -803,20 +804,21 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.76.5): + - React-FabricComponents (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.76.5) - - React-FabricComponents/textlayoutmanager (= 0.76.5) + - React-FabricComponents/components (= 0.77.0-rc.6) + - React-FabricComponents/textlayoutmanager (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -825,30 +827,30 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.76.5): + - React-FabricComponents/components (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.76.5) - - React-FabricComponents/components/iostextinput (= 0.76.5) - - React-FabricComponents/components/modal (= 0.76.5) - - React-FabricComponents/components/rncore (= 0.76.5) - - React-FabricComponents/components/safeareaview (= 0.76.5) - - React-FabricComponents/components/scrollview (= 0.76.5) - - React-FabricComponents/components/text (= 0.76.5) - - React-FabricComponents/components/textinput (= 0.76.5) - - React-FabricComponents/components/unimplementedview (= 0.76.5) + - React-FabricComponents/components/inputaccessory (= 0.77.0-rc.6) + - React-FabricComponents/components/iostextinput (= 0.77.0-rc.6) + - React-FabricComponents/components/modal (= 0.77.0-rc.6) + - React-FabricComponents/components/rncore (= 0.77.0-rc.6) + - React-FabricComponents/components/safeareaview (= 0.77.0-rc.6) + - React-FabricComponents/components/scrollview (= 0.77.0-rc.6) + - React-FabricComponents/components/text (= 0.77.0-rc.6) + - React-FabricComponents/components/textinput (= 0.77.0-rc.6) + - React-FabricComponents/components/unimplementedview (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -857,15 +859,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.76.5): + - React-FabricComponents/components/inputaccessory (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -880,15 +882,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.76.5): + - React-FabricComponents/components/iostextinput (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -903,15 +905,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.76.5): + - React-FabricComponents/components/modal (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -926,15 +928,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.76.5): + - React-FabricComponents/components/rncore (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -949,15 +951,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.76.5): + - React-FabricComponents/components/safeareaview (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -972,15 +974,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.76.5): + - React-FabricComponents/components/scrollview (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -995,15 +997,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.76.5): + - React-FabricComponents/components/text (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1018,15 +1020,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.76.5): + - React-FabricComponents/components/textinput (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1041,15 +1043,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.76.5): + - React-FabricComponents/components/unimplementedview (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1064,15 +1066,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.76.5): + - React-FabricComponents/textlayoutmanager (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1087,92 +1089,68 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.76.5): + - React-FabricImage (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.76.5) - - RCTTypeSafety (= 0.76.5) + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired (= 0.77.0-rc.6) + - RCTTypeSafety (= 0.77.0-rc.6) - React-Fabric + - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.76.5) + - React-jsiexecutor (= 0.77.0-rc.6) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.76.5) - - React-featureflagsnativemodule (0.76.5): - - DoubleConversion - - glog + - React-featureflags (0.77.0-rc.6) + - React-featureflagsnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric + - RCT-Folly - React-featureflags - - React-graphics - - React-ImageManager - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - - Yoga - - React-graphics (0.76.5): + - React-graphics (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.76.5): + - React-hermes (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.76.5) + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact (= 0.77.0-rc.6) - React-jsi - - React-jsiexecutor (= 0.76.5) + - React-jsiexecutor (= 0.77.0-rc.6) - React-jsinspector - - React-perflogger (= 0.76.5) + - React-perflogger (= 0.77.0-rc.6) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.76.5): - - DoubleConversion - - glog + - React-idlecallbacksnativemodule (0.77.0-rc.6): - 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 + - RCT-Folly + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - React-runtimescheduler - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - Yoga - - React-ImageManager (0.76.5): + - React-ImageManager (0.77.0-rc.6): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1181,94 +1159,62 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.76.5): + - React-jserrorhandler (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-cxxreact - React-debug + - React-featureflags - React-jsi - - React-jsi (0.76.5): + - ReactCommon/turbomodule/bridging + - React-jsi (0.77.0-rc.6): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.76.5): + - RCT-Folly (= 2024.11.18.00) + - React-jsiexecutor (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.76.5) - - React-jsi (= 0.76.5) + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-jsinspector - - React-perflogger (= 0.76.5) - - React-jsinspector (0.76.5): + - React-perflogger (= 0.77.0-rc.6) + - React-jsinspector (0.77.0-rc.6): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-featureflags - React-jsi - - React-perflogger (= 0.76.5) - - React-runtimeexecutor (= 0.76.5) - - React-jsitracing (0.76.5): + - React-perflogger (= 0.77.0-rc.6) + - React-runtimeexecutor (= 0.77.0-rc.6) + - React-jsitracing (0.77.0-rc.6): - React-jsi - - React-logger (0.76.5): + - React-logger (0.77.0-rc.6): - glog - - React-Mapbuffer (0.76.5): + - React-Mapbuffer (0.77.0-rc.6): - glog - React-debug - - React-microtasksnativemodule (0.76.5): - - 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-native-pager-view (6.4.1): - - DoubleConversion - - glog + - React-microtasksnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric - - React-featureflags - - React-graphics - - React-ImageManager - - react-native-pager-view/common (= 6.4.1) - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging + - RCT-Folly + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - - Yoga - - react-native-pager-view/common (6.4.1): + - react-native-pager-view (6.6.1): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1285,11 +1231,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context (4.13.1): + - react-native-safe-area-context (5.1.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1298,8 +1244,8 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - react-native-safe-area-context/common (= 4.13.1) - - react-native-safe-area-context/fabric (= 4.13.1) + - react-native-safe-area-context/common (= 5.1.0) + - react-native-safe-area-context/fabric (= 5.1.0) - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1308,11 +1254,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context/common (4.13.1): + - react-native-safe-area-context/common (5.1.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1329,11 +1275,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context/fabric (4.13.1): + - react-native-safe-area-context/fabric (5.1.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1355,7 +1301,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1377,7 +1323,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1394,8 +1340,8 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.76.5) - - React-NativeModulesApple (0.76.5): + - React-nativeconfig (0.77.0-rc.6) + - React-NativeModulesApple (0.77.0-rc.6): - glog - hermes-engine - React-callinvoker @@ -1406,25 +1352,26 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.76.5): + - React-perflogger (0.77.0-rc.6): - DoubleConversion - - RCT-Folly (= 2024.01.01.00) - - React-performancetimeline (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) + - React-performancetimeline (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - React-cxxreact + - React-featureflags - React-timing - - React-RCTActionSheet (0.76.5): - - React-Core/RCTActionSheetHeaders (= 0.76.5) - - React-RCTAnimation (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTActionSheet (0.77.0-rc.6): + - React-Core/RCTActionSheetHeaders (= 0.77.0-rc.6) + - React-RCTAnimation (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTAppDelegate (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTAppDelegate (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1438,6 +1385,7 @@ PODS: - React-nativeconfig - React-NativeModulesApple - React-RCTFabric + - React-RCTFBReactNativeSpec - React-RCTImage - React-RCTNetwork - React-rendererdebug @@ -1446,25 +1394,25 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon - - React-RCTBlob (0.76.5): + - React-RCTBlob (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi - React-jsinspector - React-NativeModulesApple + - React-RCTFBReactNativeSpec - React-RCTNetwork - - ReactCodegen - ReactCommon - - React-RCTFabric (0.76.5): + - React-RCTFabric (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-Core - React-debug - React-Fabric @@ -1484,62 +1432,74 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTFBReactNativeSpec (0.77.0-rc.6): + - hermes-engine + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - ReactCommon + - React-RCTImage (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTImageHeaders - React-jsi - React-NativeModulesApple + - React-RCTFBReactNativeSpec - React-RCTNetwork - - ReactCodegen - ReactCommon - - React-RCTLinking (0.76.5): - - React-Core/RCTLinkingHeaders (= 0.76.5) - - React-jsi (= 0.76.5) + - React-RCTLinking (0.77.0-rc.6): + - React-Core/RCTLinkingHeaders (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.76.5) - - React-RCTNetwork (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - ReactCommon/turbomodule/core (= 0.77.0-rc.6) + - React-RCTNetwork (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTSettings (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTSettings (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTText (0.76.5): - - React-Core/RCTTextHeaders (= 0.76.5) + - React-RCTText (0.77.0-rc.6): + - React-Core/RCTTextHeaders (= 0.77.0-rc.6) - Yoga - - React-RCTVibration (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTVibration (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-rendererconsistency (0.76.5) - - React-rendererdebug (0.76.5): + - React-rendererconsistency (0.77.0-rc.6) + - React-rendererdebug (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) - - RCT-Folly (= 2024.01.01.00) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - RCT-Folly (= 2024.11.18.00) - React-debug - - React-rncore (0.76.5) - - React-RuntimeApple (0.76.5): + - React-rncore (0.77.0-rc.6) + - React-RuntimeApple (0.77.0-rc.6): - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-callinvoker - React-Core/Default - React-CoreModules - React-cxxreact + - React-featureflags - React-jserrorhandler - React-jsi - React-jsiexecutor @@ -1547,16 +1507,18 @@ PODS: - React-Mapbuffer - React-NativeModulesApple - React-RCTFabric + - React-RCTFBReactNativeSpec - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.76.5): + - React-RuntimeCore (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-cxxreact + - React-Fabric - React-featureflags - React-jserrorhandler - React-jsi @@ -1566,11 +1528,11 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.76.5): - - React-jsi (= 0.76.5) - - React-RuntimeHermes (0.76.5): + - React-runtimeexecutor (0.77.0-rc.6): + - React-jsi (= 0.77.0-rc.6) + - React-RuntimeHermes (0.77.0-rc.6): - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-featureflags - React-hermes - React-jsi @@ -1579,10 +1541,10 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.76.5): + - React-runtimescheduler (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-callinvoker - React-cxxreact - React-debug @@ -1594,14 +1556,16 @@ PODS: - React-runtimeexecutor - React-timing - React-utils - - React-timing (0.76.5) - - React-utils (0.76.5): + - React-timing (0.77.0-rc.6) + - React-utils (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-debug - - React-jsi (= 0.76.5) - - ReactCodegen (0.76.5): + - React-jsi (= 0.77.0-rc.6) + - ReactAppDependencyProvider (0.77.0-rc.6): + - ReactCodegen + - ReactCodegen (0.77.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -1617,55 +1581,59 @@ PODS: - React-jsi - React-jsiexecutor - React-NativeModulesApple + - React-RCTAppDelegate - React-rendererdebug - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.76.5): - - ReactCommon/turbomodule (= 0.76.5) - - ReactCommon/turbomodule (0.76.5): + - ReactCommon (0.77.0-rc.6): + - ReactCommon/turbomodule (= 0.77.0-rc.6) + - ReactCommon/turbomodule (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-cxxreact (= 0.76.5) - - React-jsi (= 0.76.5) - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - ReactCommon/turbomodule/bridging (= 0.76.5) - - ReactCommon/turbomodule/core (= 0.76.5) - - ReactCommon/turbomodule/bridging (0.76.5): + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-cxxreact (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - ReactCommon/turbomodule/bridging (= 0.77.0-rc.6) + - ReactCommon/turbomodule/core (= 0.77.0-rc.6) + - ReactCommon/turbomodule/bridging (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-cxxreact (= 0.76.5) - - React-jsi (= 0.76.5) - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - ReactCommon/turbomodule/core (0.76.5): + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-cxxreact (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - ReactCommon/turbomodule/core (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-cxxreact (= 0.76.5) - - React-debug (= 0.76.5) - - React-featureflags (= 0.76.5) - - React-jsi (= 0.76.5) - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - React-utils (= 0.76.5) - - RNCAsyncStorage (1.24.0): + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-cxxreact (= 0.77.0-rc.6) + - React-debug (= 0.77.0-rc.6) + - React-featureflags (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - React-utils (= 0.77.0-rc.6) + - RNCAsyncStorage (2.1.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1682,13 +1650,32 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNCMaskedView (0.3.1): + - RNCMaskedView (0.3.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - RNFlashList (1.7.1): + - 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 + - RNFlashList (1.7.2): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1705,11 +1692,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNGestureHandler (2.20.2): + - RNGestureHandler (2.22.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1730,7 +1717,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1753,7 +1740,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1775,7 +1762,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1796,7 +1783,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1818,7 +1805,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1835,11 +1822,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (4.0.0): + - RNScreens (4.5.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1856,13 +1843,13 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNScreens/common (= 4.0.0) + - RNScreens/common (= 4.5.0) - Yoga - - RNScreens/common (4.0.0): + - RNScreens/common (4.5.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1880,11 +1867,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNSVG (15.8.0): + - RNSVG (15.11.1): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1900,13 +1887,13 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNSVG/common (= 15.8.0) + - RNSVG/common (= 15.11.1) - Yoga - - RNSVG/common (15.8.0): + - RNSVG/common (15.11.1): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1929,6 +1916,7 @@ PODS: DEPENDENCIES: - boost (from `../../../node_modules/react-native/third-party-podspecs/boost.podspec`) - DoubleConversion (from `../../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) + - fast_float (from `../../../node_modules/react-native/third-party-podspecs/fast_float.podspec`) - FBLazyVector (from `../../../node_modules/react-native/Libraries/FBLazyVector`) - fmt (from `../../../node_modules/react-native/third-party-podspecs/fmt.podspec`) - glog (from `../../../node_modules/react-native/third-party-podspecs/glog.podspec`) @@ -1976,6 +1964,7 @@ DEPENDENCIES: - React-RCTAppDelegate (from `../../../node_modules/react-native/Libraries/AppDelegate`) - React-RCTBlob (from `../../../node_modules/react-native/Libraries/Blob`) - React-RCTFabric (from `../../../node_modules/react-native/React`) + - React-RCTFBReactNativeSpec (from `../../../node_modules/react-native/React`) - React-RCTImage (from `../../../node_modules/react-native/Libraries/Image`) - React-RCTLinking (from `../../../node_modules/react-native/Libraries/LinkingIOS`) - React-RCTNetwork (from `../../../node_modules/react-native/Libraries/Network`) @@ -1992,6 +1981,7 @@ DEPENDENCIES: - React-runtimescheduler (from `../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-timing (from `../../../node_modules/react-native/ReactCommon/react/timing`) - React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`) + - ReactAppDependencyProvider (from `build/generated/ios`) - ReactCodegen (from `build/generated/ios`) - ReactCommon/turbomodule/core (from `../../../node_modules/react-native/ReactCommon`) - "RNCAsyncStorage (from `../../../node_modules/@react-native-async-storage/async-storage`)" @@ -2012,6 +2002,8 @@ EXTERNAL SOURCES: :podspec: "../../../node_modules/react-native/third-party-podspecs/boost.podspec" DoubleConversion: :podspec: "../../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + fast_float: + :podspec: "../../../node_modules/react-native/third-party-podspecs/fast_float.podspec" FBLazyVector: :path: "../../../node_modules/react-native/Libraries/FBLazyVector" fmt: @@ -2020,7 +2012,7 @@ EXTERNAL SOURCES: :podspec: "../../../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../../../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64 + :tag: hermes-2024-11-25-RNv0.77.0-d4f25d534ab744866448b36ca3bf3d97c08e638c RCT-Folly: :podspec: "../../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: @@ -2103,6 +2095,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/Libraries/Blob" React-RCTFabric: :path: "../../../node_modules/react-native/React" + React-RCTFBReactNativeSpec: + :path: "../../../node_modules/react-native/React" React-RCTImage: :path: "../../../node_modules/react-native/Libraries/Image" React-RCTLinking: @@ -2135,6 +2129,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/ReactCommon/react/timing" React-utils: :path: "../../../node_modules/react-native/ReactCommon/react/utils" + ReactAppDependencyProvider: + :path: build/generated/ios ReactCodegen: :path: build/generated/ios ReactCommon: @@ -2157,81 +2153,84 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: 1dca942403ed9342f98334bf4c3621f011aa7946 - DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385 - FBLazyVector: 1bf99bb46c6af9a2712592e707347315f23947aa - fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be - glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a - hermes-engine: 06a9c6900587420b90accc394199527c64259db4 - RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648 - RCTDeprecation: fb7d408617e25d7f537940000d766d60149c5fea - RCTRequired: 9aaf0ffcc1f41f0c671af863970ef25c422a9920 - RCTTypeSafety: e9a6e7d48184646eb0610295b74c0dd02768cbb2 - React: fffb3cf1b0d7aee03c4eb4952b2d58783615e9fa - React-callinvoker: 3c6ecc0315d42924e01b3ddc25cf2e49d33da169 - React-Core: d2143ba58d0c8563cf397f96f699c6069eba951c - React-CoreModules: b3cbc5e3090a8c23116c0c7dd8998e0637e29619 - React-cxxreact: 68fb9193582c4a411ce99d0b23f7b3d8da1c2e4a - React-debug: 297ed67868a76e8384669ea9b5c65c5d9d9d15d9 - React-defaultsnativemodule: 9726dafb3b20bb49f9eac5993418aaa7ddb6a80d - React-domnativemodule: ff049da74cb1be08b7cd71cdbc7bb5b335e04d8e - React-Fabric: 2e33816098a5a29d2f4ae7eb2de3cfbc361b6922 - React-FabricComponents: bb2d6b89321bf79653ae3d4ec890ba7cb9fe51c8 - React-FabricImage: 019a5e834378e460ef39bf19cb506fd36491ae74 - React-featureflags: cb3dca1c74ba813f2e578c8c635989d01d14739f - React-featureflagsnativemodule: 4a1eaf7a29e48ddd60bce9a2f4c4ef74dc3b9e53 - React-graphics: e626f3b24227a3a8323ed89476c8f0927c0264c7 - React-hermes: 63678d262d94835f986fa2fac1c835188f14160b - React-idlecallbacksnativemodule: 7a25d2bff611677bbc2eab428e7bfd02f7418b42 - React-ImageManager: 223709133aa644bc1e74d354308cf2ed4c9d0f00 - React-jserrorhandler: 212d88de95b23965fdff91c1a20da30e29cdfbbb - React-jsi: d189a2a826fe6700ea1194e1c2b15535d06c8d75 - React-jsiexecutor: b75a12d37f2bf84f74b5c05131afdef243cfc69d - React-jsinspector: c3402468ae1fbca79e3d8cc11e7a0fc2c8ffafb1 - React-jsitracing: 1f46c2ec0c5ace3fe959b1aa0f8535ef1c021161 - React-logger: 697873f06b8ba436e3cddf28018ab4741e8071b6 - React-Mapbuffer: c174e11bdea12dce07df8669d6c0dc97eb0c7706 - React-microtasksnativemodule: 8a80099ad7391f4e13a48b12796d96680f120dc6 - react-native-pager-view: 94195f1bf32e7f78359fa20057c97e632364a08b - react-native-safe-area-context: 52956274cbb1f9313ba6969de5c33e57218c0206 - react-native-slider: 124ce99f9cd2d04c79f020da6dee9f8d38a6b8c7 - React-nativeconfig: f7ab6c152e780b99a8c17448f2d99cf5f69a2311 - React-NativeModulesApple: 70600f7edfc2c2a01e39ab13a20fd59f4c60df0b - React-perflogger: ceb97dd4e5ca6ff20eebb5a6f9e00312dcdea872 - React-performancetimeline: e39f038509c2a6b2ddb85087ba7cb8bd9caf977d - React-RCTActionSheet: a4388035260b01ac38d3647da0433b0455da9bae - React-RCTAnimation: 84117cb3521c40e95a4edfeab1c1cb159bc9a7c3 - React-RCTAppDelegate: df039dffb7adbc2e4a8ce951d1b2842f1846f43e - React-RCTBlob: 947cbb49842c9141e2b21f719e83e9197a06e453 - React-RCTFabric: 8f8afe72401ddfca2bd8b488d2d9eb0deee0b4bf - React-RCTImage: 367a7dcca1d37b04e28918c025a0101494fb2a19 - React-RCTLinking: b9dc797e49683a98ee4f703f1f01ec2bd69ceb7f - React-RCTNetwork: 16e92fb59b9cd1e1175ecb2e90aa9e06e82db7a3 - React-RCTSettings: 20a1c3316956fae137d8178b4c23b7a1d56674cc - React-RCTText: 59d8792076b6010f7305f2558d868025004e108b - React-RCTVibration: 597d5aba0212d709ec79d12e76285c3d94dc0658 - React-rendererconsistency: 42f182fe910ad6c9b449cc62adae8d0eaba76f0a - React-rendererdebug: f36daf9f79831c8785215048fad4ef6453834430 - React-rncore: 85ed76036ff56e2e9c369155027cbbd84db86006 - React-RuntimeApple: 6ca44fc23bb00474f9387c0709f23d4dade79800 - React-RuntimeCore: b4d723e516e2e24616eb72de5b41a68b0736cc02 - React-runtimeexecutor: 10fae9492194097c99f6e34cedbb42a308922d32 - React-RuntimeHermes: 93437bfc028ba48122276e2748c7cd0f9bbcdb40 - React-runtimescheduler: 72bbb4bd4774a0f4f9a7e84dbf133213197a0828 - React-timing: 1050c6fa44c327f2d7538e10c548fdf521fabdb8 - React-utils: 541c6cca08f32597d4183f00e83eef2ed20d4c54 - ReactCodegen: fca7518fb8bac9ce8573b698a13d9647dbbb78ea - ReactCommon: a6b87a7591591f7a52d9c0fec3aa05e0620d5dd3 - RNCAsyncStorage: 3ad840f7b17b45ca7ebbbb0e80948564a9513315 - RNCMaskedView: 090213d32d8b3bb83a4dcb7d12c18f0152591906 - RNFlashList: 6f169ad83e52579b7754cbbcec1b004c27d82c93 - RNGestureHandler: fc5ce5bf284640d3af6431c3a5c3bc121e98d045 - RNReanimated: c03f9fdff5fd382d1833c37fa0e6f64ffd9b8a92 - RNScreens: 2fe13c8d610ef2d9d5ace2e7d85b716ec0f5217c - RNSVG: 536cd3c866c878faf72beaba166c8b02fe2b762b + boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 + DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb + fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 + FBLazyVector: dac4f80f363d25f0f06bbca8a982e583c71e18ae + fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd + glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8 + hermes-engine: e929405329190e9df3ef45cea87293072747f2ef + RCT-Folly: 36fe2295e44b10d831836cc0d1daec5f8abcf809 + RCTDeprecation: 897876d002199e7a9cbbb9aa77542dd2eb2452ef + RCTRequired: b7f9ef02940c891073f2b9b63165f524bd3d1847 + RCTTypeSafety: c00136d479c43702c0a58b6667ad2d7b8389deba + React: 73c6c3d8d478df2505b82de03b3aa3085a12f099 + React-callinvoker: 7bccda05aeced2bf72cd47144195738a9aea5af2 + React-Core: d225356818946f0531777ea3b9ed6f45d3192a54 + React-CoreModules: abae5f8445763c124510ff4adf63f3000a634b0f + React-cxxreact: 6c87493d1b464271f65347bb31ca90377304e7ae + React-debug: 617cec1a9aae8f744115062c2e856fa9edf963f9 + React-defaultsnativemodule: 84403f2b8a3d1653ce1c87f94665c054c10f68ab + React-domnativemodule: 74066d3ddc98b96ac6ec263b1ac5c6db8ada326d + React-Fabric: 36867cfcccee0bce67d25717c984cdb5275bddbd + React-FabricComponents: e416da1f9683cee09217292e6f0e543a5a4b53f8 + React-FabricImage: e922a0729fae35d1cdfe51dd27bf207f24569934 + React-featureflags: 0ae90e3e3bc0120468415e177811e6ecb5dd36c5 + React-featureflagsnativemodule: 5a4025c7a13c6a59be8fe35f4b33faa69aedd339 + React-graphics: 6d0b8e706aec10d63b338524127134248a489e8d + React-hermes: 74f63e48e956651771f454747d924749c700657b + React-idlecallbacksnativemodule: dc262880299836bba2241660ac07a02a4919bc5b + React-ImageManager: b04959c12eeb8b3d5b84a3b5f8b73a5be27424c1 + React-jserrorhandler: 2ea34f344b83400f24440ab081f6ec14d408980b + React-jsi: ef0eec4eb1edd51a5a6210d3f17ec457a7e9f618 + React-jsiexecutor: e6e185f34d780baacac02af6f5eac8fca26d20da + React-jsinspector: 848272136f9f406f82c934c420ecbdb2efe1d885 + React-jsitracing: 1ee73f577a1c459742099fd19a63644febcdc0ee + React-logger: 3dc0ffac00a531441ae6fb6cc8108ba374c8e8d1 + React-Mapbuffer: ade5ce90a8643af61bd7365c51a6e957b5722045 + React-microtasksnativemodule: c314f95dc827b8fa3765372bb847b477b7663065 + react-native-pager-view: 5839e948ab0948818711cd6abed1e8918b60e7cc + react-native-safe-area-context: 6b85173d2cee963d5232ac2fd260e8ebd63273dc + react-native-slider: 7885fc2db0361d294b75f0b523040160ce98d526 + React-nativeconfig: b9c086f83aba945dad592d2556fe2b983f541032 + React-NativeModulesApple: acb8da00a222da8da6e458a9dfae63cc264780c6 + React-perflogger: 85a817dc96114c0df3e0d5a700688cd0a5643a9d + React-performancetimeline: aa5ec62ece04dc4884f71d7f96fa88e2633ed709 + React-RCTActionSheet: 88aa440fb2c9c723690047989f8fe3855e2b3024 + React-RCTAnimation: 6c57eec2ed825b98ad41efdc741ad0552e5f94a6 + React-RCTAppDelegate: 36c98dc144a86287c2891ba5c4ff18bdb7112256 + React-RCTBlob: c7b0edce098d2f91540e34eda1bc7ecedf08a0b7 + React-RCTFabric: 662abd12acc0b25dc235ea5420aeb3cc84b4772e + React-RCTFBReactNativeSpec: 81c988a57b0b502797edc398d02c4cccce7ce6f4 + React-RCTImage: 8bcb2b379066e7e43ff1029bd28ec4a90d65e774 + React-RCTLinking: 004b26ec552481a247b8840dc6b26a97f92fdf69 + React-RCTNetwork: 288c01758d524af72f1b1d2860165b0d1e6f7adc + React-RCTSettings: cfdbb48cff4fd11112dffa8d6c73a4fc23145df4 + React-RCTText: 9b7607b8349109d23940ec8d8a603dd58a7e18f7 + React-RCTVibration: 992b54a43499ee7c7b699fea2bc56663ebde4182 + React-rendererconsistency: f74a1be04eb6c092196d31f15eff014d2acfe0cc + React-rendererdebug: 8657615a8c308f98f6cf2398513fc9af62d30827 + React-rncore: 523fc380d9c598cb4a531396878fdd3055c2b8af + React-RuntimeApple: 0b743cea005875e04a53088c6a699fec6a49dbb6 + React-RuntimeCore: ccb78361a742dae6846e624f19ef6835921b117f + React-runtimeexecutor: f3205d0a3840877ef42af3f2c783903dc1efd65b + React-RuntimeHermes: da99fa9f83bc8f81b4774bf8fb87f06cb9e9ac24 + React-runtimescheduler: b7bec275635074e791e996d6f4a12d2e63d1d1e3 + React-timing: e17ac82c31c73234701702d2b76fbd8695931d3b + React-utils: 4408d84e21b83e3fdcf0b0d4bc23ef829898e148 + ReactAppDependencyProvider: 3c3394a2c93b03ae9859e02bed235c4d91e31723 + ReactCodegen: ef05d5dd3c7327234365df4c9c18a99a73496a87 + ReactCommon: f579a0130fb73a351de4723fb33d277c5bf3283d + RNCAsyncStorage: 309dabeb856c37a9167db791615cf7738d201103 + RNCMaskedView: 18c76ebdf9752bb75652829f99f6c3d1318cc864 + RNFlashList: ee2388e0d3ffde77431ba5d09b8f59a0c65a8e05 + RNGestureHandler: 4e7defe5095e936424173fc75f0bf2af5bba8e23 + RNReanimated: fad8bf501ad210124744b387afe1e4712f8f3ac0 + RNScreens: d0854539b51a53e38b61bcc9fb402439a9c73b26 + RNSVG: 7e38044415125a1d108294377de261d2fe2c54c9 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 - Yoga: c7ea4c36c1d78ebbf45529b6e78283e4e0fe4956 + Yoga: dd05f79b1943c96893294ee5040576aa6e8a8d82 -PODFILE CHECKSUM: 3eb88d49c8fe32af0ac2c85501e29d29171f1070 +PODFILE CHECKSUM: 4a9e0af2552a3fcd2303b56ad75e373f8bae65b9 COCOAPODS: 1.14.3 diff --git a/apps/fabric-example/package.json b/apps/fabric-example/package.json index d12f1551cb3c..20fa055ac0c7 100644 --- a/apps/fabric-example/package.json +++ b/apps/fabric-example/package.json @@ -12,36 +12,36 @@ "test": "jest" }, "dependencies": { - "@react-native-async-storage/async-storage": "^1.24.0", - "@react-native-community/slider": "^4.5.5", - "@react-native-masked-view/masked-view": "^0.3.1", + "@react-native-async-storage/async-storage": "2.1.0", + "@react-native-community/slider": "4.5.5", + "@react-native-masked-view/masked-view": "0.3.2", "@react-navigation/native": "^7.0.0", "@react-navigation/native-stack": "^7.0.0", - "@shopify/flash-list": "^1.7.1", + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch", "common-app": "workspace:*", "react": "18.3.1", - "react-native": "0.76.5", - "react-native-gesture-handler": "2.20.2", - "react-native-pager-view": "^6.4.1", + "react-native": "0.77.0-rc.6", + "react-native-gesture-handler": "2.22.0", + "react-native-pager-view": "6.6.1", "react-native-reanimated": "workspace:*", - "react-native-safe-area-context": "^4.13.1", - "react-native-screens": "^4.0.0", - "react-native-svg": "^15.8.0" + "react-native-safe-area-context": "5.1.0", + "react-native-screens": "4.5.0", + "react-native-svg": "15.11.1" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@babel/runtime": "^7.25.0", - "@react-native-community/cli": "15.0.0", - "@react-native-community/cli-platform-android": "15.0.0", - "@react-native-community/cli-platform-ios": "15.0.0", - "@react-native/babel-preset": "0.76.5", - "@react-native/eslint-config": "0.76.5", - "@react-native/metro-config": "0.76.5", - "@react-native/typescript-config": "0.76.5", + "@react-native-community/cli": "15.0.1", + "@react-native-community/cli-platform-android": "15.0.1", + "@react-native-community/cli-platform-ios": "15.0.1", + "@react-native/babel-preset": "0.77.0-rc.6", + "@react-native/eslint-config": "0.77.0-rc.6", + "@react-native/metro-config": "0.77.0-rc.6", + "@react-native/typescript-config": "0.77.0-rc.6", + "@types/jest": "^29.5.13", "@types/react": "^18.2.6", "@types/react-test-renderer": "^18.0.0", - "babel-jest": "^29.6.3", "eslint": "^8.57.0", "jest": "^29.6.3", "patch-package": "^8.0.0", diff --git a/apps/macos-example/Gemfile.lock b/apps/macos-example/Gemfile.lock index 59aa8b4fdd0a..c435c40be58e 100644 --- a/apps/macos-example/Gemfile.lock +++ b/apps/macos-example/Gemfile.lock @@ -5,7 +5,7 @@ GEM base64 nkf rexml - activesupport (7.1.5.1) + activesupport (7.1.5) base64 benchmark (>= 0.3) bigdecimal diff --git a/apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj b/apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj index 71b3f2287917..091770136763 100644 --- a/apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj +++ b/apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj @@ -292,6 +292,7 @@ "${PODS_ROOT}/Target Support Files/Pods-MacOSExample-macOS/Pods-MacOSExample-macOS-resources.sh", "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/RNSVG/RNSVGFilters.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/boost/boost_privacy.bundle", @@ -301,6 +302,7 @@ outputPaths = ( "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNSVGFilters.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/boost_privacy.bundle", diff --git a/apps/macos-example/macos/Podfile.lock b/apps/macos-example/macos/Podfile.lock index 327fd917538f..8544ada63b3a 100644 --- a/apps/macos-example/macos/Podfile.lock +++ b/apps/macos-example/macos/Podfile.lock @@ -1210,7 +1210,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context (4.13.1): + - react-native-safe-area-context (5.1.0): - React-Core - React-nativeconfig (0.75.16) - React-NativeModulesApple (0.75.16): @@ -1455,11 +1455,11 @@ PODS: - React-logger (= 0.75.16) - React-perflogger (= 0.75.16) - React-utils (= 0.75.16) - - RNCAsyncStorage (1.24.0): + - RNCAsyncStorage (2.1.0): - React-Core - RNCPicker (2.10.2): - React-Core - - RNGestureHandler (2.20.2): + - RNGestureHandler (2.22.0): - DoubleConversion - glog - RCT-Folly (= 2024.01.01.00) @@ -1589,7 +1589,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNSVG (15.8.0): + - RNSVG (15.11.1): - React-Core - SocketRocket (0.7.0) - Yoga (0.0.0) @@ -1836,7 +1836,7 @@ SPEC CHECKSUMS: React-logger: 7e30032239af894a3de5320d132b7afe49ee4f10 React-Mapbuffer: 5c2e4284948e47d5a46243f218dbe39393e3e37f React-microtasksnativemodule: 03881a25bb7a2db99a79e3a8e575bbadb24391ce - react-native-safe-area-context: 004fe00b8c5aae5d57de1c27ff728cf6d3918b03 + react-native-safe-area-context: 04803a01f39f31cc6605a5531280b477b48f8a88 React-nativeconfig: 33b8222107c5eb4b73b9cd6d28397ab123904d5c React-NativeModulesApple: 7ac40d907aa6e653e4063072c474ff8416cabad7 React-perflogger: 4ef0d0f93248f8331d7de7824e4b7b34d9740147 @@ -1862,11 +1862,11 @@ SPEC CHECKSUMS: React-utils: 1cf02e8d4880550ff7550c162a454adae239f82c ReactCodegen: 023efeb9a9e9d4df117128652aa688e25c518fba ReactCommon: e10fb4f939b3abe445dc8095997470a538627ec6 - RNCAsyncStorage: ec53e44dc3e75b44aa2a9f37618a49c3bc080a7a + RNCAsyncStorage: cc6479c4acd84cc7004946946c8afe30b018184d RNCPicker: d162737e03e48797110dbb60e5ddc03012e87e0b - RNGestureHandler: 82f59e40580e0c2f8262552c149716511131b412 + RNGestureHandler: 6baec83f39066ab8eee46ab18d0f8bf2d5a6ead3 RNReanimated: ed490424d3b8b9f2acd104577c73b374fc79310b - RNSVG: 8b1a777d54096b8c2a0fd38fc9d5a454332bbb4d + RNSVG: 669ed128ab9005090c612a0d627dbecb6ab5c76f SocketRocket: 9ee265c4b5ae2382d18e4ee1d2dd2d7af0ff1ab5 Yoga: 209f62622a01344dbb9fa8d348610eaeb7df2cca diff --git a/apps/macos-example/package.json b/apps/macos-example/package.json index e2971d1781f8..cf31ff7cf826 100644 --- a/apps/macos-example/package.json +++ b/apps/macos-example/package.json @@ -11,24 +11,24 @@ "test": "jest" }, "dependencies": { - "@react-native-async-storage/async-storage": "^1.24.0", - "@react-native-community/slider": "^4.5.5", - "@react-native-masked-view/masked-view": "^0.3.1", + "@react-native-async-storage/async-storage": "2.1.0", + "@react-native-community/slider": "4.5.5", + "@react-native-masked-view/masked-view": "0.3.2", "@react-native-picker/picker": "^2.9.0", "@react-navigation/native": "^7.0.0", "@react-navigation/native-stack": "^7.0.0", "@react-navigation/stack": "^7.0.0", - "@shopify/flash-list": "^1.7.1", + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch", "common-app": "workspace:*", "react": "18.3.1", "react-native": "0.75.4", - "react-native-gesture-handler": "2.20.2", + "react-native-gesture-handler": "2.22.0", "react-native-macos": "^0.75.13", - "react-native-pager-view": "^6.4.1", + "react-native-pager-view": "6.6.1", "react-native-reanimated": "workspace:*", - "react-native-safe-area-context": "^4.13.1", - "react-native-screens": "^4.0.0", - "react-native-svg": "^15.8.0" + "react-native-safe-area-context": "5.1.0", + "react-native-screens": "4.5.0", + "react-native-svg": "15.11.1" }, "devDependencies": { "@babel/core": "^7.20.0", diff --git a/apps/paper-example/android/build.gradle b/apps/paper-example/android/build.gradle index a9ea023695da..a62d6daa436a 100644 --- a/apps/paper-example/android/build.gradle +++ b/apps/paper-example/android/build.gradle @@ -4,8 +4,8 @@ buildscript { minSdkVersion = 24 compileSdkVersion = 35 targetSdkVersion = 34 - ndkVersion = "26.1.10909125" - kotlinVersion = "1.9.24" + ndkVersion = "27.1.12297006" + kotlinVersion = "2.0.21" } repositories { google() diff --git a/apps/paper-example/ios/Podfile b/apps/paper-example/ios/Podfile index 602afcdb74a4..2d7ad539bebb 100644 --- a/apps/paper-example/ios/Podfile +++ b/apps/paper-example/ios/Podfile @@ -28,11 +28,6 @@ target 'ReanimatedExample' do :app_path => "#{Pod::Config.instance.installation_root}/.." ) - target 'ReanimatedExampleTests' do - inherit! :complete - # Pods for testing - end - post_install do |installer| # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202 react_native_post_install( diff --git a/apps/paper-example/ios/Podfile.lock b/apps/paper-example/ios/Podfile.lock index 1eeb43772b02..0ac3060060d0 100644 --- a/apps/paper-example/ios/Podfile.lock +++ b/apps/paper-example/ios/Podfile.lock @@ -1,54 +1,58 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.76.5) - - fmt (9.1.0) + - fast_float (6.1.4) + - FBLazyVector (0.77.0-rc.6) + - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.76.5): - - hermes-engine/Pre-built (= 0.76.5) - - hermes-engine/Pre-built (0.76.5) - - RCT-Folly (2024.01.01.00): + - hermes-engine (0.77.0-rc.6): + - hermes-engine/Pre-built (= 0.77.0-rc.6) + - hermes-engine/Pre-built (0.77.0-rc.6) + - RCT-Folly (2024.11.18.00): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Default (= 2024.01.01.00) - - RCT-Folly/Default (2024.01.01.00): + - RCT-Folly/Default (= 2024.11.18.00) + - RCT-Folly/Default (2024.11.18.00): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Fabric (2024.01.01.00): + - RCT-Folly/Fabric (2024.11.18.00): - boost - DoubleConversion - - fmt (= 9.1.0) - - glog - - RCTDeprecation (0.76.5) - - RCTRequired (0.76.5) - - RCTTypeSafety (0.76.5): - - FBLazyVector (= 0.76.5) - - RCTRequired (= 0.76.5) - - React-Core (= 0.76.5) - - React (0.76.5): - - React-Core (= 0.76.5) - - React-Core/DevSupport (= 0.76.5) - - React-Core/RCTWebSocket (= 0.76.5) - - React-RCTActionSheet (= 0.76.5) - - React-RCTAnimation (= 0.76.5) - - React-RCTBlob (= 0.76.5) - - React-RCTImage (= 0.76.5) - - React-RCTLinking (= 0.76.5) - - React-RCTNetwork (= 0.76.5) - - React-RCTSettings (= 0.76.5) - - React-RCTText (= 0.76.5) - - React-RCTVibration (= 0.76.5) - - React-callinvoker (0.76.5) - - React-Core (0.76.5): - - glog - - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - RCTDeprecation (0.77.0-rc.6) + - RCTRequired (0.77.0-rc.6) + - RCTTypeSafety (0.77.0-rc.6): + - FBLazyVector (= 0.77.0-rc.6) + - RCTRequired (= 0.77.0-rc.6) + - React-Core (= 0.77.0-rc.6) + - React (0.77.0-rc.6): + - React-Core (= 0.77.0-rc.6) + - React-Core/DevSupport (= 0.77.0-rc.6) + - React-Core/RCTWebSocket (= 0.77.0-rc.6) + - React-RCTActionSheet (= 0.77.0-rc.6) + - React-RCTAnimation (= 0.77.0-rc.6) + - React-RCTBlob (= 0.77.0-rc.6) + - React-RCTImage (= 0.77.0-rc.6) + - React-RCTLinking (= 0.77.0-rc.6) + - React-RCTNetwork (= 0.77.0-rc.6) + - React-RCTSettings (= 0.77.0-rc.6) + - React-RCTText (= 0.77.0-rc.6) + - React-RCTVibration (= 0.77.0-rc.6) + - React-callinvoker (0.77.0-rc.6) + - React-Core (0.77.0-rc.6): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.76.5) + - React-Core/Default (= 0.77.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -60,10 +64,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/CoreModulesHeaders (0.76.5): + - React-Core/CoreModulesHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -77,10 +81,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/Default (0.76.5): + - React-Core/Default (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-cxxreact - React-featureflags @@ -93,13 +97,13 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/DevSupport (0.76.5): + - React-Core/DevSupport (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.76.5) - - React-Core/RCTWebSocket (= 0.76.5) + - React-Core/Default (= 0.77.0-rc.6) + - React-Core/RCTWebSocket (= 0.77.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -111,10 +115,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.76.5): + - React-Core/RCTActionSheetHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -128,10 +132,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTAnimationHeaders (0.76.5): + - React-Core/RCTAnimationHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -145,10 +149,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTBlobHeaders (0.76.5): + - React-Core/RCTBlobHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -162,10 +166,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTImageHeaders (0.76.5): + - React-Core/RCTImageHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -179,10 +183,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTLinkingHeaders (0.76.5): + - React-Core/RCTLinkingHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -196,10 +200,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTNetworkHeaders (0.76.5): + - React-Core/RCTNetworkHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -213,10 +217,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTSettingsHeaders (0.76.5): + - React-Core/RCTSettingsHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -230,10 +234,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTTextHeaders (0.76.5): + - React-Core/RCTTextHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -247,10 +251,10 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTVibrationHeaders (0.76.5): + - React-Core/RCTVibrationHeaders (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - React-Core/Default - React-cxxreact @@ -264,12 +268,12 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTWebSocket (0.76.5): + - React-Core/RCTWebSocket (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTDeprecation - - React-Core/Default (= 0.76.5) + - React-Core/Default (= 0.77.0-rc.6) - React-cxxreact - React-featureflags - React-hermes @@ -281,109 +285,86 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-CoreModules (0.76.5): - - DoubleConversion - - fmt (= 9.1.0) - - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.76.5) - - React-Core/CoreModulesHeaders (= 0.76.5) - - React-jsi (= 0.76.5) + - React-CoreModules (0.77.0-rc.6): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety (= 0.77.0-rc.6) + - React-Core/CoreModulesHeaders (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.76.5) - - ReactCodegen + - React-RCTFBReactNativeSpec + - React-RCTImage (= 0.77.0-rc.6) - ReactCommon - SocketRocket (= 0.7.1) - - React-cxxreact (0.76.5): + - React-cxxreact (0.77.0-rc.6): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-debug (= 0.76.5) - - React-jsi (= 0.76.5) + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-debug (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-jsinspector - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - React-runtimeexecutor (= 0.76.5) - - React-timing (= 0.76.5) - - React-debug (0.76.5) - - React-defaultsnativemodule (0.76.5): - - DoubleConversion - - glog + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - React-runtimeexecutor (= 0.77.0-rc.6) + - React-timing (= 0.77.0-rc.6) + - React-debug (0.77.0-rc.6) + - React-defaultsnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug + - RCT-Folly - React-domnativemodule - - React-Fabric - - React-featureflags - React-featureflagsnativemodule - - React-graphics - React-idlecallbacksnativemodule - - React-ImageManager + - React-jsi + - React-jsiexecutor - React-microtasksnativemodule - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - Yoga - - React-domnativemodule (0.76.5): - - DoubleConversion - - glog + - React-RCTFBReactNativeSpec + - React-domnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug + - RCT-Folly - React-Fabric - React-FabricComponents - - React-featureflags - React-graphics - - React-ImageManager - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.76.5): + - React-Fabric (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.76.5) - - React-Fabric/attributedstring (= 0.76.5) - - React-Fabric/componentregistry (= 0.76.5) - - React-Fabric/componentregistrynative (= 0.76.5) - - React-Fabric/components (= 0.76.5) - - React-Fabric/core (= 0.76.5) - - React-Fabric/dom (= 0.76.5) - - React-Fabric/imagemanager (= 0.76.5) - - React-Fabric/leakchecker (= 0.76.5) - - React-Fabric/mounting (= 0.76.5) - - React-Fabric/observers (= 0.76.5) - - React-Fabric/scheduler (= 0.76.5) - - React-Fabric/telemetry (= 0.76.5) - - React-Fabric/templateprocessor (= 0.76.5) - - React-Fabric/uimanager (= 0.76.5) + - React-Fabric/animations (= 0.77.0-rc.6) + - React-Fabric/attributedstring (= 0.77.0-rc.6) + - React-Fabric/componentregistry (= 0.77.0-rc.6) + - React-Fabric/componentregistrynative (= 0.77.0-rc.6) + - React-Fabric/components (= 0.77.0-rc.6) + - React-Fabric/core (= 0.77.0-rc.6) + - React-Fabric/dom (= 0.77.0-rc.6) + - React-Fabric/imagemanager (= 0.77.0-rc.6) + - React-Fabric/leakchecker (= 0.77.0-rc.6) + - React-Fabric/mounting (= 0.77.0-rc.6) + - React-Fabric/observers (= 0.77.0-rc.6) + - React-Fabric/scheduler (= 0.77.0-rc.6) + - React-Fabric/telemetry (= 0.77.0-rc.6) + - React-Fabric/templateprocessor (= 0.77.0-rc.6) + - React-Fabric/uimanager (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -393,12 +374,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.76.5): + - React-Fabric/animations (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -413,12 +395,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.76.5): + - React-Fabric/attributedstring (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -433,12 +416,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.76.5): + - React-Fabric/componentregistry (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -453,12 +437,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.76.5): + - React-Fabric/componentregistrynative (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -473,20 +458,21 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.76.5): + - React-Fabric/components (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.76.5) - - React-Fabric/components/root (= 0.76.5) - - React-Fabric/components/view (= 0.76.5) + - React-Fabric/components/legacyviewmanagerinterop (= 0.77.0-rc.6) + - React-Fabric/components/root (= 0.77.0-rc.6) + - React-Fabric/components/view (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -496,12 +482,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.76.5): + - React-Fabric/components/legacyviewmanagerinterop (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -516,12 +503,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.76.5): + - React-Fabric/components/root (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -536,12 +524,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.76.5): + - React-Fabric/components/view (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -557,12 +546,13 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.76.5): + - React-Fabric/core (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -577,12 +567,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.76.5): + - React-Fabric/dom (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -597,12 +588,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.76.5): + - React-Fabric/imagemanager (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -617,12 +609,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.76.5): + - React-Fabric/leakchecker (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -637,12 +630,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.76.5): + - React-Fabric/mounting (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -657,18 +651,19 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.76.5): + - React-Fabric/observers (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.76.5) + - React-Fabric/observers/events (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -678,12 +673,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.76.5): + - React-Fabric/observers/events (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -698,12 +694,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.76.5): + - React-Fabric/scheduler (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -720,12 +717,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.76.5): + - React-Fabric/telemetry (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -740,12 +738,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.76.5): + - React-Fabric/templateprocessor (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -760,18 +759,19 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.76.5): + - React-Fabric/uimanager (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.76.5) + - React-Fabric/uimanager/consistency (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -782,12 +782,13 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.76.5): + - React-Fabric/uimanager/consistency (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -803,20 +804,21 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.76.5): + - React-FabricComponents (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.76.5) - - React-FabricComponents/textlayoutmanager (= 0.76.5) + - React-FabricComponents/components (= 0.77.0-rc.6) + - React-FabricComponents/textlayoutmanager (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -825,30 +827,30 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.76.5): + - React-FabricComponents/components (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.76.5) - - React-FabricComponents/components/iostextinput (= 0.76.5) - - React-FabricComponents/components/modal (= 0.76.5) - - React-FabricComponents/components/rncore (= 0.76.5) - - React-FabricComponents/components/safeareaview (= 0.76.5) - - React-FabricComponents/components/scrollview (= 0.76.5) - - React-FabricComponents/components/text (= 0.76.5) - - React-FabricComponents/components/textinput (= 0.76.5) - - React-FabricComponents/components/unimplementedview (= 0.76.5) + - React-FabricComponents/components/inputaccessory (= 0.77.0-rc.6) + - React-FabricComponents/components/iostextinput (= 0.77.0-rc.6) + - React-FabricComponents/components/modal (= 0.77.0-rc.6) + - React-FabricComponents/components/rncore (= 0.77.0-rc.6) + - React-FabricComponents/components/safeareaview (= 0.77.0-rc.6) + - React-FabricComponents/components/scrollview (= 0.77.0-rc.6) + - React-FabricComponents/components/text (= 0.77.0-rc.6) + - React-FabricComponents/components/textinput (= 0.77.0-rc.6) + - React-FabricComponents/components/unimplementedview (= 0.77.0-rc.6) - React-featureflags - React-graphics - React-jsi @@ -857,15 +859,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.76.5): + - React-FabricComponents/components/inputaccessory (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -880,15 +882,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.76.5): + - React-FabricComponents/components/iostextinput (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -903,15 +905,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.76.5): + - React-FabricComponents/components/modal (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -926,15 +928,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.76.5): + - React-FabricComponents/components/rncore (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -949,15 +951,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.76.5): + - React-FabricComponents/components/safeareaview (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -972,15 +974,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.76.5): + - React-FabricComponents/components/scrollview (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -995,15 +997,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.76.5): + - React-FabricComponents/components/text (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1018,15 +1020,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.76.5): + - React-FabricComponents/components/textinput (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1041,15 +1043,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.76.5): + - React-FabricComponents/components/unimplementedview (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1064,15 +1066,15 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.76.5): + - React-FabricComponents/textlayoutmanager (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1087,92 +1089,68 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.76.5): + - React-FabricImage (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.76.5) - - RCTTypeSafety (= 0.76.5) + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired (= 0.77.0-rc.6) + - RCTTypeSafety (= 0.77.0-rc.6) - React-Fabric + - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.76.5) + - React-jsiexecutor (= 0.77.0-rc.6) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.76.5) - - React-featureflagsnativemodule (0.76.5): - - DoubleConversion - - glog + - React-featureflags (0.77.0-rc.6) + - React-featureflagsnativemodule (0.77.0-rc.6): - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric + - RCT-Folly - React-featureflags - - React-graphics - - React-ImageManager - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - - Yoga - - React-graphics (0.76.5): + - React-graphics (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.76.5): + - React-hermes (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.76.5) + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact (= 0.77.0-rc.6) - React-jsi - - React-jsiexecutor (= 0.76.5) + - React-jsiexecutor (= 0.77.0-rc.6) - React-jsinspector - - React-perflogger (= 0.76.5) + - React-perflogger (= 0.77.0-rc.6) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.76.5): - - DoubleConversion - - glog + - React-idlecallbacksnativemodule (0.77.0-rc.6): - 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 + - RCT-Folly + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - React-runtimescheduler - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - Yoga - - React-ImageManager (0.76.5): + - React-ImageManager (0.77.0-rc.6): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1181,72 +1159,62 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.76.5): + - React-jserrorhandler (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-cxxreact - React-debug + - React-featureflags - React-jsi - - React-jsi (0.76.5): + - ReactCommon/turbomodule/bridging + - React-jsi (0.77.0-rc.6): - boost - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.76.5): + - RCT-Folly (= 2024.11.18.00) + - React-jsiexecutor (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.76.5) - - React-jsi (= 0.76.5) + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-jsinspector - - React-perflogger (= 0.76.5) - - React-jsinspector (0.76.5): + - React-perflogger (= 0.77.0-rc.6) + - React-jsinspector (0.77.0-rc.6): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-featureflags - React-jsi - - React-perflogger (= 0.76.5) - - React-runtimeexecutor (= 0.76.5) - - React-jsitracing (0.76.5): + - React-perflogger (= 0.77.0-rc.6) + - React-runtimeexecutor (= 0.77.0-rc.6) + - React-jsitracing (0.77.0-rc.6): - React-jsi - - React-logger (0.76.5): + - React-logger (0.77.0-rc.6): - glog - - React-Mapbuffer (0.76.5): + - React-Mapbuffer (0.77.0-rc.6): - glog - React-debug - - React-microtasksnativemodule (0.76.5): - - DoubleConversion - - glog + - React-microtasksnativemodule (0.77.0-rc.6): - 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 + - RCT-Folly + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - - Yoga - - react-native-pager-view (6.4.1): + - react-native-pager-view (6.6.1): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1263,13 +1231,13 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context (4.13.1): + - react-native-safe-area-context (5.1.0): - React-Core - react-native-slider (4.5.5): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1286,8 +1254,8 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.76.5) - - React-NativeModulesApple (0.76.5): + - React-nativeconfig (0.77.0-rc.6) + - React-NativeModulesApple (0.77.0-rc.6): - glog - hermes-engine - React-callinvoker @@ -1298,25 +1266,26 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.76.5): + - React-perflogger (0.77.0-rc.6): - DoubleConversion - - RCT-Folly (= 2024.01.01.00) - - React-performancetimeline (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) + - React-performancetimeline (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - React-cxxreact + - React-featureflags - React-timing - - React-RCTActionSheet (0.76.5): - - React-Core/RCTActionSheetHeaders (= 0.76.5) - - React-RCTAnimation (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTActionSheet (0.77.0-rc.6): + - React-Core/RCTActionSheetHeaders (= 0.77.0-rc.6) + - React-RCTAnimation (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTAppDelegate (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTAppDelegate (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1330,6 +1299,7 @@ PODS: - React-nativeconfig - React-NativeModulesApple - React-RCTFabric + - React-RCTFBReactNativeSpec - React-RCTImage - React-RCTNetwork - React-rendererdebug @@ -1338,25 +1308,25 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - ReactCodegen - ReactCommon - - React-RCTBlob (0.76.5): + - React-RCTBlob (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi - React-jsinspector - React-NativeModulesApple + - React-RCTFBReactNativeSpec - React-RCTNetwork - - ReactCodegen - ReactCommon - - React-RCTFabric (0.76.5): + - React-RCTFabric (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-Core - React-debug - React-Fabric @@ -1376,62 +1346,74 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTFBReactNativeSpec (0.77.0-rc.6): + - hermes-engine + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - ReactCommon + - React-RCTImage (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTImageHeaders - React-jsi - React-NativeModulesApple + - React-RCTFBReactNativeSpec - React-RCTNetwork - - ReactCodegen - ReactCommon - - React-RCTLinking (0.76.5): - - React-Core/RCTLinkingHeaders (= 0.76.5) - - React-jsi (= 0.76.5) + - React-RCTLinking (0.77.0-rc.6): + - React-Core/RCTLinkingHeaders (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.76.5) - - React-RCTNetwork (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - ReactCommon/turbomodule/core (= 0.77.0-rc.6) + - React-RCTNetwork (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTSettings (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTSettings (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTText (0.76.5): - - React-Core/RCTTextHeaders (= 0.76.5) + - React-RCTText (0.77.0-rc.6): + - React-Core/RCTTextHeaders (= 0.77.0-rc.6) - Yoga - - React-RCTVibration (0.76.5): - - RCT-Folly (= 2024.01.01.00) + - React-RCTVibration (0.77.0-rc.6): + - RCT-Folly (= 2024.11.18.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - - ReactCodegen + - React-RCTFBReactNativeSpec - ReactCommon - - React-rendererconsistency (0.76.5) - - React-rendererdebug (0.76.5): + - React-rendererconsistency (0.77.0-rc.6) + - React-rendererdebug (0.77.0-rc.6): - DoubleConversion - - fmt (= 9.1.0) - - RCT-Folly (= 2024.01.01.00) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - RCT-Folly (= 2024.11.18.00) - React-debug - - React-rncore (0.76.5) - - React-RuntimeApple (0.76.5): + - React-rncore (0.77.0-rc.6) + - React-RuntimeApple (0.77.0-rc.6): - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-callinvoker - React-Core/Default - React-CoreModules - React-cxxreact + - React-featureflags - React-jserrorhandler - React-jsi - React-jsiexecutor @@ -1439,16 +1421,18 @@ PODS: - React-Mapbuffer - React-NativeModulesApple - React-RCTFabric + - React-RCTFBReactNativeSpec - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.76.5): + - React-RuntimeCore (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-cxxreact + - React-Fabric - React-featureflags - React-jserrorhandler - React-jsi @@ -1458,11 +1442,11 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.76.5): - - React-jsi (= 0.76.5) - - React-RuntimeHermes (0.76.5): + - React-runtimeexecutor (0.77.0-rc.6): + - React-jsi (= 0.77.0-rc.6) + - React-RuntimeHermes (0.77.0-rc.6): - hermes-engine - - RCT-Folly/Fabric (= 2024.01.01.00) + - RCT-Folly/Fabric (= 2024.11.18.00) - React-featureflags - React-hermes - React-jsi @@ -1471,10 +1455,10 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.76.5): + - React-runtimescheduler (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-callinvoker - React-cxxreact - React-debug @@ -1486,14 +1470,16 @@ PODS: - React-runtimeexecutor - React-timing - React-utils - - React-timing (0.76.5) - - React-utils (0.76.5): + - React-timing (0.77.0-rc.6) + - React-utils (0.77.0-rc.6): - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - React-debug - - React-jsi (= 0.76.5) - - ReactCodegen (0.76.5): + - React-jsi (= 0.77.0-rc.6) + - ReactAppDependencyProvider (0.77.0-rc.6): + - ReactCodegen + - ReactCodegen (0.77.0-rc.6): - DoubleConversion - glog - hermes-engine @@ -1509,59 +1495,82 @@ PODS: - React-jsi - React-jsiexecutor - React-NativeModulesApple + - React-RCTAppDelegate - React-rendererdebug - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.76.5): - - ReactCommon/turbomodule (= 0.76.5) - - ReactCommon/turbomodule (0.76.5): - - DoubleConversion - - fmt (= 9.1.0) - - glog - - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-cxxreact (= 0.76.5) - - React-jsi (= 0.76.5) - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - ReactCommon/turbomodule/bridging (= 0.76.5) - - ReactCommon/turbomodule/core (= 0.76.5) - - ReactCommon/turbomodule/bridging (0.76.5): + - ReactCommon (0.77.0-rc.6): + - ReactCommon/turbomodule (= 0.77.0-rc.6) + - ReactCommon/turbomodule (0.77.0-rc.6): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-cxxreact (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - ReactCommon/turbomodule/bridging (= 0.77.0-rc.6) + - ReactCommon/turbomodule/core (= 0.77.0-rc.6) + - ReactCommon/turbomodule/bridging (0.77.0-rc.6): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-cxxreact (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - ReactCommon/turbomodule/core (0.77.0-rc.6): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.0-rc.6) + - React-cxxreact (= 0.77.0-rc.6) + - React-debug (= 0.77.0-rc.6) + - React-featureflags (= 0.77.0-rc.6) + - React-jsi (= 0.77.0-rc.6) + - React-logger (= 0.77.0-rc.6) + - React-perflogger (= 0.77.0-rc.6) + - React-utils (= 0.77.0-rc.6) + - RNCAsyncStorage (2.1.0): + - React-Core + - RNCMaskedView (0.3.2): - DoubleConversion - - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-cxxreact (= 0.76.5) - - React-jsi (= 0.76.5) - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - ReactCommon/turbomodule/core (0.76.5): - - DoubleConversion - - fmt (= 9.1.0) - - glog - - hermes-engine - - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.5) - - React-cxxreact (= 0.76.5) - - React-debug (= 0.76.5) - - React-featureflags (= 0.76.5) - - React-jsi (= 0.76.5) - - React-logger (= 0.76.5) - - React-perflogger (= 0.76.5) - - React-utils (= 0.76.5) - - RNCAsyncStorage (1.24.0): - - React-Core - - RNCMaskedView (0.3.1): + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - RNFlashList (1.7.1): + - 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 + - RNFlashList (1.7.2): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1578,11 +1587,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNGestureHandler (2.20.2): + - RNGestureHandler (2.22.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1603,7 +1612,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1626,7 +1635,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1648,7 +1657,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1669,7 +1678,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1691,7 +1700,7 @@ PODS: - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1708,11 +1717,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (4.0.0): + - RNScreens (4.5.0): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2024.01.01.00) + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1730,7 +1739,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNSVG (15.8.0): + - RNSVG (15.11.1): - React-Core - SocketRocket (0.7.1) - Yoga (0.0.0) @@ -1738,6 +1747,7 @@ PODS: DEPENDENCIES: - boost (from `../../../node_modules/react-native/third-party-podspecs/boost.podspec`) - DoubleConversion (from `../../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) + - fast_float (from `../../../node_modules/react-native/third-party-podspecs/fast_float.podspec`) - FBLazyVector (from `../../../node_modules/react-native/Libraries/FBLazyVector`) - fmt (from `../../../node_modules/react-native/third-party-podspecs/fmt.podspec`) - glog (from `../../../node_modules/react-native/third-party-podspecs/glog.podspec`) @@ -1785,6 +1795,7 @@ DEPENDENCIES: - React-RCTAppDelegate (from `../../../node_modules/react-native/Libraries/AppDelegate`) - React-RCTBlob (from `../../../node_modules/react-native/Libraries/Blob`) - React-RCTFabric (from `../../../node_modules/react-native/React`) + - React-RCTFBReactNativeSpec (from `../../../node_modules/react-native/React`) - React-RCTImage (from `../../../node_modules/react-native/Libraries/Image`) - React-RCTLinking (from `../../../node_modules/react-native/Libraries/LinkingIOS`) - React-RCTNetwork (from `../../../node_modules/react-native/Libraries/Network`) @@ -1801,6 +1812,7 @@ DEPENDENCIES: - React-runtimescheduler (from `../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-timing (from `../../../node_modules/react-native/ReactCommon/react/timing`) - React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`) + - ReactAppDependencyProvider (from `build/generated/ios`) - ReactCodegen (from `build/generated/ios`) - ReactCommon/turbomodule/core (from `../../../node_modules/react-native/ReactCommon`) - "RNCAsyncStorage (from `../../../node_modules/@react-native-async-storage/async-storage`)" @@ -1821,6 +1833,8 @@ EXTERNAL SOURCES: :podspec: "../../../node_modules/react-native/third-party-podspecs/boost.podspec" DoubleConversion: :podspec: "../../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + fast_float: + :podspec: "../../../node_modules/react-native/third-party-podspecs/fast_float.podspec" FBLazyVector: :path: "../../../node_modules/react-native/Libraries/FBLazyVector" fmt: @@ -1829,7 +1843,7 @@ EXTERNAL SOURCES: :podspec: "../../../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../../../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64 + :tag: hermes-2024-11-25-RNv0.77.0-d4f25d534ab744866448b36ca3bf3d97c08e638c RCT-Folly: :podspec: "../../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: @@ -1912,6 +1926,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/Libraries/Blob" React-RCTFabric: :path: "../../../node_modules/react-native/React" + React-RCTFBReactNativeSpec: + :path: "../../../node_modules/react-native/React" React-RCTImage: :path: "../../../node_modules/react-native/Libraries/Image" React-RCTLinking: @@ -1944,6 +1960,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/ReactCommon/react/timing" React-utils: :path: "../../../node_modules/react-native/ReactCommon/react/utils" + ReactAppDependencyProvider: + :path: build/generated/ios ReactCodegen: :path: build/generated/ios ReactCommon: @@ -1966,81 +1984,84 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: 1dca942403ed9342f98334bf4c3621f011aa7946 - DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385 - FBLazyVector: 1bf99bb46c6af9a2712592e707347315f23947aa - fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be - glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a - hermes-engine: 06a9c6900587420b90accc394199527c64259db4 - RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648 - RCTDeprecation: fb7d408617e25d7f537940000d766d60149c5fea - RCTRequired: 9aaf0ffcc1f41f0c671af863970ef25c422a9920 - RCTTypeSafety: e9a6e7d48184646eb0610295b74c0dd02768cbb2 - React: fffb3cf1b0d7aee03c4eb4952b2d58783615e9fa - React-callinvoker: 3c6ecc0315d42924e01b3ddc25cf2e49d33da169 - React-Core: d2143ba58d0c8563cf397f96f699c6069eba951c - React-CoreModules: b3cbc5e3090a8c23116c0c7dd8998e0637e29619 - React-cxxreact: 68fb9193582c4a411ce99d0b23f7b3d8da1c2e4a - React-debug: 297ed67868a76e8384669ea9b5c65c5d9d9d15d9 - React-defaultsnativemodule: 73c2ebce82c2be4d98a0257391dbb1cce201784b - React-domnativemodule: 73835de7f06190165c86bff80d80178abb8f9333 - React-Fabric: 2e33816098a5a29d2f4ae7eb2de3cfbc361b6922 - React-FabricComponents: bb2d6b89321bf79653ae3d4ec890ba7cb9fe51c8 - React-FabricImage: 019a5e834378e460ef39bf19cb506fd36491ae74 - React-featureflags: cb3dca1c74ba813f2e578c8c635989d01d14739f - React-featureflagsnativemodule: 328e1bfee2de7b680955bb4be276b045e0f260f0 - React-graphics: e626f3b24227a3a8323ed89476c8f0927c0264c7 - React-hermes: 63678d262d94835f986fa2fac1c835188f14160b - React-idlecallbacksnativemodule: 94f46b349e9878e899409cfd1ee948b59eb52181 - React-ImageManager: 223709133aa644bc1e74d354308cf2ed4c9d0f00 - React-jserrorhandler: 212d88de95b23965fdff91c1a20da30e29cdfbbb - React-jsi: d189a2a826fe6700ea1194e1c2b15535d06c8d75 - React-jsiexecutor: b75a12d37f2bf84f74b5c05131afdef243cfc69d - React-jsinspector: c3402468ae1fbca79e3d8cc11e7a0fc2c8ffafb1 - React-jsitracing: 1f46c2ec0c5ace3fe959b1aa0f8535ef1c021161 - React-logger: 697873f06b8ba436e3cddf28018ab4741e8071b6 - React-Mapbuffer: c174e11bdea12dce07df8669d6c0dc97eb0c7706 - React-microtasksnativemodule: 4c4eb6c6b6a33765ca9242e4efffb249700ea0df - react-native-pager-view: c476f76d54f946df5147645e902d3d7173688187 - react-native-safe-area-context: 004fe00b8c5aae5d57de1c27ff728cf6d3918b03 - react-native-slider: 4a0f3386a38fc3d2d955efc515aef7096f7d1ee4 - React-nativeconfig: f7ab6c152e780b99a8c17448f2d99cf5f69a2311 - React-NativeModulesApple: 70600f7edfc2c2a01e39ab13a20fd59f4c60df0b - React-perflogger: ceb97dd4e5ca6ff20eebb5a6f9e00312dcdea872 - React-performancetimeline: e39f038509c2a6b2ddb85087ba7cb8bd9caf977d - React-RCTActionSheet: a4388035260b01ac38d3647da0433b0455da9bae - React-RCTAnimation: 84117cb3521c40e95a4edfeab1c1cb159bc9a7c3 - React-RCTAppDelegate: 259fe8544ef95272f6ff3acc305a28a5780e8e51 - React-RCTBlob: 947cbb49842c9141e2b21f719e83e9197a06e453 - React-RCTFabric: f29f80a30d6d829629532786d84741b9779e7536 - React-RCTImage: 367a7dcca1d37b04e28918c025a0101494fb2a19 - React-RCTLinking: b9dc797e49683a98ee4f703f1f01ec2bd69ceb7f - React-RCTNetwork: 16e92fb59b9cd1e1175ecb2e90aa9e06e82db7a3 - React-RCTSettings: 20a1c3316956fae137d8178b4c23b7a1d56674cc - React-RCTText: 59d8792076b6010f7305f2558d868025004e108b - React-RCTVibration: 597d5aba0212d709ec79d12e76285c3d94dc0658 - React-rendererconsistency: 42f182fe910ad6c9b449cc62adae8d0eaba76f0a - React-rendererdebug: f36daf9f79831c8785215048fad4ef6453834430 - React-rncore: 85ed76036ff56e2e9c369155027cbbd84db86006 - React-RuntimeApple: 6ca44fc23bb00474f9387c0709f23d4dade79800 - React-RuntimeCore: b4d723e516e2e24616eb72de5b41a68b0736cc02 - React-runtimeexecutor: 10fae9492194097c99f6e34cedbb42a308922d32 - React-RuntimeHermes: 93437bfc028ba48122276e2748c7cd0f9bbcdb40 - React-runtimescheduler: 72bbb4bd4774a0f4f9a7e84dbf133213197a0828 - React-timing: 1050c6fa44c327f2d7538e10c548fdf521fabdb8 - React-utils: 541c6cca08f32597d4183f00e83eef2ed20d4c54 - ReactCodegen: fca7518fb8bac9ce8573b698a13d9647dbbb78ea - ReactCommon: a6b87a7591591f7a52d9c0fec3aa05e0620d5dd3 - RNCAsyncStorage: ec53e44dc3e75b44aa2a9f37618a49c3bc080a7a - RNCMaskedView: 090213d32d8b3bb83a4dcb7d12c18f0152591906 - RNFlashList: 115dd44377580761bff386a0caebf165424cf16f - RNGestureHandler: 511250b190a284388f9dd0d2e56c1df76f14cfb8 - RNReanimated: 1d16252a3b482d884ba83b09800594fbfa773291 - RNScreens: de948b09c9a30f3ea52f9840dd6f8ce92b4e33d3 - RNSVG: 8b1a777d54096b8c2a0fd38fc9d5a454332bbb4d + boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 + DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb + fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 + FBLazyVector: dac4f80f363d25f0f06bbca8a982e583c71e18ae + fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd + glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8 + hermes-engine: e929405329190e9df3ef45cea87293072747f2ef + RCT-Folly: 36fe2295e44b10d831836cc0d1daec5f8abcf809 + RCTDeprecation: 897876d002199e7a9cbbb9aa77542dd2eb2452ef + RCTRequired: b7f9ef02940c891073f2b9b63165f524bd3d1847 + RCTTypeSafety: c00136d479c43702c0a58b6667ad2d7b8389deba + React: 73c6c3d8d478df2505b82de03b3aa3085a12f099 + React-callinvoker: 7bccda05aeced2bf72cd47144195738a9aea5af2 + React-Core: d225356818946f0531777ea3b9ed6f45d3192a54 + React-CoreModules: abae5f8445763c124510ff4adf63f3000a634b0f + React-cxxreact: 6c87493d1b464271f65347bb31ca90377304e7ae + React-debug: 617cec1a9aae8f744115062c2e856fa9edf963f9 + React-defaultsnativemodule: 84403f2b8a3d1653ce1c87f94665c054c10f68ab + React-domnativemodule: 74066d3ddc98b96ac6ec263b1ac5c6db8ada326d + React-Fabric: 36867cfcccee0bce67d25717c984cdb5275bddbd + React-FabricComponents: e416da1f9683cee09217292e6f0e543a5a4b53f8 + React-FabricImage: e922a0729fae35d1cdfe51dd27bf207f24569934 + React-featureflags: 0ae90e3e3bc0120468415e177811e6ecb5dd36c5 + React-featureflagsnativemodule: 5a4025c7a13c6a59be8fe35f4b33faa69aedd339 + React-graphics: 6d0b8e706aec10d63b338524127134248a489e8d + React-hermes: 74f63e48e956651771f454747d924749c700657b + React-idlecallbacksnativemodule: dc262880299836bba2241660ac07a02a4919bc5b + React-ImageManager: b04959c12eeb8b3d5b84a3b5f8b73a5be27424c1 + React-jserrorhandler: 2ea34f344b83400f24440ab081f6ec14d408980b + React-jsi: ef0eec4eb1edd51a5a6210d3f17ec457a7e9f618 + React-jsiexecutor: e6e185f34d780baacac02af6f5eac8fca26d20da + React-jsinspector: 848272136f9f406f82c934c420ecbdb2efe1d885 + React-jsitracing: 1ee73f577a1c459742099fd19a63644febcdc0ee + React-logger: 3dc0ffac00a531441ae6fb6cc8108ba374c8e8d1 + React-Mapbuffer: ade5ce90a8643af61bd7365c51a6e957b5722045 + React-microtasksnativemodule: c314f95dc827b8fa3765372bb847b477b7663065 + react-native-pager-view: afc974c10c91fc6ae02b3ca4c87977abda2f635d + react-native-safe-area-context: 04803a01f39f31cc6605a5531280b477b48f8a88 + react-native-slider: d1358b33bc126281514fe480bb9a00c0aa9f9aac + React-nativeconfig: b9c086f83aba945dad592d2556fe2b983f541032 + React-NativeModulesApple: acb8da00a222da8da6e458a9dfae63cc264780c6 + React-perflogger: 85a817dc96114c0df3e0d5a700688cd0a5643a9d + React-performancetimeline: aa5ec62ece04dc4884f71d7f96fa88e2633ed709 + React-RCTActionSheet: 88aa440fb2c9c723690047989f8fe3855e2b3024 + React-RCTAnimation: 6c57eec2ed825b98ad41efdc741ad0552e5f94a6 + React-RCTAppDelegate: e58be35cb18745ae32a8c66df3ac320cdc79bc7d + React-RCTBlob: c7b0edce098d2f91540e34eda1bc7ecedf08a0b7 + React-RCTFabric: 531b9c3f152cb2ca11a7f3236ad6df948d75f0fc + React-RCTFBReactNativeSpec: c394545ebef5c7bf09c71a3468ef9472e5155a6e + React-RCTImage: 8bcb2b379066e7e43ff1029bd28ec4a90d65e774 + React-RCTLinking: 004b26ec552481a247b8840dc6b26a97f92fdf69 + React-RCTNetwork: 288c01758d524af72f1b1d2860165b0d1e6f7adc + React-RCTSettings: cfdbb48cff4fd11112dffa8d6c73a4fc23145df4 + React-RCTText: 9b7607b8349109d23940ec8d8a603dd58a7e18f7 + React-RCTVibration: 992b54a43499ee7c7b699fea2bc56663ebde4182 + React-rendererconsistency: f74a1be04eb6c092196d31f15eff014d2acfe0cc + React-rendererdebug: 8657615a8c308f98f6cf2398513fc9af62d30827 + React-rncore: 523fc380d9c598cb4a531396878fdd3055c2b8af + React-RuntimeApple: 0b743cea005875e04a53088c6a699fec6a49dbb6 + React-RuntimeCore: ccb78361a742dae6846e624f19ef6835921b117f + React-runtimeexecutor: f3205d0a3840877ef42af3f2c783903dc1efd65b + React-RuntimeHermes: da99fa9f83bc8f81b4774bf8fb87f06cb9e9ac24 + React-runtimescheduler: b7bec275635074e791e996d6f4a12d2e63d1d1e3 + React-timing: e17ac82c31c73234701702d2b76fbd8695931d3b + React-utils: 4408d84e21b83e3fdcf0b0d4bc23ef829898e148 + ReactAppDependencyProvider: 3c3394a2c93b03ae9859e02bed235c4d91e31723 + ReactCodegen: ef05d5dd3c7327234365df4c9c18a99a73496a87 + ReactCommon: f579a0130fb73a351de4723fb33d277c5bf3283d + RNCAsyncStorage: cc6479c4acd84cc7004946946c8afe30b018184d + RNCMaskedView: 6d4bf14f158d1a93484edf30850cbbd7ccbb8668 + RNFlashList: 9843320e0885ed1b494ea72ab0febfd3beb3dab0 + RNGestureHandler: 8b33b2c5688a54fcce223d184753757da498235c + RNReanimated: 33b68f6cf45ff999826c655cb9b200c00be35d1c + RNScreens: 81237378a6d7921fb2dbb6a6c6c45c3d8cc696bb + RNSVG: 515a902fc18a375907eb4c3abec0b803fbfa37ef SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 - Yoga: c7ea4c36c1d78ebbf45529b6e78283e4e0fe4956 + Yoga: dd05f79b1943c96893294ee5040576aa6e8a8d82 -PODFILE CHECKSUM: 44956aee8c836a85949aa1fa8dde2c10e661633e +PODFILE CHECKSUM: f6c84e0ec8eddea6d3ee15329987727bd1e6ff08 COCOAPODS: 1.14.3 diff --git a/apps/paper-example/ios/ReanimatedExample.xcodeproj/project.pbxproj b/apps/paper-example/ios/ReanimatedExample.xcodeproj/project.pbxproj index d3ee499ff0b7..b1d0c2b3b80d 100644 --- a/apps/paper-example/ios/ReanimatedExample.xcodeproj/project.pbxproj +++ b/apps/paper-example/ios/ReanimatedExample.xcodeproj/project.pbxproj @@ -10,20 +10,18 @@ 00E356F31AD99517003FC87E /* ReanimatedExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReanimatedExampleTests.m */; }; 01F23DE32D5D40AFBA54CECA /* OFL.txt in Resources */ = {isa = PBXBuildFile; fileRef = A0ACA5199B664A06875E3078 /* OFL.txt */; }; 0C80B921A6F3F58F76C31292 /* libPods-ReanimatedExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-ReanimatedExample.a */; }; - 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 */; }; 16712F083334447A86E4B6F6 /* Poppins-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EB011F0FB31E4F7CAB35AC19 /* Poppins-Light.ttf */; }; 1679031BD035452885D1470A /* Poppins-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5D2831EBE17B4BDF82595CF9 /* Poppins-Thin.ttf */; }; 1B7257DC9801417BA628EDDF /* Poppins-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B15A28D1B67746649BDE2A19 /* Poppins-ExtraLight.ttf */; }; 45B1CC687A294F2690285A0E /* Poppins-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4B3B68A8164D4E14B932F176 /* Poppins-Black.ttf */; }; - 7699B88040F8A987B510C191 /* libPods-ReanimatedExample-ReanimatedExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReanimatedExample-ReanimatedExampleTests.a */; }; 78A3D55742104724B1664729 /* Poppins-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 45466F56418D4C20A76796CD /* Poppins-Bold.ttf */; }; 86DA4524977E4EB1B2318702 /* Poppins-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 90BBDF9FF0374A978C92373B /* Poppins-Medium.ttf */; }; 8C80EB552A570619005E26CE /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8C80EB542A570619005E26CE /* Launch Screen.storyboard */; }; 96B7B4417BB849DABA330489 /* Poppins-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A855ACED713A4D3791AC9660 /* Poppins-Regular.ttf */; }; B2EAE56926634BF78EF65B2D /* Poppins-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 74937F8590434194BDCF3A71 /* Poppins-ExtraBold.ttf */; }; B38121616D8F41CCA854FA11 /* Poppins-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7F855F37E6C4419C9300E211 /* Poppins-SemiBold.ttf */; }; + C200C1042D33B9D500F25439 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C200C1032D33B9D500F25439 /* AppDelegate.swift */; }; C29CFC1D29193CAB008EC329 /* MBFingerTipWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = C29CFC1B29193CAB008EC329 /* MBFingerTipWindow.m */; }; F4C3F7602BCFD377008A4CDE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = F4C3F75F2BCFD377008A4CDE /* PrivacyInfo.xcprivacy */; }; /* End PBXBuildFile section */ @@ -43,27 +41,22 @@ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* ReanimatedExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReanimatedExampleTests.m; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* ReanimatedExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReanimatedExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReanimatedExample/AppDelegate.h; sourceTree = ""; }; - 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = ReanimatedExample/AppDelegate.mm; sourceTree = ""; }; 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReanimatedExample/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReanimatedExample/Info.plist; sourceTree = ""; }; - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReanimatedExample/main.m; sourceTree = ""; }; - 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReanimatedExample-ReanimatedExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReanimatedExample-ReanimatedExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3B4392A12AC88292D35C810B /* Pods-ReanimatedExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReanimatedExample.debug.xcconfig"; path = "Target Support Files/Pods-ReanimatedExample/Pods-ReanimatedExample.debug.xcconfig"; sourceTree = ""; }; 45466F56418D4C20A76796CD /* Poppins-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Bold.ttf"; path = "../assets/fonts/Poppins/Poppins-Bold.ttf"; sourceTree = ""; }; 4B3B68A8164D4E14B932F176 /* Poppins-Black.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Black.ttf"; path = "../assets/fonts/Poppins/Poppins-Black.ttf"; sourceTree = ""; }; 5709B34CF0A7D63546082F79 /* Pods-ReanimatedExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReanimatedExample.release.xcconfig"; path = "Target Support Files/Pods-ReanimatedExample/Pods-ReanimatedExample.release.xcconfig"; sourceTree = ""; }; - 5B7EB9410499542E8C5724F5 /* Pods-ReanimatedExample-ReanimatedExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReanimatedExample-ReanimatedExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests.debug.xcconfig"; sourceTree = ""; }; 5D2831EBE17B4BDF82595CF9 /* Poppins-Thin.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Thin.ttf"; path = "../assets/fonts/Poppins/Poppins-Thin.ttf"; sourceTree = ""; }; 5DCACB8F33CDC322A6C60F78 /* libPods-ReanimatedExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReanimatedExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 74937F8590434194BDCF3A71 /* Poppins-ExtraBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-ExtraBold.ttf"; path = "../assets/fonts/Poppins/Poppins-ExtraBold.ttf"; sourceTree = ""; }; 7F855F37E6C4419C9300E211 /* Poppins-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-SemiBold.ttf"; path = "../assets/fonts/Poppins/Poppins-SemiBold.ttf"; sourceTree = ""; }; - 89C6BE57DB24E9ADA2F236DE /* Pods-ReanimatedExample-ReanimatedExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReanimatedExample-ReanimatedExampleTests.release.xcconfig"; path = "Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests.release.xcconfig"; sourceTree = ""; }; 8C80EB542A570619005E26CE /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "Launch Screen.storyboard"; path = "ReanimatedExample/Launch Screen.storyboard"; sourceTree = ""; }; 90BBDF9FF0374A978C92373B /* Poppins-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Medium.ttf"; path = "../assets/fonts/Poppins/Poppins-Medium.ttf"; sourceTree = ""; }; A0ACA5199B664A06875E3078 /* OFL.txt */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = OFL.txt; path = ../assets/fonts/Poppins/OFL.txt; sourceTree = ""; }; A855ACED713A4D3791AC9660 /* Poppins-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Regular.ttf"; path = "../assets/fonts/Poppins/Poppins-Regular.ttf"; sourceTree = ""; }; B15A28D1B67746649BDE2A19 /* Poppins-ExtraLight.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-ExtraLight.ttf"; path = "../assets/fonts/Poppins/Poppins-ExtraLight.ttf"; sourceTree = ""; }; + C200C1032D33B9D500F25439 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = ReanimatedExample/AppDelegate.swift; sourceTree = ""; }; C29CFC1B29193CAB008EC329 /* MBFingerTipWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBFingerTipWindow.m; sourceTree = ""; }; C29CFC1C29193CAB008EC329 /* MBFingerTipWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBFingerTipWindow.h; sourceTree = ""; }; EB011F0FB31E4F7CAB35AC19 /* Poppins-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Light.ttf"; path = "../assets/fonts/Poppins/Poppins-Light.ttf"; sourceTree = ""; }; @@ -76,7 +69,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7699B88040F8A987B510C191 /* libPods-ReanimatedExample-ReanimatedExampleTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -111,14 +103,12 @@ 13B07FAE1A68108700A75B9A /* ReanimatedExample */ = { isa = PBXGroup; children = ( + C200C1032D33B9D500F25439 /* AppDelegate.swift */, C29CFC1C29193CAB008EC329 /* MBFingerTipWindow.h */, C29CFC1B29193CAB008EC329 /* MBFingerTipWindow.m */, - 13B07FAF1A68108700A75B9A /* AppDelegate.h */, - 13B07FB01A68108700A75B9A /* AppDelegate.mm */, 13B07FB51A68108700A75B9A /* Images.xcassets */, 8C80EB542A570619005E26CE /* Launch Screen.storyboard */, 13B07FB61A68108700A75B9A /* Info.plist */, - 13B07FB71A68108700A75B9A /* main.m */, F4C3F75F2BCFD377008A4CDE /* PrivacyInfo.xcprivacy */, ); name = ReanimatedExample; @@ -129,7 +119,6 @@ children = ( ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 5DCACB8F33CDC322A6C60F78 /* libPods-ReanimatedExample.a */, - 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReanimatedExample-ReanimatedExampleTests.a */, ); name = Frameworks; sourceTree = ""; @@ -188,8 +177,6 @@ children = ( 3B4392A12AC88292D35C810B /* Pods-ReanimatedExample.debug.xcconfig */, 5709B34CF0A7D63546082F79 /* Pods-ReanimatedExample.release.xcconfig */, - 5B7EB9410499542E8C5724F5 /* Pods-ReanimatedExample-ReanimatedExampleTests.debug.xcconfig */, - 89C6BE57DB24E9ADA2F236DE /* Pods-ReanimatedExample-ReanimatedExampleTests.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -201,12 +188,9 @@ isa = PBXNativeTarget; buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReanimatedExampleTests" */; buildPhases = ( - A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */, 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, - C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, - F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -253,7 +237,7 @@ TestTargetID = 13B07F861A680F5B00A75B9A; }; 13B07F861A680F5B00A75B9A = { - LastSwiftMigration = 1120; + LastSwiftMigration = 1620; }; }; }; @@ -340,28 +324,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample/Pods-ReanimatedExample-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ReanimatedExample-ReanimatedExampleTests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -384,23 +346,6 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -420,7 +365,7 @@ }; EC2A315BF2310B4CCE81E020 /* [CP-User] Generate metadata for clangd */ = { isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = true; + alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); @@ -429,23 +374,6 @@ shellPath = /bin/bash; shellScript = "../../../packages/react-native-reanimated/scripts/clangd-generate-xcode-metadata.sh"; }; - F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReanimatedExample-ReanimatedExampleTests/Pods-ReanimatedExample-ReanimatedExampleTests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -461,8 +389,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, - 13B07FC11A68108700A75B9A /* main.m in Sources */, + C200C1042D33B9D500F25439 /* AppDelegate.swift in Sources */, C29CFC1D29193CAB008EC329 /* MBFingerTipWindow.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -480,7 +407,6 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-ReanimatedExample-ReanimatedExampleTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -507,7 +433,6 @@ }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-ReanimatedExample-ReanimatedExampleTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; @@ -654,10 +579,7 @@ "-DFOLLY_CFG_NO_COROUTINES=1", "-DFOLLY_HAVE_CLOCK_GETTIME=1", ); - OTHER_LDFLAGS = ( - "$(inherited)", - " ", - ); + OTHER_LDFLAGS = "$(inherited) "; REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native"; SDKROOT = iphoneos; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; @@ -730,10 +652,7 @@ "-DFOLLY_CFG_NO_COROUTINES=1", "-DFOLLY_HAVE_CLOCK_GETTIME=1", ); - OTHER_LDFLAGS = ( - "$(inherited)", - " ", - ); + OTHER_LDFLAGS = "$(inherited) "; REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true; diff --git a/apps/paper-example/ios/ReanimatedExample/AppDelegate.h b/apps/paper-example/ios/ReanimatedExample/AppDelegate.h deleted file mode 100644 index 5d2808256ca0..000000000000 --- a/apps/paper-example/ios/ReanimatedExample/AppDelegate.h +++ /dev/null @@ -1,6 +0,0 @@ -#import -#import - -@interface AppDelegate : RCTAppDelegate - -@end diff --git a/apps/paper-example/ios/ReanimatedExample/AppDelegate.mm b/apps/paper-example/ios/ReanimatedExample/AppDelegate.mm deleted file mode 100644 index 718eca0a510b..000000000000 --- a/apps/paper-example/ios/ReanimatedExample/AppDelegate.mm +++ /dev/null @@ -1,31 +0,0 @@ -#import "AppDelegate.h" - -#import - -@implementation AppDelegate - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions -{ - self.moduleName = @"ReanimatedExample"; - // You can add your custom initial props in the dictionary below. - // They will be passed down to the ViewController used by React Native. - self.initialProps = @{}; - - return [super application:application didFinishLaunchingWithOptions:launchOptions]; -} - -- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge -{ - return [self bundleURL]; -} - -- (NSURL *)bundleURL -{ -#if DEBUG - return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; -#else - return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; -#endif -} - -@end diff --git a/apps/paper-example/ios/ReanimatedExample/AppDelegate.swift b/apps/paper-example/ios/ReanimatedExample/AppDelegate.swift new file mode 100644 index 000000000000..5b396ad5f507 --- /dev/null +++ b/apps/paper-example/ios/ReanimatedExample/AppDelegate.swift @@ -0,0 +1,30 @@ +import UIKit +import React +import React_RCTAppDelegate +import ReactAppDependencyProvider + +@main +class AppDelegate: RCTAppDelegate { + override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { + self.moduleName = "ReanimatedExample" + self.dependencyProvider = RCTAppDependencyProvider() + + // You can add your custom initial props in the dictionary below. + // They will be passed down to the ViewController used by React Native. + self.initialProps = [:] + + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } + + override func sourceURL(for bridge: RCTBridge) -> URL? { + self.bundleURL() + } + + override func bundleURL() -> URL? { +#if DEBUG + RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index") +#else + Bundle.main.url(forResource: "main", withExtension: "jsbundle") +#endif + } +} diff --git a/apps/paper-example/ios/ReanimatedExample/main.m b/apps/paper-example/ios/ReanimatedExample/main.m deleted file mode 100644 index d645c7246c42..000000000000 --- a/apps/paper-example/ios/ReanimatedExample/main.m +++ /dev/null @@ -1,10 +0,0 @@ -#import - -#import "AppDelegate.h" - -int main(int argc, char *argv[]) -{ - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); - } -} diff --git a/apps/paper-example/package.json b/apps/paper-example/package.json index f4036b8bccef..e13de262e1c1 100644 --- a/apps/paper-example/package.json +++ b/apps/paper-example/package.json @@ -12,37 +12,36 @@ "test": "jest" }, "dependencies": { - "@react-native-async-storage/async-storage": "^1.24.0", - "@react-native-community/slider": "^4.5.5", - "@react-native-masked-view/masked-view": "^0.3.1", + "@react-native-async-storage/async-storage": "2.1.0", + "@react-native-community/slider": "4.5.5", + "@react-native-masked-view/masked-view": "0.3.2", "@react-navigation/native": "^7.0.0", "@react-navigation/native-stack": "^7.0.0", - "@shopify/flash-list": "^1.7.1", + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch", "common-app": "workspace:*", "react": "18.3.1", - "react-native": "0.76.5", - "react-native-gesture-handler": "2.20.2", - "react-native-pager-view": "^6.4.1", + "react-native": "0.77.0-rc.6", + "react-native-gesture-handler": "2.22.0", + "react-native-pager-view": "6.6.1", "react-native-reanimated": "workspace:*", - "react-native-safe-area-context": "^4.13.1", - "react-native-screens": "^4.0.0", - "react-native-svg": "^15.8.0" + "react-native-safe-area-context": "5.1.0", + "react-native-screens": "4.5.0", + "react-native-svg": "15.11.1" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@babel/runtime": "^7.25.0", - "@react-native-community/cli": "15.0.0", - "@react-native-community/cli-platform-android": "15.0.0", - "@react-native-community/cli-platform-ios": "15.0.0", - "@react-native/babel-preset": "0.76.5", - "@react-native/eslint-config": "0.76.5", - "@react-native/metro-config": "0.76.5", - "@react-native/typescript-config": "0.76.5", - "@types/jest": "^29.2.1", + "@react-native-community/cli": "15.0.1", + "@react-native-community/cli-platform-android": "15.0.1", + "@react-native-community/cli-platform-ios": "15.0.1", + "@react-native/babel-preset": "0.77.0-rc.6", + "@react-native/eslint-config": "0.77.0-rc.6", + "@react-native/metro-config": "0.77.0-rc.6", + "@react-native/typescript-config": "0.77.0-rc.6", + "@types/jest": "^29.5.13", "@types/react": "^18.2.6", "@types/react-test-renderer": "^18.0.0", - "babel-jest": "^29.6.3", "eslint": "^8.57.0", "jest": "^29.6.3", "patch-package": "^8.0.0", diff --git a/apps/tvos-example/Gemfile.lock b/apps/tvos-example/Gemfile.lock index c08f47818429..6a8836520bf2 100644 --- a/apps/tvos-example/Gemfile.lock +++ b/apps/tvos-example/Gemfile.lock @@ -5,7 +5,7 @@ GEM base64 nkf rexml - activesupport (7.1.5.1) + activesupport (7.1.5) base64 benchmark (>= 0.3) bigdecimal diff --git a/apps/web-example/package.json b/apps/web-example/package.json index 7a711e627363..072fe63338d2 100644 --- a/apps/web-example/package.json +++ b/apps/web-example/package.json @@ -14,7 +14,7 @@ "dependencies": { "@expo/vector-icons": "^14.0.0", "@react-navigation/native": "^7.0.0", - "@shopify/flash-list": "^1.7.1", + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch", "common-app": "workspace:*", "expo": "^52.0.4", "react": "18.3.1", diff --git a/packages/eslint-plugin-reanimated/package.json b/packages/eslint-plugin-reanimated/package.json index 3944e126a7e5..27be1f812e44 100644 --- a/packages/eslint-plugin-reanimated/package.json +++ b/packages/eslint-plugin-reanimated/package.json @@ -12,7 +12,7 @@ "format": "prettier --write --list-different ." }, "devDependencies": { - "@types/jest": "^29.5.11", + "@types/jest": "^29.5.13", "@types/node": "^20.11.5", "@typescript-eslint/parser": "^6.19.1", "@typescript-eslint/rule-tester": "^6.19.1", diff --git a/packages/react-native-reanimated/package.json b/packages/react-native-reanimated/package.json index b44cd8bea457..bbb6a8dc2803 100644 --- a/packages/react-native-reanimated/package.json +++ b/packages/react-native-reanimated/package.json @@ -101,10 +101,10 @@ "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@babel/types": "^7.20.0", - "@react-native/babel-preset": "0.76.5", - "@react-native/eslint-config": "0.76.5", - "@react-native/metro-config": "0.76.5", - "@react-native/typescript-config": "0.76.5", + "@react-native/babel-preset": "0.77.0-rc.6", + "@react-native/eslint-config": "0.77.0-rc.6", + "@react-native/metro-config": "0.77.0-rc.6", + "@react-native/typescript-config": "0.77.0-rc.6", "@testing-library/jest-native": "^4.0.4", "@testing-library/react-hooks": "^8.0.0", "@testing-library/react-native": "^12.5.2", @@ -113,7 +113,7 @@ "@types/babel__traverse": "^7.14.2", "@types/convert-source-map": "^2.0.0", "@types/invariant": "^2.2.35", - "@types/jest": "^29.0.0", + "@types/jest": "^29.5.13", "@types/node": "^18.0.0", "@types/react": "^18.0.26", "@types/react-test-renderer": "^17.0.0-0", @@ -122,7 +122,6 @@ "@typescript-eslint/rule-tester": "^6.21.0", "axios": "^1.7.4", "babel-eslint": "^10.1.0", - "babel-jest": "^27.5.1", "babel-plugin-module-resolver": "^5.0.0", "clang-format": "^1.6.0", "code-tag": "^1.1.0", @@ -144,9 +143,9 @@ "madge": "^5.0.1", "prettier": "^3.3.3", "react": "18.3.1", - "react-native": "0.76.5", + "react-native": "0.77.0-rc.6", "react-native-builder-bob": "0.33.1", - "react-native-gesture-handler": "2.20.2", + "react-native-gesture-handler": "2.22.0", "react-native-web": "0.19.11", "react-test-renderer": "18.2.0", "shelljs": "^0.8.5", diff --git a/packages/react-native-reanimated/plugin/package.json b/packages/react-native-reanimated/plugin/package.json index 611907d76e69..0eb15a31ef0d 100644 --- a/packages/react-native-reanimated/plugin/package.json +++ b/packages/react-native-reanimated/plugin/package.json @@ -10,7 +10,7 @@ "@babel/plugin-transform-unicode-regex": "^7.24.7", "@babel/traverse": "^7.20.0", "@babel/types": "^7.20.0", - "@react-native/eslint-config": "0.76.5", + "@react-native/eslint-config": "0.77.0-rc.6", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^7.0.2", "@typescript-eslint/parser": "^7.0.2", diff --git a/yarn.lock b/yarn.lock index 86e76d600ef8..8459929f7f63 100644 --- a/yarn.lock +++ b/yarn.lock @@ -110,7 +110,7 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:^7.1.0, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.12.9, @babel/core@npm:^7.13.16, @babel/core@npm:^7.20.0, @babel/core@npm:^7.23.9, @babel/core@npm:^7.25.2": +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.12.9, @babel/core@npm:^7.13.16, @babel/core@npm:^7.20.0, @babel/core@npm:^7.23.9, @babel/core@npm:^7.25.2": version: 7.25.2 resolution: "@babel/core@npm:7.25.2" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:^7.25.8": +"@babel/core@npm:^7.24.7, @babel/core@npm:^7.25.8": version: 7.26.0 resolution: "@babel/core@npm:7.26.0" dependencies: @@ -622,7 +622,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.3": +"@babel/parser@npm:^7.24.7, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.3": version: 7.26.3 resolution: "@babel/parser@npm:7.26.3" dependencies: @@ -2149,6 +2149,21 @@ __metadata: languageName: node linkType: hard +"@babel/register@npm:^7.24.6": + version: 7.25.9 + resolution: "@babel/register@npm:7.25.9" + dependencies: + clone-deep: "npm:^4.0.1" + find-cache-dir: "npm:^2.0.0" + make-dir: "npm:^2.1.0" + pirates: "npm:^4.0.6" + source-map-support: "npm:^0.5.16" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10/eb0192c2e83566043b9777062c50567c869bbe9ed65cbeece25a3f0c07c7763199d8008b7b860cb0090d6f4f2ab1b590adf29b539115c260566e44296e0559fb + languageName: node + linkType: hard + "@babel/regjsgen@npm:^0.8.0": version: 0.8.0 resolution: "@babel/regjsgen@npm:0.8.0" @@ -4404,29 +4419,6 @@ __metadata: languageName: node linkType: hard -"@jest/transform@npm:^27.5.1": - version: 27.5.1 - resolution: "@jest/transform@npm:27.5.1" - dependencies: - "@babel/core": "npm:^7.1.0" - "@jest/types": "npm:^27.5.1" - babel-plugin-istanbul: "npm:^6.1.1" - chalk: "npm:^4.0.0" - convert-source-map: "npm:^1.4.0" - fast-json-stable-stringify: "npm:^2.0.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^27.5.1" - jest-regex-util: "npm:^27.5.1" - jest-util: "npm:^27.5.1" - micromatch: "npm:^4.0.4" - pirates: "npm:^4.0.4" - slash: "npm:^3.0.0" - source-map: "npm:^0.6.1" - write-file-atomic: "npm:^3.0.0" - checksum: 10/9e0bec99971d28fc205e5e282be384a0269760b8452aa94e3d400465819b6c790c862ec5597d8c9439f2da97e68c0c4cec071340ff3e4c4414a34e5b2a19074a - languageName: node - linkType: hard - "@jest/transform@npm:^29.7.0": version: 29.7.0 resolution: "@jest/transform@npm:29.7.0" @@ -4463,19 +4455,6 @@ __metadata: languageName: node linkType: hard -"@jest/types@npm:^27.5.1": - version: 27.5.1 - resolution: "@jest/types@npm:27.5.1" - dependencies: - "@types/istanbul-lib-coverage": "npm:^2.0.0" - "@types/istanbul-reports": "npm:^3.0.0" - "@types/node": "npm:*" - "@types/yargs": "npm:^16.0.0" - chalk: "npm:^4.0.0" - checksum: 10/d3ca1655673539c54665f3e9135dc70887feb6b667b956e712c38f42e513ae007d3593b8075aecea8f2db7119f911773010f17f93be070b1725fbc6225539b6e - languageName: node - linkType: hard - "@jest/types@npm:^29.6.3": version: 29.6.3 resolution: "@jest/types@npm:29.6.3" @@ -4739,14 +4718,14 @@ __metadata: languageName: node linkType: hard -"@react-native-async-storage/async-storage@npm:^1.24.0": - version: 1.24.0 - resolution: "@react-native-async-storage/async-storage@npm:1.24.0" +"@react-native-async-storage/async-storage@npm:2.1.0": + version: 2.1.0 + resolution: "@react-native-async-storage/async-storage@npm:2.1.0" dependencies: merge-options: "npm:^3.0.4" peerDependencies: - react-native: ^0.0.0-0 || >=0.60 <1.0 - checksum: 10/5a6b7ac8bd7a9e537a53a3f2301530c284fd885a45ce4a4e0014859bc0f7c89bee5c4b5a6b3740b8d83751561159b237474d18f32fad75ea7d56d4ddb2180d91 + react-native: ^0.0.0-0 || >=0.65 <1.0 + checksum: 10/ce7995f456a688042a5a4cd31e97aafff24d42d10c9d573e9e763ca7775156a87e4d1685daa9c9ea67c2721cbceeb464a0b75641723a89b47f45806e5f8960c2 languageName: node linkType: hard @@ -4762,18 +4741,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-clean@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-clean@npm:15.0.0" - dependencies: - "@react-native-community/cli-tools": "npm:15.0.0" - chalk: "npm:^4.1.2" - execa: "npm:^5.0.0" - fast-glob: "npm:^3.3.2" - checksum: 10/28ab81545652008f20b964e7f84f6359644064f68613663f1c9d3428459f0eab2b7bf6d10ce5163d6409e571752f97fdf54d93bbf8fd5aed115e51f693a8ca82 - languageName: node - linkType: hard - "@react-native-community/cli-clean@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-clean@npm:15.0.1" @@ -4812,20 +4779,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-config@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-config@npm:15.0.0" - dependencies: - "@react-native-community/cli-tools": "npm:15.0.0" - chalk: "npm:^4.1.2" - cosmiconfig: "npm:^9.0.0" - deepmerge: "npm:^4.3.0" - fast-glob: "npm:^3.3.2" - joi: "npm:^17.2.1" - checksum: 10/76ed455640cc2d369c1e2ecb33eb871926a0d2f7865ef966aae7d08463ceb31f9463d9981059cc7a6d68539c67b80a0bbdf9c491a94f69b14f9f17548a31ab0a - languageName: node - linkType: hard - "@react-native-community/cli-config@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-config@npm:15.0.1" @@ -4849,15 +4802,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-debugger-ui@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-debugger-ui@npm:15.0.0" - dependencies: - serve-static: "npm:^1.13.1" - checksum: 10/2323e76a38bd0510902f760fdc9ace6cccf6733292576f074e81ae2e311d067ce1f56389dbc6d93800f4077dfdf6b3a57543c664b6d54ac6b43c46e4846a5d6e - languageName: node - linkType: hard - "@react-native-community/cli-debugger-ui@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-debugger-ui@npm:15.0.1" @@ -4891,30 +4835,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-doctor@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-doctor@npm:15.0.0" - dependencies: - "@react-native-community/cli-config": "npm:15.0.0" - "@react-native-community/cli-platform-android": "npm:15.0.0" - "@react-native-community/cli-platform-apple": "npm:15.0.0" - "@react-native-community/cli-platform-ios": "npm:15.0.0" - "@react-native-community/cli-tools": "npm:15.0.0" - chalk: "npm:^4.1.2" - command-exists: "npm:^1.2.8" - deepmerge: "npm:^4.3.0" - envinfo: "npm:^7.13.0" - execa: "npm:^5.0.0" - node-stream-zip: "npm:^1.9.1" - ora: "npm:^5.4.1" - semver: "npm:^7.5.2" - strip-ansi: "npm:^5.2.0" - wcwidth: "npm:^1.0.1" - yaml: "npm:^2.2.1" - checksum: 10/8f4d44125f3d297f4e7d493d0ad2df65efc6685a5e2d2998e29c8c355bbe81d80dab3fcf68f55a32b77c82afa5898f10b2eb418456c0785b904bd107b061221d - languageName: node - linkType: hard - "@react-native-community/cli-doctor@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-doctor@npm:15.0.1" @@ -4953,20 +4873,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-platform-android@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-platform-android@npm:15.0.0" - dependencies: - "@react-native-community/cli-tools": "npm:15.0.0" - chalk: "npm:^4.1.2" - execa: "npm:^5.0.0" - fast-glob: "npm:^3.3.2" - fast-xml-parser: "npm:^4.4.1" - logkitty: "npm:^0.7.1" - checksum: 10/048fbc30f300e64aba0fce4e215aa7858646ab7d3d036729e2428fec90c6ece4e3e19badb8308dd8c65ae807654bfbb1f1a7ffde14e32e42c919e5a0702fb8e6 - languageName: node - linkType: hard - "@react-native-community/cli-platform-android@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-platform-android@npm:15.0.1" @@ -4995,20 +4901,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-platform-apple@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-platform-apple@npm:15.0.0" - dependencies: - "@react-native-community/cli-tools": "npm:15.0.0" - chalk: "npm:^4.1.2" - execa: "npm:^5.0.0" - fast-glob: "npm:^3.3.2" - fast-xml-parser: "npm:^4.4.1" - ora: "npm:^5.4.1" - checksum: 10/80f38a46cc4e66509c70034b7d253cdc66531cda18fdd032df8f288676f0af20bae263894eec199de1aec37345b045a2e9b59ad01040e112b5b6d34309cdac1e - languageName: node - linkType: hard - "@react-native-community/cli-platform-apple@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-platform-apple@npm:15.0.1" @@ -5031,15 +4923,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-platform-ios@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-platform-ios@npm:15.0.0" - dependencies: - "@react-native-community/cli-platform-apple": "npm:15.0.0" - checksum: 10/9a8242895484f40910c42893f39b42c6ba63bcdf5a7f404db068072bddd5dd96eb6e2ebad76e1fd80e2b562e77ed89bb497d8876d6a85690c6e05dac5040b18e - languageName: node - linkType: hard - "@react-native-community/cli-platform-ios@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-platform-ios@npm:15.0.1" @@ -5066,23 +4949,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-server-api@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-server-api@npm:15.0.0" - dependencies: - "@react-native-community/cli-debugger-ui": "npm:15.0.0" - "@react-native-community/cli-tools": "npm:15.0.0" - compression: "npm:^1.7.1" - connect: "npm:^3.6.5" - errorhandler: "npm:^1.5.1" - nocache: "npm:^3.0.1" - pretty-format: "npm:^26.6.2" - serve-static: "npm:^1.13.1" - ws: "npm:^6.2.3" - checksum: 10/54f6abcc58a9892353c7e6ef2e3d9ed509345205f6a508246878b44627508ee00a4aac3c8b18ee4c864cee50d69ffefe4cabe4c1e0ce6f4f67c43f31c929c8a9 - languageName: node - linkType: hard - "@react-native-community/cli-server-api@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-server-api@npm:15.0.1" @@ -5118,25 +4984,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-tools@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-tools@npm:15.0.0" - dependencies: - appdirsjs: "npm:^1.2.4" - chalk: "npm:^4.1.2" - execa: "npm:^5.0.0" - find-up: "npm:^5.0.0" - mime: "npm:^2.4.1" - open: "npm:^6.2.0" - ora: "npm:^5.4.1" - prompts: "npm:^2.4.2" - semver: "npm:^7.5.2" - shell-quote: "npm:^1.7.3" - sudo-prompt: "npm:^9.0.0" - checksum: 10/4597fe9c3221aa26fc581bde44782c6376860929c40b7a7de70aed722d20992395aa4844210e901dc2188ef9bfa5ffe9b49b3ce2cbb346385aac93ea67360b23 - languageName: node - linkType: hard - "@react-native-community/cli-tools@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-tools@npm:15.0.1" @@ -5165,15 +5012,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-types@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli-types@npm:15.0.0" - dependencies: - joi: "npm:^17.2.1" - checksum: 10/c67177ff58d76e08341a8510745d834c9fdabb1f84b3f6d427313c5724b36920ca5844291e9690f0c95a9626bba9745f688f6573237c48ddd127c9dc939f81fe - languageName: node - linkType: hard - "@react-native-community/cli-types@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli-types@npm:15.0.1" @@ -5209,32 +5047,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli@npm:15.0.0": - version: 15.0.0 - resolution: "@react-native-community/cli@npm:15.0.0" - dependencies: - "@react-native-community/cli-clean": "npm:15.0.0" - "@react-native-community/cli-config": "npm:15.0.0" - "@react-native-community/cli-debugger-ui": "npm:15.0.0" - "@react-native-community/cli-doctor": "npm:15.0.0" - "@react-native-community/cli-server-api": "npm:15.0.0" - "@react-native-community/cli-tools": "npm:15.0.0" - "@react-native-community/cli-types": "npm:15.0.0" - chalk: "npm:^4.1.2" - commander: "npm:^9.4.1" - deepmerge: "npm:^4.3.0" - execa: "npm:^5.0.0" - find-up: "npm:^5.0.0" - fs-extra: "npm:^8.1.0" - graceful-fs: "npm:^4.1.3" - prompts: "npm:^2.4.2" - semver: "npm:^7.5.2" - bin: - rnc-cli: build/bin.js - checksum: 10/9b51621c6a084b2bf9248f03f37467dfaa7c1e8df21a2405b3aac1560c2dd6531907383bad9722337e133e7e9508116402772f64ffd853ecbdc00b3b06066231 - languageName: node - linkType: hard - "@react-native-community/cli@npm:15.0.1": version: 15.0.1 resolution: "@react-native-community/cli@npm:15.0.1" @@ -5261,7 +5073,7 @@ __metadata: languageName: node linkType: hard -"@react-native-community/slider@npm:^4.5.5": +"@react-native-community/slider@npm:4.5.5": version: 4.5.5 resolution: "@react-native-community/slider@npm:4.5.5" checksum: 10/8c49f7e0b7d7c37b91c936805106e88ee31011dc210d5c237c07e35d330870536b560b48e6212195fffc2e2706b16c31715b6cebbb2cc33127702bff9850f134 @@ -5285,13 +5097,13 @@ __metadata: languageName: node linkType: hard -"@react-native-masked-view/masked-view@npm:^0.3.1": - version: 0.3.1 - resolution: "@react-native-masked-view/masked-view@npm:0.3.1" +"@react-native-masked-view/masked-view@npm:0.3.2": + version: 0.3.2 + resolution: "@react-native-masked-view/masked-view@npm:0.3.2" peerDependencies: react: ">=16" react-native: ">=0.57" - checksum: 10/71d7a6277a869beaed34497d5b92cba7405586fe19ad05c2e892e5e5843b664386080573f4cfaea1fb68ed77de94bf46c20958f4e58d1a5a716c3652d65815b9 + checksum: 10/04ffbc01083aa563ca1e2d7ef6759e7b326b8129f5bb1aa5f3142348adab06d5e321a400cf70a5434324dfa906add383f8214640697c48c9e5311b30bfea03d9 languageName: node linkType: hard @@ -5343,6 +5155,13 @@ __metadata: languageName: node linkType: hard +"@react-native/assets-registry@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/assets-registry@npm:0.77.0-rc.6" + checksum: 10/9cc74575e4f0512b8a4034e0a0c6a973a5911241df7e1e50f91a502fa2d73da8f15a701dddb365de2ab29e01ca557c4fb3475e6913d48f5fbcbc7029c16b4364 + languageName: node + linkType: hard + "@react-native/babel-plugin-codegen@npm:0.75.4": version: 0.75.4 resolution: "@react-native/babel-plugin-codegen@npm:0.75.4" @@ -5379,6 +5198,16 @@ __metadata: languageName: node linkType: hard +"@react-native/babel-plugin-codegen@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/babel-plugin-codegen@npm:0.77.0-rc.6" + dependencies: + "@babel/traverse": "npm:^7.25.3" + "@react-native/codegen": "npm:0.77.0-rc.6" + checksum: 10/e74bc905e969e6bbedcc22685470ae88a3dc9f86699faab388f01631c235564396fe71738170afae7ae39fcc7a41e0dd8e83631bc7e9f6d08ed6a487062f307b + languageName: node + linkType: hard + "@react-native/babel-preset@npm:0.75.4": version: 0.75.4 resolution: "@react-native/babel-preset@npm:0.75.4" @@ -5599,6 +5428,61 @@ __metadata: languageName: node linkType: hard +"@react-native/babel-preset@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/babel-preset@npm:0.77.0-rc.6" + dependencies: + "@babel/core": "npm:^7.25.2" + "@babel/plugin-proposal-export-default-from": "npm:^7.24.7" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + "@babel/plugin-syntax-export-default-from": "npm:^7.24.7" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/plugin-transform-arrow-functions": "npm:^7.24.7" + "@babel/plugin-transform-async-generator-functions": "npm:^7.25.4" + "@babel/plugin-transform-async-to-generator": "npm:^7.24.7" + "@babel/plugin-transform-block-scoping": "npm:^7.25.0" + "@babel/plugin-transform-class-properties": "npm:^7.25.4" + "@babel/plugin-transform-classes": "npm:^7.25.4" + "@babel/plugin-transform-computed-properties": "npm:^7.24.7" + "@babel/plugin-transform-destructuring": "npm:^7.24.8" + "@babel/plugin-transform-flow-strip-types": "npm:^7.25.2" + "@babel/plugin-transform-for-of": "npm:^7.24.7" + "@babel/plugin-transform-function-name": "npm:^7.25.1" + "@babel/plugin-transform-literals": "npm:^7.25.2" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.7" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.8" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.7" + "@babel/plugin-transform-numeric-separator": "npm:^7.24.7" + "@babel/plugin-transform-object-rest-spread": "npm:^7.24.7" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.7" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.8" + "@babel/plugin-transform-parameters": "npm:^7.24.7" + "@babel/plugin-transform-private-methods": "npm:^7.24.7" + "@babel/plugin-transform-private-property-in-object": "npm:^7.24.7" + "@babel/plugin-transform-react-display-name": "npm:^7.24.7" + "@babel/plugin-transform-react-jsx": "npm:^7.25.2" + "@babel/plugin-transform-react-jsx-self": "npm:^7.24.7" + "@babel/plugin-transform-react-jsx-source": "npm:^7.24.7" + "@babel/plugin-transform-regenerator": "npm:^7.24.7" + "@babel/plugin-transform-runtime": "npm:^7.24.7" + "@babel/plugin-transform-shorthand-properties": "npm:^7.24.7" + "@babel/plugin-transform-spread": "npm:^7.24.7" + "@babel/plugin-transform-sticky-regex": "npm:^7.24.7" + "@babel/plugin-transform-typescript": "npm:^7.25.2" + "@babel/plugin-transform-unicode-regex": "npm:^7.24.7" + "@babel/template": "npm:^7.25.0" + "@react-native/babel-plugin-codegen": "npm:0.77.0-rc.6" + babel-plugin-syntax-hermes-parser: "npm:0.25.1" + babel-plugin-transform-flow-enums: "npm:^0.0.2" + react-refresh: "npm:^0.14.0" + peerDependencies: + "@babel/core": "*" + checksum: 10/1041890008eb873f52bc01fd3c93c71dd4a77e72387bef84dd932c92482c284ddb8484907a0f4bd4fab4d8e8043967a6de9159d646220ec4e55f5db59b8ecf8c + languageName: node + linkType: hard + "@react-native/codegen@npm:0.75.4": version: 0.75.4 resolution: "@react-native/codegen@npm:0.75.4" @@ -5671,6 +5555,23 @@ __metadata: languageName: node linkType: hard +"@react-native/codegen@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/codegen@npm:0.77.0-rc.6" + dependencies: + "@babel/parser": "npm:^7.25.3" + glob: "npm:^7.1.1" + hermes-parser: "npm:0.25.1" + invariant: "npm:^2.2.4" + jscodeshift: "npm:^17.0.0" + nullthrows: "npm:^1.1.1" + yargs: "npm:^17.6.2" + peerDependencies: + "@babel/preset-env": ^7.1.6 + checksum: 10/b459a3fbde9a0bec0c815cf786a52fad9bf4f7f84057007022aeb787e2f6e250b522b3f65de5dd09561b9e9ee72f4a7c1c77592a3356eb020a6fe9984c5b9e54 + languageName: node + linkType: hard + "@react-native/community-cli-plugin@npm:0.75.4": version: 0.75.4 resolution: "@react-native/community-cli-plugin@npm:0.75.4" @@ -5737,6 +5638,29 @@ __metadata: languageName: node linkType: hard +"@react-native/community-cli-plugin@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/community-cli-plugin@npm:0.77.0-rc.6" + dependencies: + "@react-native/dev-middleware": "npm:0.77.0-rc.6" + "@react-native/metro-babel-transformer": "npm:0.77.0-rc.6" + chalk: "npm:^4.0.0" + debug: "npm:^2.2.0" + invariant: "npm:^2.2.4" + metro: "npm:^0.81.0" + metro-config: "npm:^0.81.0" + metro-core: "npm:^0.81.0" + readline: "npm:^1.3.0" + semver: "npm:^7.1.3" + peerDependencies: + "@react-native-community/cli-server-api": "*" + peerDependenciesMeta: + "@react-native-community/cli-server-api": + optional: true + checksum: 10/4c105c83a7e9943f86d45beabd94222fc19378430f2348a00f86b1ff7414ab5984ecca46a97145a43dccbb4ed1ee413522011b2611a6542f60fcaa3a60867263 + languageName: node + linkType: hard + "@react-native/debugger-frontend@npm:0.75.4": version: 0.75.4 resolution: "@react-native/debugger-frontend@npm:0.75.4" @@ -5765,6 +5689,13 @@ __metadata: languageName: node linkType: hard +"@react-native/debugger-frontend@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/debugger-frontend@npm:0.77.0-rc.6" + checksum: 10/54d5fee02cccd454dda016e116a03cecd888c86be1bed6affc1733f30e7559b3c068c0cc23cdc02747df125d0dfd7c58e67ee6323ea21b490aae2bf3850fcbc2 + languageName: node + linkType: hard + "@react-native/dev-middleware@npm:0.75.4": version: 0.75.4 resolution: "@react-native/dev-middleware@npm:0.75.4" @@ -5842,6 +5773,25 @@ __metadata: languageName: node linkType: hard +"@react-native/dev-middleware@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/dev-middleware@npm:0.77.0-rc.6" + dependencies: + "@isaacs/ttlcache": "npm:^1.4.1" + "@react-native/debugger-frontend": "npm:0.77.0-rc.6" + chrome-launcher: "npm:^0.15.2" + chromium-edge-launcher: "npm:^0.2.0" + connect: "npm:^3.6.5" + debug: "npm:^2.2.0" + nullthrows: "npm:^1.1.1" + open: "npm:^7.0.3" + selfsigned: "npm:^2.4.1" + serve-static: "npm:^1.16.2" + ws: "npm:^6.2.3" + checksum: 10/a7ba4ddc700622b75e235750672edd41ddaa3e3d5d9014b058ed7ba231a190b755632728ce0fba079749382d6748bf34304ef76d3e1f706e5c81506ca116f1aa + languageName: node + linkType: hard + "@react-native/eslint-config@npm:0.75.4": version: 0.75.4 resolution: "@react-native/eslint-config@npm:0.75.4" @@ -5912,6 +5862,29 @@ __metadata: languageName: node linkType: hard +"@react-native/eslint-config@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/eslint-config@npm:0.77.0-rc.6" + dependencies: + "@babel/core": "npm:^7.25.2" + "@babel/eslint-parser": "npm:^7.25.1" + "@react-native/eslint-plugin": "npm:0.77.0-rc.6" + "@typescript-eslint/eslint-plugin": "npm:^7.1.1" + "@typescript-eslint/parser": "npm:^7.1.1" + eslint-config-prettier: "npm:^8.5.0" + eslint-plugin-eslint-comments: "npm:^3.2.0" + eslint-plugin-ft-flow: "npm:^2.0.1" + eslint-plugin-jest: "npm:^27.9.0" + eslint-plugin-react: "npm:^7.30.1" + eslint-plugin-react-hooks: "npm:^4.6.0" + eslint-plugin-react-native: "npm:^4.0.0" + peerDependencies: + eslint: ">=8" + prettier: ">=2" + checksum: 10/c52f21c32d75f1412b623dbaddd090d9116751ea530d3b197ab79c2c4f24c3df11db2ff1073348d9a204ccc5b0d1c6b0a5f65a45a1af8d21b8b01c041bdba216 + languageName: node + linkType: hard + "@react-native/eslint-plugin@npm:0.75.4": version: 0.75.4 resolution: "@react-native/eslint-plugin@npm:0.75.4" @@ -5933,6 +5906,13 @@ __metadata: languageName: node linkType: hard +"@react-native/eslint-plugin@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/eslint-plugin@npm:0.77.0-rc.6" + checksum: 10/866a8581a7081190365b243112d66d58fb026067e3ae48706f3c754198dea68726aafd972d824eba44ba0ebf6bff0df63bc449db7c63556c1ac2574ae4ebe3a9 + languageName: node + linkType: hard + "@react-native/gradle-plugin@npm:0.75.4": version: 0.75.4 resolution: "@react-native/gradle-plugin@npm:0.75.4" @@ -5954,6 +5934,13 @@ __metadata: languageName: node linkType: hard +"@react-native/gradle-plugin@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/gradle-plugin@npm:0.77.0-rc.6" + checksum: 10/455f693985b352aa2699934c56dde7661dbbb5f7248982fc529b266b18cea31862f382b2911e4b1e932e7d1081e7fa9e104ec5e4146e2e6d03aa37670f8ccce2 + languageName: node + linkType: hard + "@react-native/js-polyfills@npm:0.75.4": version: 0.75.4 resolution: "@react-native/js-polyfills@npm:0.75.4" @@ -5982,6 +5969,13 @@ __metadata: languageName: node linkType: hard +"@react-native/js-polyfills@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/js-polyfills@npm:0.77.0-rc.6" + checksum: 10/e761cf34692db39f7e2f578c20b8d8ce2cb1995ce5174e8deafa43bfcba5efa6239221358abc918d94b9371b806488806fb95c658aa8c0c72bb4a8798dca5982 + languageName: node + linkType: hard + "@react-native/metro-babel-transformer@npm:0.75.4": version: 0.75.4 resolution: "@react-native/metro-babel-transformer@npm:0.75.4" @@ -6034,7 +6028,21 @@ __metadata: nullthrows: "npm:^1.1.1" peerDependencies: "@babel/core": "*" - checksum: 10/52f445b9e99515750ffbbdc182ed2aff07ef69a380606c960a122179afeb55014c5743451a2b941939d4044a4a575fd3d316fa434c827dea57625a4c6f110c18 + checksum: 10/52f445b9e99515750ffbbdc182ed2aff07ef69a380606c960a122179afeb55014c5743451a2b941939d4044a4a575fd3d316fa434c827dea57625a4c6f110c18 + languageName: node + linkType: hard + +"@react-native/metro-babel-transformer@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/metro-babel-transformer@npm:0.77.0-rc.6" + dependencies: + "@babel/core": "npm:^7.25.2" + "@react-native/babel-preset": "npm:0.77.0-rc.6" + hermes-parser: "npm:0.25.1" + nullthrows: "npm:^1.1.1" + peerDependencies: + "@babel/core": "*" + checksum: 10/a1270f3244f2c2745795b9bc9c9ae0dce9680164b779c82203946d659b1a10dd9b431de889955d8d6a66af9600d6728bffc35799e50650b22e1b9f33429ed9a9 languageName: node linkType: hard @@ -6062,15 +6070,15 @@ __metadata: languageName: node linkType: hard -"@react-native/metro-config@npm:0.76.5": - version: 0.76.5 - resolution: "@react-native/metro-config@npm:0.76.5" +"@react-native/metro-config@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/metro-config@npm:0.77.0-rc.6" dependencies: - "@react-native/js-polyfills": "npm:0.76.5" - "@react-native/metro-babel-transformer": "npm:0.76.5" + "@react-native/js-polyfills": "npm:0.77.0-rc.6" + "@react-native/metro-babel-transformer": "npm:0.77.0-rc.6" metro-config: "npm:^0.81.0" metro-runtime: "npm:^0.81.0" - checksum: 10/afdd47fe403d30bf29961e4e3271f16cbd2170150d6c516aeb6018846f6d1bd71e1eca0a7548c90b9ce847c7a7a256971b96b172edc4840a8cb5dd1226bb6d43 + checksum: 10/09ce475188e0912b1cc13fdeb054c87a99d1b3d4d0b7984852e30a6b8ea19e7aeb83c2398b202f1940d8baf100b2c0cbab2791753e3c717a8cd310736f5e0bef languageName: node linkType: hard @@ -6109,6 +6117,13 @@ __metadata: languageName: node linkType: hard +"@react-native/normalize-colors@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/normalize-colors@npm:0.77.0-rc.6" + checksum: 10/664543e70897c87a22800d1105cf24034026f23863b2c5752c113f0191401e039e672a50a0db18267e71b4bdf5cfd6a1ea4890b3f765ca2c9ab5bb208d119e56 + languageName: node + linkType: hard + "@react-native/normalize-colors@npm:^0.74.1": version: 0.74.87 resolution: "@react-native/normalize-colors@npm:0.74.87" @@ -6130,10 +6145,10 @@ __metadata: languageName: node linkType: hard -"@react-native/typescript-config@npm:0.76.5": - version: 0.76.5 - resolution: "@react-native/typescript-config@npm:0.76.5" - checksum: 10/d4ce87d4773025d53315405685e07986db125615319c5c847b7debaf1ee1870a094d7be1892755fb482ee2fb278f6074148ece1d091448291a43580561626ddc +"@react-native/typescript-config@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/typescript-config@npm:0.77.0-rc.6" + checksum: 10/e444ffbbb885cf757eaedecc69c3ad3bdab4cc9b6af793a0d61079301eefaaf6a4e13c979a724aae0ba3ba89c1216e04aacede57b497c60c6f4e8b9c544fe173 languageName: node linkType: hard @@ -6171,6 +6186,23 @@ __metadata: languageName: node linkType: hard +"@react-native/virtualized-lists@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "@react-native/virtualized-lists@npm:0.77.0-rc.6" + dependencies: + invariant: "npm:^2.2.4" + nullthrows: "npm:^1.1.1" + peerDependencies: + "@types/react": ^18.2.6 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10/92510ce54f00268d6d7c709244b06ac0c06d3ff96cb53098525845abcee4714947e77c1ae77e7669555676f30de74f7d9f4621a883ee8ac0a8e2521f94637684 + languageName: node + linkType: hard + "@react-navigation/bottom-tabs@npm:^7.0.0": version: 7.0.0 resolution: "@react-navigation/bottom-tabs@npm:7.0.0" @@ -6297,9 +6329,23 @@ __metadata: languageName: node linkType: hard -"@shopify/flash-list@npm:^1.7.1": - version: 1.7.1 - resolution: "@shopify/flash-list@npm:1.7.1" +"@shopify/flash-list@npm:1.7.2": + version: 1.7.2 + resolution: "@shopify/flash-list@npm:1.7.2" + dependencies: + recyclerlistview: "npm:4.2.1" + tslib: "npm:2.6.3" + peerDependencies: + "@babel/runtime": "*" + react: "*" + react-native: "*" + checksum: 10/f8b48a85b85be3a46221b9fa1417ac702d55533e5bca9f68409f2c218c418a02873f3e59c2237a398cfe483658771e67f319fab368934a7d3abdb141a0a71a7d + languageName: node + linkType: hard + +"@shopify/flash-list@patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch": + version: 1.7.2 + resolution: "@shopify/flash-list@patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch::version=1.7.2&hash=9af1c4" dependencies: recyclerlistview: "npm:4.2.1" tslib: "npm:2.6.3" @@ -6307,7 +6353,7 @@ __metadata: "@babel/runtime": "*" react: "*" react-native: "*" - checksum: 10/0144b523ff75500e6c310dac0739c0779f4ce63acb70cf4e9f8d30a653c6faed43e228158ef16c2f38c43b76425b9f55de411bd865b8deee72e9b549164f1c12 + checksum: 10/651110d39b4f380b19c79eb935d0b811e199dfd0dba342afa0536fe9b5d2329c921b5d3731211386d008a2cad622e903a99ecba298f4789ec388aeda0085421b languageName: node linkType: hard @@ -6498,7 +6544,7 @@ __metadata: languageName: node linkType: hard -"@types/babel__core@npm:^7.0.0, @types/babel__core@npm:^7.1.14, @types/babel__core@npm:^7.20.0": +"@types/babel__core@npm:^7.1.14, @types/babel__core@npm:^7.20.0": version: 7.20.5 resolution: "@types/babel__core@npm:7.20.5" dependencies: @@ -6588,7 +6634,7 @@ __metadata: languageName: node linkType: hard -"@types/graceful-fs@npm:^4.1.2, @types/graceful-fs@npm:^4.1.3": +"@types/graceful-fs@npm:^4.1.3": version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" dependencies: @@ -6636,17 +6682,7 @@ __metadata: languageName: node linkType: hard -"@types/jest@npm:^29.0.0, @types/jest@npm:^29.2.1, @types/jest@npm:^29.5.11": - version: 29.5.13 - resolution: "@types/jest@npm:29.5.13" - dependencies: - expect: "npm:^29.0.0" - pretty-format: "npm:^29.0.0" - checksum: 10/7d6e3e4ef4b1cab0f61270d55764709512fdfbcb1bd47c0ef44117d48490529c1f264dacf3440b9188363e99e290b80b79c529eadc3af2184116a90f6856b192 - languageName: node - linkType: hard - -"@types/jest@npm:^29.5.5": +"@types/jest@npm:^29.5.13, @types/jest@npm:^29.5.5": version: 29.5.14 resolution: "@types/jest@npm:29.5.14" dependencies: @@ -6843,15 +6879,6 @@ __metadata: languageName: node linkType: hard -"@types/yargs@npm:^16.0.0": - version: 16.0.9 - resolution: "@types/yargs@npm:16.0.9" - dependencies: - "@types/yargs-parser": "npm:*" - checksum: 10/8f31cbfcd5c3ac67c27e26026d8b9af0c37770fb2421b661939ba06d136f5a4fa61528a5d0f495d5802fbf1d9244b499e664d8d884e3eb3c36d556fb7c278f18 - languageName: node - linkType: hard - "@types/yargs@npm:^17.0.8": version: 17.0.33 resolution: "@types/yargs@npm:17.0.33" @@ -7773,6 +7800,15 @@ __metadata: languageName: node linkType: hard +"ast-types@npm:^0.16.1": + version: 0.16.1 + resolution: "ast-types@npm:0.16.1" + dependencies: + tslib: "npm:^2.0.1" + checksum: 10/f569b475eb1c8cb93888cb6e7b7e36dc43fa19a77e4eb132cbff6e3eb1598ca60f850db6e60b070e5a0ee8c1559fca921dac0916e576f2f104e198793b0bdd8d + languageName: node + linkType: hard + "astral-regex@npm:^1.0.0": version: 1.0.0 resolution: "astral-regex@npm:1.0.0" @@ -7874,24 +7910,6 @@ __metadata: languageName: node linkType: hard -"babel-jest@npm:^27.5.1": - version: 27.5.1 - resolution: "babel-jest@npm:27.5.1" - dependencies: - "@jest/transform": "npm:^27.5.1" - "@jest/types": "npm:^27.5.1" - "@types/babel__core": "npm:^7.1.14" - babel-plugin-istanbul: "npm:^6.1.1" - babel-preset-jest: "npm:^27.5.1" - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - slash: "npm:^3.0.0" - peerDependencies: - "@babel/core": ^7.8.0 - checksum: 10/d032823796072b3c269edaa623dd7fe6ecf2f72aff5b003066e7b16ad0ec4068ed04f3f569237183161d28b638936121975014bcb26ae539e669f2bdad5babe6 - languageName: node - linkType: hard - "babel-jest@npm:^29.6.3, babel-jest@npm:^29.7.0": version: 29.7.0 resolution: "babel-jest@npm:29.7.0" @@ -7922,18 +7940,6 @@ __metadata: languageName: node linkType: hard -"babel-plugin-jest-hoist@npm:^27.5.1": - version: 27.5.1 - resolution: "babel-plugin-jest-hoist@npm:27.5.1" - dependencies: - "@babel/template": "npm:^7.3.3" - "@babel/types": "npm:^7.3.3" - "@types/babel__core": "npm:^7.0.0" - "@types/babel__traverse": "npm:^7.0.6" - checksum: 10/9e334903433fd92ef9a65ea5c61f7d786238704b1327d9ca227ef40ef7142fba2bb8219bcb9b2d56eaf36ecfbcc50aa1e177db64508438569e98cfd67cce5043 - languageName: node - linkType: hard - "babel-plugin-jest-hoist@npm:^29.6.3": version: 29.6.3 resolution: "babel-plugin-jest-hoist@npm:29.6.3" @@ -8033,7 +8039,7 @@ __metadata: "@babel/plugin-transform-unicode-regex": "npm:^7.24.7" "@babel/traverse": "npm:^7.20.0" "@babel/types": "npm:^7.20.0" - "@react-native/eslint-config": "npm:0.76.5" + "@react-native/eslint-config": "npm:0.77.0-rc.6" "@types/node": "npm:^18.15.11" "@typescript-eslint/eslint-plugin": "npm:^7.0.2" "@typescript-eslint/parser": "npm:^7.0.2" @@ -8046,6 +8052,15 @@ __metadata: languageName: unknown linkType: soft +"babel-plugin-syntax-hermes-parser@npm:0.25.1, babel-plugin-syntax-hermes-parser@npm:^0.25.1": + version: 0.25.1 + resolution: "babel-plugin-syntax-hermes-parser@npm:0.25.1" + dependencies: + hermes-parser: "npm:0.25.1" + checksum: 10/dc80fafde1aed8e60cf86ecd2e9920e7f35ffe02b33bd4e772daaa786167bcf508aac3fc1aea425ff4c7a0be94d82528f3fe8619b7f41dac853264272d640c04 + languageName: node + linkType: hard + "babel-plugin-syntax-hermes-parser@npm:^0.23.1": version: 0.23.1 resolution: "babel-plugin-syntax-hermes-parser@npm:0.23.1" @@ -8055,15 +8070,6 @@ __metadata: languageName: node linkType: hard -"babel-plugin-syntax-hermes-parser@npm:^0.25.1": - version: 0.25.1 - resolution: "babel-plugin-syntax-hermes-parser@npm:0.25.1" - dependencies: - hermes-parser: "npm:0.25.1" - checksum: 10/dc80fafde1aed8e60cf86ecd2e9920e7f35ffe02b33bd4e772daaa786167bcf508aac3fc1aea425ff4c7a0be94d82528f3fe8619b7f41dac853264272d640c04 - languageName: node - linkType: hard - "babel-plugin-transform-flow-enums@npm:^0.0.2": version: 0.0.2 resolution: "babel-plugin-transform-flow-enums@npm:0.0.2" @@ -8138,18 +8144,6 @@ __metadata: languageName: node linkType: hard -"babel-preset-jest@npm:^27.5.1": - version: 27.5.1 - resolution: "babel-preset-jest@npm:27.5.1" - dependencies: - babel-plugin-jest-hoist: "npm:^27.5.1" - babel-preset-current-node-syntax: "npm:^1.0.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10/251bcea11c18fd9672fec104eadb45b43f117ceeb326fa7345ced778d4c1feab29343cd7a87a1dcfae4997d6c851a8b386d7f7213792da6e23b74f4443a8976d - languageName: node - linkType: hard - "babel-preset-jest@npm:^29.6.3": version: 29.6.3 resolution: "babel-preset-jest@npm:29.6.3" @@ -9128,14 +9122,14 @@ __metadata: version: 0.0.0-use.local resolution: "common-app@workspace:apps/common-app" dependencies: - "@react-native-async-storage/async-storage": "npm:^1.24.0" - "@react-native-community/slider": "npm:^4.5.5" - "@react-native-masked-view/masked-view": "npm:^0.3.1" + "@react-native-async-storage/async-storage": "npm:2.1.0" + "@react-native-community/slider": "npm:4.5.5" + "@react-native-masked-view/masked-view": "npm:0.3.2" "@react-navigation/bottom-tabs": "npm:^7.0.0" "@react-navigation/native": "npm:^7.0.0" "@react-navigation/native-stack": "npm:^7.0.0" "@react-navigation/stack": "npm:^7.0.0" - "@shopify/flash-list": "npm:^1.7.1" + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch" "@tsconfig/react-native": "npm:^3.0.0" "@types/d3-shape": "npm:^3.1.1" d3-shape: "npm:^3.2.0" @@ -9144,13 +9138,13 @@ __metadata: patch-package: "npm:^8.0.0" prettier: "npm:^3.3.3" react: "npm:18.3.1" - react-native: "npm:0.76.5" - react-native-gesture-handler: "npm:2.20.2" - react-native-pager-view: "npm:^6.4.1" + react-native: "npm:0.77.0-rc.6" + react-native-gesture-handler: "npm:2.22.0" + react-native-pager-view: "npm:6.6.1" react-native-reanimated: "workspace:*" - react-native-safe-area-context: "npm:^4.13.1" - react-native-screens: "npm:^4.0.0" - react-native-svg: "npm:^15.8.0" + react-native-safe-area-context: "npm:5.1.0" + react-native-screens: "npm:4.5.0" + react-native-svg: "npm:15.11.1" react-strict-dom: "npm:0.0.27" typescript: "npm:~5.3.0" peerDependencies: @@ -9277,13 +9271,6 @@ __metadata: languageName: node linkType: hard -"convert-source-map@npm:^1.4.0": - version: 1.9.0 - resolution: "convert-source-map@npm:1.9.0" - checksum: 10/dc55a1f28ddd0e9485ef13565f8f756b342f9a46c4ae18b843fe3c30c675d058d6a4823eff86d472f187b176f0adf51ea7b69ea38be34be4a63cbbf91b0593c8 - languageName: node - linkType: hard - "convert-source-map@npm:^2.0.0": version: 2.0.0 resolution: "convert-source-map@npm:2.0.0" @@ -11023,7 +11010,7 @@ __metadata: version: 0.0.0-use.local resolution: "eslint-plugin-reanimated@workspace:packages/eslint-plugin-reanimated" dependencies: - "@types/jest": "npm:^29.5.11" + "@types/jest": "npm:^29.5.13" "@types/node": "npm:^20.11.5" "@typescript-eslint/parser": "npm:^6.19.1" "@typescript-eslint/rule-tester": "npm:^6.19.1" @@ -11696,35 +11683,35 @@ __metadata: "@babel/core": "npm:^7.25.2" "@babel/preset-env": "npm:^7.25.3" "@babel/runtime": "npm:^7.25.0" - "@react-native-async-storage/async-storage": "npm:^1.24.0" - "@react-native-community/cli": "npm:15.0.0" - "@react-native-community/cli-platform-android": "npm:15.0.0" - "@react-native-community/cli-platform-ios": "npm:15.0.0" - "@react-native-community/slider": "npm:^4.5.5" - "@react-native-masked-view/masked-view": "npm:^0.3.1" - "@react-native/babel-preset": "npm:0.76.5" - "@react-native/eslint-config": "npm:0.76.5" - "@react-native/metro-config": "npm:0.76.5" - "@react-native/typescript-config": "npm:0.76.5" + "@react-native-async-storage/async-storage": "npm:2.1.0" + "@react-native-community/cli": "npm:15.0.1" + "@react-native-community/cli-platform-android": "npm:15.0.1" + "@react-native-community/cli-platform-ios": "npm:15.0.1" + "@react-native-community/slider": "npm:4.5.5" + "@react-native-masked-view/masked-view": "npm:0.3.2" + "@react-native/babel-preset": "npm:0.77.0-rc.6" + "@react-native/eslint-config": "npm:0.77.0-rc.6" + "@react-native/metro-config": "npm:0.77.0-rc.6" + "@react-native/typescript-config": "npm:0.77.0-rc.6" "@react-navigation/native": "npm:^7.0.0" "@react-navigation/native-stack": "npm:^7.0.0" - "@shopify/flash-list": "npm:^1.7.1" + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch" + "@types/jest": "npm:^29.5.13" "@types/react": "npm:^18.2.6" "@types/react-test-renderer": "npm:^18.0.0" - babel-jest: "npm:^29.6.3" common-app: "workspace:*" eslint: "npm:^8.57.0" jest: "npm:^29.6.3" patch-package: "npm:^8.0.0" prettier: "npm:^3.3.3" react: "npm:18.3.1" - react-native: "npm:0.76.5" - react-native-gesture-handler: "npm:2.20.2" - react-native-pager-view: "npm:^6.4.1" + react-native: "npm:0.77.0-rc.6" + react-native-gesture-handler: "npm:2.22.0" + react-native-pager-view: "npm:6.6.1" react-native-reanimated: "workspace:*" - react-native-safe-area-context: "npm:^4.13.1" - react-native-screens: "npm:^4.0.0" - react-native-svg: "npm:^15.8.0" + react-native-safe-area-context: "npm:5.1.0" + react-native-screens: "npm:4.5.0" + react-native-svg: "npm:15.11.1" react-test-renderer: "npm:18.3.1" typescript: "npm:~5.3.0" languageName: unknown @@ -13631,7 +13618,7 @@ __metadata: languageName: node linkType: hard -"is-typedarray@npm:^1.0.0, is-typedarray@npm:~1.0.0": +"is-typedarray@npm:~1.0.0": version: 1.0.0 resolution: "is-typedarray@npm:1.0.0" checksum: 10/4b433bfb0f9026f079f4eb3fbaa4ed2de17c9995c3a0b5c800bec40799b4b2a8b4e051b1ada77749deb9ded4ae52fe2096973f3a93ff83df1a5a7184a669478c @@ -14031,30 +14018,6 @@ __metadata: languageName: node linkType: hard -"jest-haste-map@npm:^27.5.1": - version: 27.5.1 - resolution: "jest-haste-map@npm:27.5.1" - dependencies: - "@jest/types": "npm:^27.5.1" - "@types/graceful-fs": "npm:^4.1.2" - "@types/node": "npm:*" - anymatch: "npm:^3.0.3" - fb-watchman: "npm:^2.0.0" - fsevents: "npm:^2.3.2" - graceful-fs: "npm:^4.2.9" - jest-regex-util: "npm:^27.5.1" - jest-serializer: "npm:^27.5.1" - jest-util: "npm:^27.5.1" - jest-worker: "npm:^27.5.1" - micromatch: "npm:^4.0.4" - walker: "npm:^1.0.7" - dependenciesMeta: - fsevents: - optional: true - checksum: 10/cbf42e4a3d2b6fc8ad64d732c1bb8a230fe25ad3df7f9f93e8af2950691ef9a5241a9d48c5c88e365744a7467b8cb00ab21c01baee4ee0c2b62acc657782545f - languageName: node - linkType: hard - "jest-haste-map@npm:^29.7.0": version: 29.7.0 resolution: "jest-haste-map@npm:29.7.0" @@ -14140,13 +14103,6 @@ __metadata: languageName: node linkType: hard -"jest-regex-util@npm:^27.5.1": - version: 27.5.1 - resolution: "jest-regex-util@npm:27.5.1" - checksum: 10/d45ca7a9543616a34f7f3079337439cf07566e677a096472baa2810e274b9808b76767c97b0a4029b8a5b82b9d256dee28ef9ad4138b2b9e5933f6fac106c418 - languageName: node - linkType: hard - "jest-regex-util@npm:^29.6.3": version: 29.6.3 resolution: "jest-regex-util@npm:29.6.3" @@ -14240,16 +14196,6 @@ __metadata: languageName: node linkType: hard -"jest-serializer@npm:^27.5.1": - version: 27.5.1 - resolution: "jest-serializer@npm:27.5.1" - dependencies: - "@types/node": "npm:*" - graceful-fs: "npm:^4.2.9" - checksum: 10/803e03a552278610edc6753c0dd9fa5bb5cd3ca47414a7b2918106efb62b79fd5e9ae785d0a21f12a299fa599fea8acc1fa6dd41283328cee43962cf7df9bb44 - languageName: node - linkType: hard - "jest-snapshot@npm:^29.7.0": version: 29.7.0 resolution: "jest-snapshot@npm:29.7.0" @@ -14278,20 +14224,6 @@ __metadata: languageName: node linkType: hard -"jest-util@npm:^27.5.1": - version: 27.5.1 - resolution: "jest-util@npm:27.5.1" - dependencies: - "@jest/types": "npm:^27.5.1" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - graceful-fs: "npm:^4.2.9" - picomatch: "npm:^2.2.3" - checksum: 10/ecc7da41769558e57dbde544141ffceb536ee53b663de1e002d4b86784cea500a10f9a7f02e8b804e517aa0e34d3145118734c7e8b5071f9f18a153ede5b062d - languageName: node - linkType: hard - "jest-util@npm:^29.0.0, jest-util@npm:^29.7.0": version: 29.7.0 resolution: "jest-util@npm:29.7.0" @@ -14336,17 +14268,6 @@ __metadata: languageName: node linkType: hard -"jest-worker@npm:^27.5.1": - version: 27.5.1 - resolution: "jest-worker@npm:27.5.1" - dependencies: - "@types/node": "npm:*" - merge-stream: "npm:^2.0.0" - supports-color: "npm:^8.0.0" - checksum: 10/06c6e2a84591d9ede704d5022fc13791e8876e83397c89d481b0063332abbb64c0f01ef4ca7de520b35c7a1058556078d6bdc3631376f4e9ffb42316c1a8488e - languageName: node - linkType: hard - "jest-worker@npm:^29.6.3, jest-worker@npm:^29.7.0": version: 29.7.0 resolution: "jest-worker@npm:29.7.0" @@ -14501,6 +14422,39 @@ __metadata: languageName: node linkType: hard +"jscodeshift@npm:^17.0.0": + version: 17.1.1 + resolution: "jscodeshift@npm:17.1.1" + dependencies: + "@babel/core": "npm:^7.24.7" + "@babel/parser": "npm:^7.24.7" + "@babel/plugin-transform-class-properties": "npm:^7.24.7" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.7" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.7" + "@babel/plugin-transform-private-methods": "npm:^7.24.7" + "@babel/preset-flow": "npm:^7.24.7" + "@babel/preset-typescript": "npm:^7.24.7" + "@babel/register": "npm:^7.24.6" + flow-parser: "npm:0.*" + graceful-fs: "npm:^4.2.4" + micromatch: "npm:^4.0.7" + neo-async: "npm:^2.5.0" + picocolors: "npm:^1.0.1" + recast: "npm:^0.23.9" + tmp: "npm:^0.2.3" + write-file-atomic: "npm:^5.0.1" + peerDependencies: + "@babel/preset-env": ^7.1.6 + peerDependenciesMeta: + "@babel/preset-env": + optional: true + bin: + jscodeshift: bin/jscodeshift.js + checksum: 10/89a92203e2653c68ae2f12332332ca014aeec8c6cd5ab6947ba53334abd97005b94c0c670c47f2878880d01b89775490ca8efe58494d71137c1f6abae630a53d + languageName: node + linkType: hard + "jsdoc-type-pratt-parser@npm:~4.1.0": version: 4.1.0 resolution: "jsdoc-type-pratt-parser@npm:4.1.0" @@ -15124,9 +15078,9 @@ __metadata: "@babel/core": "npm:^7.20.0" "@babel/preset-env": "npm:^7.20.0" "@babel/runtime": "npm:^7.20.0" - "@react-native-async-storage/async-storage": "npm:^1.24.0" - "@react-native-community/slider": "npm:^4.5.5" - "@react-native-masked-view/masked-view": "npm:^0.3.1" + "@react-native-async-storage/async-storage": "npm:2.1.0" + "@react-native-community/slider": "npm:4.5.5" + "@react-native-masked-view/masked-view": "npm:0.3.2" "@react-native-picker/picker": "npm:^2.9.0" "@react-native/babel-preset": "npm:0.75.4" "@react-native/eslint-config": "npm:0.75.4" @@ -15135,7 +15089,7 @@ __metadata: "@react-navigation/native": "npm:^7.0.0" "@react-navigation/native-stack": "npm:^7.0.0" "@react-navigation/stack": "npm:^7.0.0" - "@shopify/flash-list": "npm:^1.7.1" + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch" "@types/react": "npm:^18.2.6" "@types/react-test-renderer": "npm:^18.0.0" babel-jest: "npm:^29.6.3" @@ -15145,13 +15099,13 @@ __metadata: prettier: "npm:^3.3.3" react: "npm:18.3.1" react-native: "npm:0.75.4" - react-native-gesture-handler: "npm:2.20.2" + react-native-gesture-handler: "npm:2.22.0" react-native-macos: "npm:^0.75.13" - react-native-pager-view: "npm:^6.4.1" + react-native-pager-view: "npm:6.6.1" react-native-reanimated: "workspace:*" - react-native-safe-area-context: "npm:^4.13.1" - react-native-screens: "npm:^4.0.0" - react-native-svg: "npm:^15.8.0" + react-native-safe-area-context: "npm:5.1.0" + react-native-screens: "npm:4.5.0" + react-native-svg: "npm:15.11.1" react-test-renderer: "npm:18.2.0" typescript: "npm:~5.3.0" languageName: unknown @@ -16134,7 +16088,7 @@ __metadata: languageName: node linkType: hard -"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.8, micromatch@npm:~4.0.8": +"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.7, micromatch@npm:^4.0.8, micromatch@npm:~4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" dependencies: @@ -17185,36 +17139,35 @@ __metadata: "@babel/core": "npm:^7.25.2" "@babel/preset-env": "npm:^7.25.3" "@babel/runtime": "npm:^7.25.0" - "@react-native-async-storage/async-storage": "npm:^1.24.0" - "@react-native-community/cli": "npm:15.0.0" - "@react-native-community/cli-platform-android": "npm:15.0.0" - "@react-native-community/cli-platform-ios": "npm:15.0.0" - "@react-native-community/slider": "npm:^4.5.5" - "@react-native-masked-view/masked-view": "npm:^0.3.1" - "@react-native/babel-preset": "npm:0.76.5" - "@react-native/eslint-config": "npm:0.76.5" - "@react-native/metro-config": "npm:0.76.5" - "@react-native/typescript-config": "npm:0.76.5" + "@react-native-async-storage/async-storage": "npm:2.1.0" + "@react-native-community/cli": "npm:15.0.1" + "@react-native-community/cli-platform-android": "npm:15.0.1" + "@react-native-community/cli-platform-ios": "npm:15.0.1" + "@react-native-community/slider": "npm:4.5.5" + "@react-native-masked-view/masked-view": "npm:0.3.2" + "@react-native/babel-preset": "npm:0.77.0-rc.6" + "@react-native/eslint-config": "npm:0.77.0-rc.6" + "@react-native/metro-config": "npm:0.77.0-rc.6" + "@react-native/typescript-config": "npm:0.77.0-rc.6" "@react-navigation/native": "npm:^7.0.0" "@react-navigation/native-stack": "npm:^7.0.0" - "@shopify/flash-list": "npm:^1.7.1" - "@types/jest": "npm:^29.2.1" + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch" + "@types/jest": "npm:^29.5.13" "@types/react": "npm:^18.2.6" "@types/react-test-renderer": "npm:^18.0.0" - babel-jest: "npm:^29.6.3" common-app: "workspace:*" eslint: "npm:^8.57.0" jest: "npm:^29.6.3" patch-package: "npm:^8.0.0" prettier: "npm:^3.3.3" react: "npm:18.3.1" - react-native: "npm:0.76.5" - react-native-gesture-handler: "npm:2.20.2" - react-native-pager-view: "npm:^6.4.1" + react-native: "npm:0.77.0-rc.6" + react-native-gesture-handler: "npm:2.22.0" + react-native-pager-view: "npm:6.6.1" react-native-reanimated: "workspace:*" - react-native-safe-area-context: "npm:^4.13.1" - react-native-screens: "npm:^4.0.0" - react-native-svg: "npm:^15.8.0" + react-native-safe-area-context: "npm:5.1.0" + react-native-screens: "npm:4.5.0" + react-native-svg: "npm:15.11.1" react-test-renderer: "npm:18.3.1" typescript: "npm:~5.3.0" languageName: unknown @@ -17765,7 +17718,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:15.8.1, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": +"prop-types@npm:15.8.1, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -17949,6 +17902,16 @@ __metadata: languageName: node linkType: hard +"react-devtools-core@npm:^6.0.1": + version: 6.0.1 + resolution: "react-devtools-core@npm:6.0.1" + dependencies: + shell-quote: "npm:^1.6.1" + ws: "npm:^7" + checksum: 10/c6c834d0dda4af2521473298788b2d9cbc49814d203b183f440a94051df26c1cba0ff2fdf7bbdbadafc79da5ef4c3376d20bf8a15a4c31649bc0aca4da51c556 + languageName: node + linkType: hard + "react-dom@npm:18.3.1": version: 18.3.1 resolution: "react-dom@npm:18.3.1" @@ -18034,18 +17997,17 @@ __metadata: languageName: node linkType: hard -"react-native-gesture-handler@npm:2.20.2": - version: 2.20.2 - resolution: "react-native-gesture-handler@npm:2.20.2" +"react-native-gesture-handler@npm:2.22.0": + version: 2.22.0 + resolution: "react-native-gesture-handler@npm:2.22.0" dependencies: "@egjs/hammerjs": "npm:^2.0.17" hoist-non-react-statics: "npm:^3.3.0" invariant: "npm:^2.2.4" - prop-types: "npm:^15.7.2" peerDependencies: react: "*" react-native: "*" - checksum: 10/64ab125c539ca8c275f5d305f5e11d366e6098d9e24e3cab25cbfd46a8d618fc3925ea86219972ccc63364e578384bb0120a72562312e596894a04ee0518a363 + checksum: 10/8c428bf6c6b5bf0752085d5e5a1659af687ca34962c17019d289cac66573141ee76b0d0a681b5276688068ced69999304455c99d22da28aca8b1c6c606c1af92 languageName: node linkType: hard @@ -18105,13 +18067,13 @@ __metadata: languageName: node linkType: hard -"react-native-pager-view@npm:^6.4.1": - version: 6.4.1 - resolution: "react-native-pager-view@npm:6.4.1" +"react-native-pager-view@npm:6.6.1": + version: 6.6.1 + resolution: "react-native-pager-view@npm:6.6.1" peerDependencies: react: "*" react-native: "*" - checksum: 10/5f9cbce2d49d607fb9f241a37fee393024e13c77c8f1bea9a11c8de7e737dcdabe2590c95f282868ac119cf4d520fc83439a537d034563254ab34527351d80ae + checksum: 10/f56c3598a0e88fc66bdea806abacb0dd366bbd16a0c371a9a0c4dc21b2e53b020321bb896e1ae0f07c75caea16aaed292ae66c1a7546ade9c6d2a14aee8b9d63 languageName: node linkType: hard @@ -18146,10 +18108,10 @@ __metadata: "@babel/preset-env": "npm:^7.25.3" "@babel/preset-typescript": "npm:^7.16.7" "@babel/types": "npm:^7.20.0" - "@react-native/babel-preset": "npm:0.76.5" - "@react-native/eslint-config": "npm:0.76.5" - "@react-native/metro-config": "npm:0.76.5" - "@react-native/typescript-config": "npm:0.76.5" + "@react-native/babel-preset": "npm:0.77.0-rc.6" + "@react-native/eslint-config": "npm:0.77.0-rc.6" + "@react-native/metro-config": "npm:0.77.0-rc.6" + "@react-native/typescript-config": "npm:0.77.0-rc.6" "@testing-library/jest-native": "npm:^4.0.4" "@testing-library/react-hooks": "npm:^8.0.0" "@testing-library/react-native": "npm:^12.5.2" @@ -18158,7 +18120,7 @@ __metadata: "@types/babel__traverse": "npm:^7.14.2" "@types/convert-source-map": "npm:^2.0.0" "@types/invariant": "npm:^2.2.35" - "@types/jest": "npm:^29.0.0" + "@types/jest": "npm:^29.5.13" "@types/node": "npm:^18.0.0" "@types/react": "npm:^18.0.26" "@types/react-test-renderer": "npm:^17.0.0-0" @@ -18167,7 +18129,6 @@ __metadata: "@typescript-eslint/rule-tester": "npm:^6.21.0" axios: "npm:^1.7.4" babel-eslint: "npm:^10.1.0" - babel-jest: "npm:^27.5.1" babel-plugin-module-resolver: "npm:^5.0.0" clang-format: "npm:^1.6.0" code-tag: "npm:^1.1.0" @@ -18191,9 +18152,9 @@ __metadata: madge: "npm:^5.0.1" prettier: "npm:^3.3.3" react: "npm:18.3.1" - react-native: "npm:0.76.5" + react-native: "npm:0.77.0-rc.6" react-native-builder-bob: "npm:0.33.1" - react-native-gesture-handler: "npm:2.20.2" + react-native-gesture-handler: "npm:2.22.0" react-native-web: "npm:0.19.11" react-test-renderer: "npm:18.2.0" shelljs: "npm:^0.8.5" @@ -18206,32 +18167,32 @@ __metadata: languageName: unknown linkType: soft -"react-native-safe-area-context@npm:^4.13.1": - version: 4.13.1 - resolution: "react-native-safe-area-context@npm:4.13.1" +"react-native-safe-area-context@npm:5.1.0": + version: 5.1.0 + resolution: "react-native-safe-area-context@npm:5.1.0" peerDependencies: react: "*" react-native: "*" - checksum: 10/022098fb1922aeb30e9bfc935906cf38e815fbcabfb04a8ba9b973a25cbece2b5affefcad88dcfc2a1086785182c0168600ae61bd422a22f2268f019257a6494 + checksum: 10/7ff5fd17733b73d3c9fc5f7afa81c9c45389e5bc13ec2101135bdded9d8f435465582e0874de3f517bfb2c4f3fc7300dfdbc51176bc0ca84240184b2a888d74b languageName: node linkType: hard -"react-native-screens@npm:^4.0.0": - version: 4.0.0 - resolution: "react-native-screens@npm:4.0.0" +"react-native-screens@npm:4.5.0": + version: 4.5.0 + resolution: "react-native-screens@npm:4.5.0" dependencies: react-freeze: "npm:^1.0.0" warn-once: "npm:^0.1.0" peerDependencies: react: "*" react-native: "*" - checksum: 10/460867348d9293ea92efb9d9083654ee6ae0adcde15bed54dd57c0512d7fe3d2206bfdd8686eb770a397cb37e4e896ea40af2add8772f38d54fccd55765b1872 + checksum: 10/e9f56b52989aab7e58ed6a3930632d00c5ab94365e5a591cfc0187ffa742870b3eadb1d1832ff4cc6a7a3b8b77fce0a022ab781a72866539e830dc43b380ac60 languageName: node linkType: hard -"react-native-svg@npm:^15.8.0": - version: 15.8.0 - resolution: "react-native-svg@npm:15.8.0" +"react-native-svg@npm:15.11.1": + version: 15.11.1 + resolution: "react-native-svg@npm:15.11.1" dependencies: css-select: "npm:^5.1.0" css-tree: "npm:^1.1.3" @@ -18239,7 +18200,7 @@ __metadata: peerDependencies: react: "*" react-native: "*" - checksum: 10/9a60d1f33539c41ca50b2c21e6d8909e52a3bdf67b29b9231c7ffe72120fc8cb6d7fca45723bd9219b993202ade2343c97c7e4f53de7ee2446279ac91426b096 + checksum: 10/fcec888f1a472a5a6b6cb6438e6fe3c044be57f08ee8969c393c739edea5364f6d2187983e17b28fffc48b1f275f686b4bcca24359e7f4fa378299dea18fbc20 languageName: node linkType: hard @@ -18411,6 +18372,59 @@ __metadata: languageName: node linkType: hard +"react-native@npm:0.77.0-rc.6": + version: 0.77.0-rc.6 + resolution: "react-native@npm:0.77.0-rc.6" + dependencies: + "@jest/create-cache-key-function": "npm:^29.6.3" + "@react-native/assets-registry": "npm:0.77.0-rc.6" + "@react-native/codegen": "npm:0.77.0-rc.6" + "@react-native/community-cli-plugin": "npm:0.77.0-rc.6" + "@react-native/gradle-plugin": "npm:0.77.0-rc.6" + "@react-native/js-polyfills": "npm:0.77.0-rc.6" + "@react-native/normalize-colors": "npm:0.77.0-rc.6" + "@react-native/virtualized-lists": "npm:0.77.0-rc.6" + abort-controller: "npm:^3.0.0" + anser: "npm:^1.4.9" + ansi-regex: "npm:^5.0.0" + babel-jest: "npm:^29.7.0" + babel-plugin-syntax-hermes-parser: "npm:0.25.1" + base64-js: "npm:^1.5.1" + chalk: "npm:^4.0.0" + commander: "npm:^12.0.0" + event-target-shim: "npm:^5.0.1" + flow-enums-runtime: "npm:^0.0.6" + glob: "npm:^7.1.1" + invariant: "npm:^2.2.4" + jest-environment-node: "npm:^29.6.3" + jsc-android: "npm:^250231.0.0" + memoize-one: "npm:^5.0.0" + metro-runtime: "npm:^0.81.0" + metro-source-map: "npm:^0.81.0" + nullthrows: "npm:^1.1.1" + pretty-format: "npm:^29.7.0" + promise: "npm:^8.3.0" + react-devtools-core: "npm:^6.0.1" + react-refresh: "npm:^0.14.0" + regenerator-runtime: "npm:^0.13.2" + scheduler: "npm:0.24.0-canary-efb381bbf-20230505" + semver: "npm:^7.1.3" + stacktrace-parser: "npm:^0.1.10" + whatwg-fetch: "npm:^3.0.0" + ws: "npm:^6.2.3" + yargs: "npm:^17.6.2" + peerDependencies: + "@types/react": ^18.2.6 + react: ^18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true + bin: + react-native: cli.js + checksum: 10/ddafe0da1302a91328cc0a1c31288fb3c7e72c4d42aa99781d24fa145b4928ec0becb5e2981c519d412e6025e50a3840c866fa9fff15d745ece9c3b0e19c3ae3 + languageName: node + linkType: hard + "react-native@npm:react-native-tvos@0.76.0-0": version: 0.76.0-0 resolution: "react-native-tvos@npm:0.76.0-0" @@ -18595,6 +18609,19 @@ __metadata: languageName: node linkType: hard +"recast@npm:^0.23.9": + version: 0.23.9 + resolution: "recast@npm:0.23.9" + dependencies: + ast-types: "npm:^0.16.1" + esprima: "npm:~4.0.0" + source-map: "npm:~0.6.1" + tiny-invariant: "npm:^1.3.3" + tslib: "npm:^2.0.1" + checksum: 10/d60584be179d81a82fbe58b5bbe009aa42831ee114a21a3e3a22bda91334e0b8a1a4610dca8ecb7f9ea1426da4febc08134d3003085ad6ecee478d1808eb8796 + languageName: node + linkType: hard + "rechoir@npm:^0.6.2": version: 0.6.2 resolution: "rechoir@npm:0.6.2" @@ -19295,7 +19322,7 @@ __metadata: languageName: node linkType: hard -"serve-static@npm:^1.13.1": +"serve-static@npm:^1.13.1, serve-static@npm:^1.16.2": version: 1.16.2 resolution: "serve-static@npm:1.16.2" dependencies: @@ -20453,6 +20480,13 @@ __metadata: languageName: node linkType: hard +"tiny-invariant@npm:^1.3.3": + version: 1.3.3 + resolution: "tiny-invariant@npm:1.3.3" + checksum: 10/5e185c8cc2266967984ce3b352a4e57cb89dad5a8abb0dea21468a6ecaa67cd5bb47a3b7a85d08041008644af4f667fb8b6575ba38ba5fb00b3b5068306e59fe + languageName: node + linkType: hard + "tmp@npm:^0.0.33": version: 0.0.33 resolution: "tmp@npm:0.0.33" @@ -20462,7 +20496,7 @@ __metadata: languageName: node linkType: hard -"tmp@npm:~0.2.3": +"tmp@npm:^0.2.3, tmp@npm:~0.2.3": version: 0.2.3 resolution: "tmp@npm:0.2.3" checksum: 10/7b13696787f159c9754793a83aa79a24f1522d47b87462ddb57c18ee93ff26c74cbb2b8d9138f571d2e0e765c728fb2739863a672b280528512c6d83d511c6fa @@ -20864,15 +20898,6 @@ __metadata: languageName: node linkType: hard -"typedarray-to-buffer@npm:^3.1.5": - version: 3.1.5 - resolution: "typedarray-to-buffer@npm:3.1.5" - dependencies: - is-typedarray: "npm:^1.0.0" - checksum: 10/7c850c3433fbdf4d04f04edfc751743b8f577828b8e1eb93b95a3bce782d156e267d83e20fb32b3b47813e69a69ab5e9b5342653332f7d21c7d1210661a7a72c - languageName: node - linkType: hard - "typedarray.prototype.slice@npm:^1.0.3": version: 1.0.3 resolution: "typedarray.prototype.slice@npm:1.0.3" @@ -21390,7 +21415,7 @@ __metadata: "@expo/metro-runtime": "npm:~4.0.0" "@expo/vector-icons": "npm:^14.0.0" "@react-navigation/native": "npm:^7.0.0" - "@shopify/flash-list": "npm:^1.7.1" + "@shopify/flash-list": "patch:@shopify/flash-list@npm%3A1.7.2#~/.yarn/patches/@shopify-flash-list-npm-1.7.2-2a363895ca.patch" "@stylexjs/babel-plugin": "npm:^0.10.0" "@types/eslint": "npm:^8" common-app: "workspace:*" @@ -21665,18 +21690,6 @@ __metadata: languageName: node linkType: hard -"write-file-atomic@npm:^3.0.0": - version: 3.0.3 - resolution: "write-file-atomic@npm:3.0.3" - dependencies: - imurmurhash: "npm:^0.1.4" - is-typedarray: "npm:^1.0.0" - signal-exit: "npm:^3.0.2" - typedarray-to-buffer: "npm:^3.1.5" - checksum: 10/0955ab94308b74d32bc252afe69d8b42ba4b8a28b8d79f399f3f405969f82623f981e35d13129a52aa2973450f342107c06d86047572637584e85a1c0c246bf3 - languageName: node - linkType: hard - "write-file-atomic@npm:^4.0.2": version: 4.0.2 resolution: "write-file-atomic@npm:4.0.2" @@ -21687,6 +21700,16 @@ __metadata: languageName: node linkType: hard +"write-file-atomic@npm:^5.0.1": + version: 5.0.1 + resolution: "write-file-atomic@npm:5.0.1" + dependencies: + imurmurhash: "npm:^0.1.4" + signal-exit: "npm:^4.0.1" + checksum: 10/648efddba54d478d0e4330ab6f239976df3b9752b123db5dc9405d9b5af768fa9d70ce60c52fdbe61d1200d24350bc4fbcbaf09288496c2be050de126bd95b7e + languageName: node + linkType: hard + "ws@npm:^6.2.2, ws@npm:^6.2.3": version: 6.2.3 resolution: "ws@npm:6.2.3"