diff --git a/.agents/skills/upgrade-react-native/SKILL.md b/.agents/skills/upgrade-react-native/SKILL.md new file mode 100644 index 000000000..ca8607d36 --- /dev/null +++ b/.agents/skills/upgrade-react-native/SKILL.md @@ -0,0 +1,185 @@ +--- +name: upgrade-react-native +description: > + Use when upgrading react-native to a newer version. Handles version bumps, + native project changes (Android/iOS), dependency updates, and breaking change + migration. Invoke with `/upgrade-react-native `. +version: 0.1.0 +license: MIT +--- + +# Upgrade React Native + +Upgrade a React Native Community CLI project to a target version by fetching +and applying the diff from the +[React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/). + + +> [!Note] +> **Expo users:** For Expo projects or more complex upgrade scenarios, try: +> - [expo/skills/upgrading-expo](https://skills.sh/expo/skills/upgrading-expo) +> - [callstackincubator/agent-skills/upgrading-react-native](https://skills.sh/callstackincubator/agent-skills/upgrading-react-native) + + +## Invocation + +``` +/upgrade-react-native +``` + +- `` — the React Native version to upgrade to (e.g. `0.79.0`). + +## Step-by-step procedure + +Follow every step below **in order**. Do not skip steps. + +### 1. Detect the current React Native version + +Read the project's root `package.json` and extract the `react-native` version +from `dependencies` (or `devDependencies`). Strip any semver range prefix +(`^`, `~`, `>=`, etc.) to get the exact current version string. + +If the current version cannot be determined, stop and ask the user. + +### 2. Validate the target version + +- The target version must be a valid semver string (e.g. `0.79.0`). +- It must be **greater than** the current version. +- Verify the target version exists by checking: + ``` + https://raw.githubusercontent.com/react-native-community/rn-diff-purge/master/RELEASES + ``` + Fetch this file and confirm the target version is listed. If not, report the + closest available versions and ask the user to choose. + +### 3. Fetch the upgrade diff + +Fetch the unified diff between the two versions: + +``` +https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/...diff +``` + +For example, to upgrade from `0.73.0` to `0.74.0`: + +``` +https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/0.73.0..0.74.0.diff +``` + +If the diff cannot be fetched (404), it may be because exact patch versions are +not available. Try the nearest minor versions (e.g. `0.73.0` instead of +`0.73.2`). Report what you tried and ask the user if needed. + +### 4. Parse the diff and map file paths + +The diff uses the template project name `RnDiffApp`. Map every path in the diff +to the actual project: + +| Diff path prefix | Actual project path | +|------------------|---------------------| +| `RnDiffApp/` | Project root (`./`) | + +Additionally, replace occurrences of the template identifiers with the project's +actual names: + +| Template value | Replace with | +|----------------|--------------| +| `RnDiffApp` | The project's app name (from `app.json` → `name`, or the `name` field in `package.json`) | +| `rndiffapp` | Lowercase version of the project's app name | +| `com.rndiffapp` | The project's Android package name (from `android/app/build.gradle` or `android/app/src/main/AndroidManifest.xml`) | + +### 5. Review the diff and plan changes + +Before making any edits, review the entire diff and categorize changes: + +1. **Direct applies** — files that exist in the project and whose original + content matches the diff's `-` lines. These can be applied as-is. +2. **Conflicts** — files where the project's content has diverged from the + template (custom modifications). These need manual merging. +3. **New files** — files in the diff that don't exist in the project yet. Create + them. +4. **Deleted files** — files the diff removes. Delete them only if the project + hasn't added custom content to them. + +Present this plan to the user before proceeding. Group changes by area: + +- **Root config files** (`package.json`, `metro.config.js`, `.eslintrc.js`, etc.) +- **iOS native files** (`ios/` directory) +- **Android native files** (`android/` directory) +- **JavaScript/TypeScript source** (if any template source files changed) +- **Third-party native dependencies** (from step 7 — include any version bumps + identified there) + +### 6. Apply changes + +Apply the changes following the plan from step 5: + +- For **direct applies**: edit the file to match the diff's `+` lines. +- For **conflicts**: apply the upgrade changes while preserving the project's + customizations. Use your judgement to merge. If uncertain, show both versions + and ask the user. +- For **new files**: create them at the mapped path. +- For **deleted files**: remove them. + +**Important considerations:** + +- When updating `package.json`, update the `react-native` version and any + related dependencies mentioned in the diff (e.g. `react`, `@react-native/*` + packages, Gradle versions, CocoaPods versions). +- Do NOT run `npm install` / `yarn install` / `pod install` automatically. + Inform the user these steps are needed after the upgrade. +- Refer to the [references](#references) section for version-specific guidance + on breaking changes and migration notes. + +### 7. Update third-party native dependencies + +Scan the project's `dependencies` and `devDependencies` in `package.json` for +third-party React Native libraries that contain **native code** (i.e. they have +an `ios/` or `android/` directory, or are known native modules). Common examples +include `react-native-screens`, `react-native-reanimated`, +`react-native-gesture-handler`, `@react-native-async-storage/async-storage`, +`react-native-svg`, `react-native-safe-area-context`, etc. + +For each candidate dependency: + +1. **Fetch the library's README** from its GitHub repository or npm page. +2. **Look for a React Native version compatibility table or section** — many + native libraries document which versions of their package support which React + Native versions (e.g. a "Compatibility" or "Version Support" table). +3. **If the README contains a compatibility table** that maps the target React + Native version to a specific library version, include that library version + bump in the upgrade plan. +4. **If the README does not mention version compatibility with React Native + versions**, skip the library — do not guess or assume an upgrade is needed. + +Present all proposed dependency bumps alongside the diff-based changes in step 5 +(grouped under a **Third-party native dependencies** section). For each: + +- State the current version, the proposed version, and link to the compatibility + info you found. +- If multiple major versions are compatible, prefer the latest stable version + that supports the target React Native version. + +Apply these version bumps to `package.json` as part of step 6. + +### 8. Post-upgrade checklist + +After applying all changes, present the user with a checklist: + +- [ ] Run `npm install` or `yarn install` to update JS dependencies +- [ ] Run `cd ios && bundle exec pod install` (or `npx pod-install`) to update + native iOS dependencies +- [ ] Run a clean build for Android: `cd android && ./gradlew clean` +- [ ] Run a clean build for iOS: `cd ios && xcodebuild clean` +- [ ] Run the app on both platforms to verify it launches +- [ ] Run the project's test suite +- [ ] Review any conflict resolutions for correctness +- [ ] Check the [React Native changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md) for additional breaking changes +- [ ] Check the [Upgrade Helper web UI](https://react-native-community.github.io/upgrade-helper/?from=&to=) for any supplementary notes + +## References + +Consult these for version-specific migration guidance: + +- [references/upgrade-helper-api.md](./references/upgrade-helper-api.md) — How + to fetch diffs and version lists programmatically diff --git a/.agents/skills/upgrade-react-native/references/upgrade-helper-api.md b/.agents/skills/upgrade-react-native/references/upgrade-helper-api.md new file mode 100644 index 000000000..22be7240c --- /dev/null +++ b/.agents/skills/upgrade-react-native/references/upgrade-helper-api.md @@ -0,0 +1,68 @@ +# Upgrade Helper API Reference + +The [React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/) +uses pre-computed diffs from +[react-native-community/rn-diff-purge](https://github.com/react-native-community/rn-diff-purge). + +## Endpoints + +All endpoints are plain HTTP GET requests with no authentication required. + +### List available versions + +``` +GET https://raw.githubusercontent.com/react-native-community/rn-diff-purge/master/RELEASES +``` + +Returns a plain-text file with one version per line. + +### Fetch a diff between two versions + +``` +GET https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/{fromVersion}..{toVersion}.diff +``` + +Returns a standard unified diff (same format as `git diff` output). + +**Example:** + +``` +https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/0.73.0..0.74.0.diff +``` + +### View a file at a specific version + +``` +GET https://raw.githubusercontent.com/react-native-community/rn-diff-purge/release/{version}/RnDiffApp/{path} +``` + +### GitHub compare view + +``` +https://github.com/react-native-community/rn-diff-purge/compare/release/{fromVersion}..release/{toVersion} +``` + +### Web UI with pre-filled versions + +``` +https://react-native-community.github.io/upgrade-helper/?from={fromVersion}&to={toVersion} +``` + +## Diff format notes + +- All file paths are prefixed with `RnDiffApp/` (the template project name). +- The default app name is `RnDiffApp` with Android package `com.rndiffapp`. +- When applying diffs, replace these template names with the actual project's + app name and package identifiers. +- Binary files (e.g. Gradle wrapper JAR) appear as binary patch deltas and + should be downloaded directly from the target version's branch instead of + applying the diff. + +## Platform variants + +| Platform | Repository | Diff URL pattern | +|----------|-----------|-----------------| +| React Native (iOS/Android) | `react-native-community/rn-diff-purge` | `diffs/{from}..{to}.diff` | +| React Native macOS | `acoates-ms/rnw-diff` | `diffs/mac/{from}..{to}.diff` | +| React Native Windows (C++) | `acoates-ms/rnw-diff` | `diffs/cpp/{from}..{to}.diff` | +| React Native Windows (C#) | `acoates-ms/rnw-diff` | `diffs/cs/{from}..{to}.diff` | diff --git a/.claude/skills/upgrade-react-native b/.claude/skills/upgrade-react-native new file mode 120000 index 000000000..e26eb3e1e --- /dev/null +++ b/.claude/skills/upgrade-react-native @@ -0,0 +1 @@ +../../.agents/skills/upgrade-react-native \ No newline at end of file diff --git a/apps/tester-app/android/gradle/wrapper/gradle-wrapper.properties b/apps/tester-app/android/gradle/wrapper/gradle-wrapper.properties index d4081da47..2a84e188b 100644 --- a/apps/tester-app/android/gradle/wrapper/gradle-wrapper.properties +++ b/apps/tester-app/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/apps/tester-app/ios/Podfile.lock b/apps/tester-app/ios/Podfile.lock index 71b488b20..7d98acf01 100644 --- a/apps/tester-app/ios/Podfile.lock +++ b/apps/tester-app/ios/Podfile.lock @@ -32,12 +32,12 @@ PODS: - Yoga - DoubleConversion (1.1.6) - fast_float (8.0.0) - - FBLazyVector (0.81.0) + - FBLazyVector (0.83.3) - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.81.0): - - hermes-engine/Pre-built (= 0.81.0) - - hermes-engine/Pre-built (0.81.0) + - hermes-engine (0.14.1): + - hermes-engine/Pre-built (= 0.14.1) + - hermes-engine/Pre-built (0.14.1) - JWTDecode (3.0.1) - RCT-Folly (2024.11.18.00): - boost @@ -58,27 +58,30 @@ PODS: - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - - RCTDeprecation (0.81.0) - - RCTRequired (0.81.0) - - RCTTypeSafety (0.81.0): - - FBLazyVector (= 0.81.0) - - RCTRequired (= 0.81.0) - - React-Core (= 0.81.0) - - React (0.81.0): - - React-Core (= 0.81.0) - - React-Core/DevSupport (= 0.81.0) - - React-Core/RCTWebSocket (= 0.81.0) - - React-RCTActionSheet (= 0.81.0) - - React-RCTAnimation (= 0.81.0) - - React-RCTBlob (= 0.81.0) - - React-RCTImage (= 0.81.0) - - React-RCTLinking (= 0.81.0) - - React-RCTNetwork (= 0.81.0) - - React-RCTSettings (= 0.81.0) - - React-RCTText (= 0.81.0) - - React-RCTVibration (= 0.81.0) - - React-callinvoker (0.81.0) - - React-Core (0.81.0): + - RCTDeprecation (0.83.3) + - RCTRequired (0.83.3) + - RCTSwiftUI (0.83.3) + - RCTSwiftUIWrapper (0.83.3): + - RCTSwiftUI + - RCTTypeSafety (0.83.3): + - FBLazyVector (= 0.83.3) + - RCTRequired (= 0.83.3) + - React-Core (= 0.83.3) + - React (0.83.3): + - React-Core (= 0.83.3) + - React-Core/DevSupport (= 0.83.3) + - React-Core/RCTWebSocket (= 0.83.3) + - React-RCTActionSheet (= 0.83.3) + - React-RCTAnimation (= 0.83.3) + - React-RCTBlob (= 0.83.3) + - React-RCTImage (= 0.83.3) + - React-RCTLinking (= 0.83.3) + - React-RCTNetwork (= 0.83.3) + - React-RCTSettings (= 0.83.3) + - React-RCTText (= 0.83.3) + - React-RCTVibration (= 0.83.3) + - React-callinvoker (0.83.3) + - React-Core (0.83.3): - boost - DoubleConversion - fast_float @@ -88,7 +91,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) + - React-Core/Default (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -103,7 +106,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/CoreModulesHeaders (0.81.0): + - React-Core/CoreModulesHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -128,7 +131,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/Default (0.81.0): + - React-Core/Default (0.83.3): - boost - DoubleConversion - fast_float @@ -152,7 +155,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/DevSupport (0.81.0): + - React-Core/DevSupport (0.83.3): - boost - DoubleConversion - fast_float @@ -162,8 +165,8 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) - - React-Core/RCTWebSocket (= 0.81.0) + - React-Core/Default (= 0.83.3) + - React-Core/RCTWebSocket (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -178,7 +181,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTActionSheetHeaders (0.81.0): + - React-Core/RCTActionSheetHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -203,7 +206,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTAnimationHeaders (0.81.0): + - React-Core/RCTAnimationHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -228,7 +231,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTBlobHeaders (0.81.0): + - React-Core/RCTBlobHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -253,7 +256,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTImageHeaders (0.81.0): + - React-Core/RCTImageHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -278,7 +281,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTLinkingHeaders (0.81.0): + - React-Core/RCTLinkingHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -303,7 +306,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTNetworkHeaders (0.81.0): + - React-Core/RCTNetworkHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -328,7 +331,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTSettingsHeaders (0.81.0): + - React-Core/RCTSettingsHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -353,7 +356,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTTextHeaders (0.81.0): + - React-Core/RCTTextHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -378,7 +381,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTVibrationHeaders (0.81.0): + - React-Core/RCTVibrationHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -403,7 +406,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTWebSocket (0.81.0): + - React-Core/RCTWebSocket (0.83.3): - boost - DoubleConversion - fast_float @@ -413,7 +416,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) + - React-Core/Default (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -428,7 +431,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-CoreModules (0.81.0): + - React-CoreModules (0.83.3): - boost - DoubleConversion - fast_float @@ -436,20 +439,22 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - RCTTypeSafety (= 0.81.0) - - React-Core/CoreModulesHeaders (= 0.81.0) - - React-jsi (= 0.81.0) + - RCTTypeSafety (= 0.83.3) + - React-Core/CoreModulesHeaders (= 0.83.3) + - React-debug + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.81.0) + - React-RCTImage (= 0.83.3) - React-runtimeexecutor + - React-utils - ReactCommon - SocketRocket - - React-cxxreact (0.81.0): + - React-cxxreact (0.83.3): - boost - DoubleConversion - fast_float @@ -458,19 +463,20 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-debug (= 0.81.0) - - React-jsi (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-debug (= 0.83.3) + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) - React-runtimeexecutor - - React-timing (= 0.81.0) + - React-timing (= 0.83.3) + - React-utils - SocketRocket - - React-debug (0.81.0) - - React-defaultsnativemodule (0.81.0): + - React-debug (0.83.3) + - React-defaultsnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -480,14 +486,18 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-domnativemodule + - React-featureflags - React-featureflagsnativemodule - React-idlecallbacksnativemodule + - React-intersectionobservernativemodule - React-jsi - React-jsiexecutor - React-microtasksnativemodule - React-RCTFBReactNativeSpec + - React-webperformancenativemodule - SocketRocket - - React-domnativemodule (0.81.0): + - Yoga + - React-domnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -507,7 +517,51 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric (0.81.0): + - React-Fabric (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animated (= 0.83.3) + - React-Fabric/animationbackend (= 0.83.3) + - React-Fabric/animations (= 0.83.3) + - React-Fabric/attributedstring (= 0.83.3) + - React-Fabric/bridging (= 0.83.3) + - React-Fabric/componentregistry (= 0.83.3) + - React-Fabric/componentregistrynative (= 0.83.3) + - React-Fabric/components (= 0.83.3) + - React-Fabric/consistency (= 0.83.3) + - React-Fabric/core (= 0.83.3) + - React-Fabric/dom (= 0.83.3) + - React-Fabric/imagemanager (= 0.83.3) + - React-Fabric/leakchecker (= 0.83.3) + - React-Fabric/mounting (= 0.83.3) + - React-Fabric/observers (= 0.83.3) + - React-Fabric/scheduler (= 0.83.3) + - React-Fabric/telemetry (= 0.83.3) + - React-Fabric/templateprocessor (= 0.83.3) + - React-Fabric/uimanager (= 0.83.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/animated (0.83.3): - boost - DoubleConversion - fast_float @@ -521,23 +575,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.81.0) - - React-Fabric/attributedstring (= 0.81.0) - - React-Fabric/bridging (= 0.81.0) - - React-Fabric/componentregistry (= 0.81.0) - - React-Fabric/componentregistrynative (= 0.81.0) - - React-Fabric/components (= 0.81.0) - - React-Fabric/consistency (= 0.81.0) - - React-Fabric/core (= 0.81.0) - - React-Fabric/dom (= 0.81.0) - - React-Fabric/imagemanager (= 0.81.0) - - React-Fabric/leakchecker (= 0.81.0) - - React-Fabric/mounting (= 0.81.0) - - React-Fabric/observers (= 0.81.0) - - React-Fabric/scheduler (= 0.81.0) - - React-Fabric/telemetry (= 0.81.0) - - React-Fabric/templateprocessor (= 0.81.0) - - React-Fabric/uimanager (= 0.81.0) - React-featureflags - React-graphics - React-jsi @@ -549,7 +586,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animations (0.81.0): + - React-Fabric/animationbackend (0.83.3): - boost - DoubleConversion - fast_float @@ -574,7 +611,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/attributedstring (0.81.0): + - React-Fabric/animations (0.83.3): - boost - DoubleConversion - fast_float @@ -599,7 +636,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/bridging (0.81.0): + - React-Fabric/attributedstring (0.83.3): - boost - DoubleConversion - fast_float @@ -624,7 +661,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistry (0.81.0): + - React-Fabric/bridging (0.83.3): - boost - DoubleConversion - fast_float @@ -649,7 +686,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistrynative (0.81.0): + - React-Fabric/componentregistry (0.83.3): - boost - DoubleConversion - fast_float @@ -674,7 +711,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components (0.81.0): + - React-Fabric/componentregistrynative (0.83.3): - boost - DoubleConversion - fast_float @@ -688,10 +725,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.81.0) - - React-Fabric/components/root (= 0.81.0) - - React-Fabric/components/scrollview (= 0.81.0) - - React-Fabric/components/view (= 0.81.0) - React-featureflags - React-graphics - React-jsi @@ -703,7 +736,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/legacyviewmanagerinterop (0.81.0): + - React-Fabric/components (0.83.3): - boost - DoubleConversion - fast_float @@ -717,6 +750,10 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.83.3) + - React-Fabric/components/root (= 0.83.3) + - React-Fabric/components/scrollview (= 0.83.3) + - React-Fabric/components/view (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -728,7 +765,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/root (0.81.0): + - React-Fabric/components/legacyviewmanagerinterop (0.83.3): - boost - DoubleConversion - fast_float @@ -753,7 +790,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/scrollview (0.81.0): + - React-Fabric/components/root (0.83.3): - boost - DoubleConversion - fast_float @@ -778,7 +815,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/view (0.81.0): + - React-Fabric/components/scrollview (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/components/view (0.83.3): - boost - DoubleConversion - fast_float @@ -805,7 +867,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric/consistency (0.81.0): + - React-Fabric/consistency (0.83.3): - boost - DoubleConversion - fast_float @@ -830,7 +892,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/core (0.81.0): + - React-Fabric/core (0.83.3): - boost - DoubleConversion - fast_float @@ -855,7 +917,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/dom (0.81.0): + - React-Fabric/dom (0.83.3): - boost - DoubleConversion - fast_float @@ -880,7 +942,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/imagemanager (0.81.0): + - React-Fabric/imagemanager (0.83.3): - boost - DoubleConversion - fast_float @@ -905,7 +967,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/leakchecker (0.81.0): + - React-Fabric/leakchecker (0.83.3): - boost - DoubleConversion - fast_float @@ -930,7 +992,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/mounting (0.81.0): + - React-Fabric/mounting (0.83.3): - boost - DoubleConversion - fast_float @@ -955,7 +1017,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers (0.81.0): + - React-Fabric/observers (0.83.3): - boost - DoubleConversion - fast_float @@ -969,7 +1031,8 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.81.0) + - React-Fabric/observers/events (= 0.83.3) + - React-Fabric/observers/intersection (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -981,7 +1044,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers/events (0.81.0): + - React-Fabric/observers/events (0.83.3): - boost - DoubleConversion - fast_float @@ -1006,7 +1069,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/scheduler (0.81.0): + - React-Fabric/observers/intersection (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/scheduler (0.83.3): - boost - DoubleConversion - fast_float @@ -1026,6 +1114,7 @@ PODS: - React-jsi - React-jsiexecutor - React-logger + - React-performancecdpmetrics - React-performancetimeline - React-rendererdebug - React-runtimeexecutor @@ -1033,7 +1122,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/telemetry (0.81.0): + - React-Fabric/telemetry (0.83.3): - boost - DoubleConversion - fast_float @@ -1058,7 +1147,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/templateprocessor (0.81.0): + - React-Fabric/templateprocessor (0.83.3): - boost - DoubleConversion - fast_float @@ -1083,7 +1172,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager (0.81.0): + - React-Fabric/uimanager (0.83.3): - boost - DoubleConversion - fast_float @@ -1097,7 +1186,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.81.0) + - React-Fabric/uimanager/consistency (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1110,7 +1199,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager/consistency (0.81.0): + - React-Fabric/uimanager/consistency (0.83.3): - boost - DoubleConversion - fast_float @@ -1136,7 +1225,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-FabricComponents (0.81.0): + - React-FabricComponents (0.83.3): - boost - DoubleConversion - fast_float @@ -1151,8 +1240,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.81.0) - - React-FabricComponents/textlayoutmanager (= 0.81.0) + - React-FabricComponents/components (= 0.83.3) + - React-FabricComponents/textlayoutmanager (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1165,7 +1254,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components (0.81.0): + - React-FabricComponents/components (0.83.3): - boost - DoubleConversion - fast_float @@ -1180,16 +1269,18 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.81.0) - - React-FabricComponents/components/iostextinput (= 0.81.0) - - React-FabricComponents/components/modal (= 0.81.0) - - React-FabricComponents/components/rncore (= 0.81.0) - - React-FabricComponents/components/safeareaview (= 0.81.0) - - React-FabricComponents/components/scrollview (= 0.81.0) - - React-FabricComponents/components/text (= 0.81.0) - - React-FabricComponents/components/textinput (= 0.81.0) - - React-FabricComponents/components/unimplementedview (= 0.81.0) - - React-FabricComponents/components/virtualview (= 0.81.0) + - React-FabricComponents/components/inputaccessory (= 0.83.3) + - React-FabricComponents/components/iostextinput (= 0.83.3) + - React-FabricComponents/components/modal (= 0.83.3) + - React-FabricComponents/components/rncore (= 0.83.3) + - React-FabricComponents/components/safeareaview (= 0.83.3) + - React-FabricComponents/components/scrollview (= 0.83.3) + - React-FabricComponents/components/switch (= 0.83.3) + - React-FabricComponents/components/text (= 0.83.3) + - React-FabricComponents/components/textinput (= 0.83.3) + - React-FabricComponents/components/unimplementedview (= 0.83.3) + - React-FabricComponents/components/virtualview (= 0.83.3) + - React-FabricComponents/components/virtualviewexperimental (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1202,7 +1293,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/inputaccessory (0.81.0): + - React-FabricComponents/components/inputaccessory (0.83.3): - boost - DoubleConversion - fast_float @@ -1229,7 +1320,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/iostextinput (0.81.0): + - React-FabricComponents/components/iostextinput (0.83.3): - boost - DoubleConversion - fast_float @@ -1256,7 +1347,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/modal (0.81.0): + - React-FabricComponents/components/modal (0.83.3): - boost - DoubleConversion - fast_float @@ -1283,7 +1374,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/rncore (0.81.0): + - React-FabricComponents/components/rncore (0.83.3): - boost - DoubleConversion - fast_float @@ -1310,7 +1401,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/safeareaview (0.81.0): + - React-FabricComponents/components/safeareaview (0.83.3): - boost - DoubleConversion - fast_float @@ -1337,7 +1428,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/scrollview (0.81.0): + - React-FabricComponents/components/scrollview (0.83.3): - boost - DoubleConversion - fast_float @@ -1364,7 +1455,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/text (0.81.0): + - React-FabricComponents/components/switch (0.83.3): - boost - DoubleConversion - fast_float @@ -1391,7 +1482,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/textinput (0.81.0): + - React-FabricComponents/components/text (0.83.3): - boost - DoubleConversion - fast_float @@ -1418,7 +1509,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/unimplementedview (0.81.0): + - React-FabricComponents/components/textinput (0.83.3): - boost - DoubleConversion - fast_float @@ -1445,7 +1536,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualview (0.81.0): + - React-FabricComponents/components/unimplementedview (0.83.3): - boost - DoubleConversion - fast_float @@ -1472,7 +1563,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/textlayoutmanager (0.81.0): + - React-FabricComponents/components/virtualview (0.83.3): - boost - DoubleConversion - fast_float @@ -1499,7 +1590,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricImage (0.81.0): + - React-FabricComponents/components/virtualviewexperimental (0.83.3): - boost - DoubleConversion - fast_float @@ -1508,21 +1599,75 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - RCTRequired (= 0.81.0) - - RCTTypeSafety (= 0.81.0) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-RCTFBReactNativeSpec + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-FabricComponents/textlayoutmanager (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-RCTFBReactNativeSpec + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-FabricImage (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired (= 0.83.3) + - RCTTypeSafety (= 0.83.3) - React-Fabric - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.81.0) + - React-jsiexecutor (= 0.83.3) - React-logger - React-rendererdebug - React-utils - ReactCommon - SocketRocket - Yoga - - React-featureflags (0.81.0): + - React-featureflags (0.83.3): - boost - DoubleConversion - fast_float @@ -1531,7 +1676,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-featureflagsnativemodule (0.81.0): + - React-featureflagsnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1546,7 +1691,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - SocketRocket - - React-graphics (0.81.0): + - React-graphics (0.83.3): - boost - DoubleConversion - fast_float @@ -1559,7 +1704,7 @@ PODS: - React-jsiexecutor - React-utils - SocketRocket - - React-hermes (0.81.0): + - React-hermes (0.83.3): - boost - DoubleConversion - fast_float @@ -1568,16 +1713,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) + - React-cxxreact (= 0.83.3) - React-jsi - - React-jsiexecutor (= 0.81.0) + - React-jsiexecutor (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-oscompat + - React-perflogger (= 0.83.3) - React-runtimeexecutor - SocketRocket - - React-idlecallbacksnativemodule (0.81.0): + - React-idlecallbacksnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1593,7 +1739,7 @@ PODS: - React-runtimescheduler - ReactCommon/turbomodule/core - SocketRocket - - React-ImageManager (0.81.0): + - React-ImageManager (0.83.3): - boost - DoubleConversion - fast_float @@ -1608,7 +1754,28 @@ PODS: - React-rendererdebug - React-utils - SocketRocket - - React-jserrorhandler (0.81.0): + - React-intersectionobservernativemodule (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-Fabric + - React-Fabric/bridging + - React-graphics + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - React-runtimescheduler + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-jserrorhandler (0.83.3): - boost - DoubleConversion - fast_float @@ -1623,7 +1790,7 @@ PODS: - React-jsi - ReactCommon/turbomodule/bridging - SocketRocket - - React-jsi (0.81.0): + - React-jsi (0.83.3): - boost - DoubleConversion - fast_float @@ -1633,7 +1800,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsiexecutor (0.81.0): + - React-jsiexecutor (0.83.3): - boost - DoubleConversion - fast_float @@ -1642,15 +1809,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) + - React-cxxreact + - React-debug + - React-jsi - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-perflogger - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspector (0.81.0): + - React-jsinspector (0.83.3): - boost - DoubleConversion - fast_float @@ -1664,10 +1833,12 @@ PODS: - React-jsinspectorcdp - React-jsinspectornetwork - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-oscompat + - React-perflogger (= 0.83.3) - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspectorcdp (0.81.0): + - React-jsinspectorcdp (0.83.3): - boost - DoubleConversion - fast_float @@ -1676,7 +1847,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsinspectornetwork (0.81.0): + - React-jsinspectornetwork (0.83.3): - boost - DoubleConversion - fast_float @@ -1684,23 +1855,23 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-featureflags - React-jsinspectorcdp - - React-performancetimeline - - React-timing - SocketRocket - - React-jsinspectortracing (0.81.0): + - React-jsinspectortracing (0.83.3): - boost - DoubleConversion - fast_float - fmt - glog + - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - React-jsi + - React-jsinspectornetwork - React-oscompat - React-timing - SocketRocket - - React-jsitooling (0.81.0): + - React-jsitooling (0.83.3): - boost - DoubleConversion - fast_float @@ -1708,16 +1879,18 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) + - React-cxxreact (= 0.83.3) + - React-debug + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsitracing (0.81.0): + - React-jsitracing (0.83.3): - React-jsi - - React-logger (0.81.0): + - React-logger (0.83.3): - boost - DoubleConversion - fast_float @@ -1726,7 +1899,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-Mapbuffer (0.81.0): + - React-Mapbuffer (0.83.3): - boost - DoubleConversion - fast_float @@ -1736,7 +1909,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-microtasksnativemodule (0.81.0): + - React-microtasksnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1837,7 +2010,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-NativeModulesApple (0.81.0): + - React-NativeModulesApple (0.83.3): - boost - DoubleConversion - fast_float @@ -1849,6 +2022,7 @@ PODS: - React-callinvoker - React-Core - React-cxxreact + - React-debug - React-featureflags - React-jsi - React-jsinspector @@ -1857,8 +2031,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - React-oscompat (0.81.0) - - React-perflogger (0.81.0): + - React-networking (0.83.3): - boost - DoubleConversion - fast_float @@ -1866,8 +2039,37 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric + - React-featureflags + - React-jsinspectornetwork + - React-jsinspectortracing + - React-performancetimeline + - React-timing - SocketRocket - - React-performancetimeline (0.81.0): + - React-oscompat (0.83.3) + - React-perflogger (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-performancecdpmetrics (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-jsi + - React-performancetimeline + - React-runtimeexecutor + - React-timing + - SocketRocket + - React-performancetimeline (0.83.3): - boost - DoubleConversion - fast_float @@ -1880,9 +2082,9 @@ PODS: - React-perflogger - React-timing - SocketRocket - - React-RCTActionSheet (0.81.0): - - React-Core/RCTActionSheetHeaders (= 0.81.0) - - React-RCTAnimation (0.81.0): + - React-RCTActionSheet (0.83.3): + - React-Core/RCTActionSheetHeaders (= 0.83.3) + - React-RCTAnimation (0.83.3): - boost - DoubleConversion - fast_float @@ -1898,7 +2100,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTAppDelegate (0.81.0): + - React-RCTAppDelegate (0.83.3): - boost - DoubleConversion - fast_float @@ -1932,7 +2134,7 @@ PODS: - React-utils - ReactCommon - SocketRocket - - React-RCTBlob (0.81.0): + - React-RCTBlob (0.83.3): - boost - DoubleConversion - fast_float @@ -1951,7 +2153,7 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTFabric (0.81.0): + - React-RCTFabric (0.83.3): - boost - DoubleConversion - fast_float @@ -1960,6 +2162,7 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - RCTSwiftUIWrapper - React-Core - React-debug - React-Fabric @@ -1971,8 +2174,9 @@ PODS: - React-jsi - React-jsinspector - React-jsinspectorcdp - - React-jsinspectornetwork - React-jsinspectortracing + - React-networking + - React-performancecdpmetrics - React-performancetimeline - React-RCTAnimation - React-RCTFBReactNativeSpec @@ -1986,7 +2190,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-RCTFBReactNativeSpec (0.81.0): + - React-RCTFBReactNativeSpec (0.83.3): - boost - DoubleConversion - fast_float @@ -2000,10 +2204,10 @@ PODS: - React-Core - React-jsi - React-NativeModulesApple - - React-RCTFBReactNativeSpec/components (= 0.81.0) + - React-RCTFBReactNativeSpec/components (= 0.83.3) - ReactCommon - SocketRocket - - React-RCTFBReactNativeSpec/components (0.81.0): + - React-RCTFBReactNativeSpec/components (0.83.3): - boost - DoubleConversion - fast_float @@ -2026,7 +2230,7 @@ PODS: - ReactCommon - SocketRocket - Yoga - - React-RCTImage (0.81.0): + - React-RCTImage (0.83.3): - boost - DoubleConversion - fast_float @@ -2042,14 +2246,14 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTLinking (0.81.0): - - React-Core/RCTLinkingHeaders (= 0.81.0) - - React-jsi (= 0.81.0) + - React-RCTLinking (0.83.3): + - React-Core/RCTLinkingHeaders (= 0.83.3) + - React-jsi (= 0.83.3) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.81.0) - - React-RCTNetwork (0.81.0): + - ReactCommon/turbomodule/core (= 0.83.3) + - React-RCTNetwork (0.83.3): - boost - DoubleConversion - fast_float @@ -2059,15 +2263,17 @@ PODS: - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTNetworkHeaders + - React-debug - React-featureflags - React-jsi - React-jsinspectorcdp - React-jsinspectornetwork - React-NativeModulesApple + - React-networking - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTRuntime (0.81.0): + - React-RCTRuntime (0.83.3): - boost - DoubleConversion - fast_float @@ -2077,6 +2283,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-Core + - React-debug - React-jsi - React-jsinspector - React-jsinspectorcdp @@ -2086,8 +2293,9 @@ PODS: - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes + - React-utils - SocketRocket - - React-RCTSettings (0.81.0): + - React-RCTSettings (0.83.3): - boost - DoubleConversion - fast_float @@ -2102,10 +2310,10 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTText (0.81.0): - - React-Core/RCTTextHeaders (= 0.81.0) + - React-RCTText (0.83.3): + - React-Core/RCTTextHeaders (= 0.83.3) - Yoga - - React-RCTVibration (0.81.0): + - React-RCTVibration (0.83.3): - boost - DoubleConversion - fast_float @@ -2119,11 +2327,11 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-rendererconsistency (0.81.0) - - React-renderercss (0.81.0): + - React-rendererconsistency (0.83.3) + - React-renderercss (0.83.3): - React-debug - React-utils - - React-rendererdebug (0.81.0): + - React-rendererdebug (0.83.3): - boost - DoubleConversion - fast_float @@ -2133,7 +2341,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-RuntimeApple (0.81.0): + - React-RuntimeApple (0.83.3): - boost - DoubleConversion - fast_float @@ -2162,7 +2370,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-RuntimeCore (0.81.0): + - React-RuntimeCore (0.83.3): - boost - DoubleConversion - fast_float @@ -2184,7 +2392,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-runtimeexecutor (0.81.0): + - React-runtimeexecutor (0.83.3): - boost - DoubleConversion - fast_float @@ -2194,10 +2402,10 @@ PODS: - RCT-Folly/Fabric - React-debug - React-featureflags - - React-jsi (= 0.81.0) + - React-jsi (= 0.83.3) - React-utils - SocketRocket - - React-RuntimeHermes (0.81.0): + - React-RuntimeHermes (0.83.3): - boost - DoubleConversion - fast_float @@ -2218,7 +2426,7 @@ PODS: - React-runtimeexecutor - React-utils - SocketRocket - - React-runtimescheduler (0.81.0): + - React-runtimescheduler (0.83.3): - boost - DoubleConversion - fast_float @@ -2240,8 +2448,9 @@ PODS: - React-timing - React-utils - SocketRocket - - React-timing (0.81.0) - - React-utils (0.81.0): + - React-timing (0.83.3): + - React-debug + - React-utils (0.83.3): - boost - DoubleConversion - fast_float @@ -2251,11 +2460,28 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-debug - - React-jsi (= 0.81.0) + - React-jsi (= 0.83.3) + - SocketRocket + - React-webperformancenativemodule (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-jsi + - React-jsiexecutor + - React-performancetimeline + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - ReactCommon/turbomodule/core - SocketRocket - - ReactAppDependencyProvider (0.81.0): + - ReactAppDependencyProvider (0.83.3): - ReactCodegen - - ReactCodegen (0.81.0): + - ReactCodegen (0.83.3): - boost - DoubleConversion - fast_float @@ -2281,7 +2507,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - ReactCommon (0.81.0): + - ReactCommon (0.83.3): - boost - DoubleConversion - fast_float @@ -2289,9 +2515,9 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - ReactCommon/turbomodule (= 0.81.0) + - ReactCommon/turbomodule (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule (0.81.0): + - ReactCommon/turbomodule (0.83.3): - boost - DoubleConversion - fast_float @@ -2300,15 +2526,15 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) - - ReactCommon/turbomodule/bridging (= 0.81.0) - - ReactCommon/turbomodule/core (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) + - ReactCommon/turbomodule/bridging (= 0.83.3) + - ReactCommon/turbomodule/core (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule/bridging (0.81.0): + - ReactCommon/turbomodule/bridging (0.83.3): - boost - DoubleConversion - fast_float @@ -2317,13 +2543,13 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule/core (0.81.0): + - ReactCommon/turbomodule/core (0.83.3): - boost - DoubleConversion - fast_float @@ -2332,16 +2558,16 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-debug (= 0.81.0) - - React-featureflags (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) - - React-utils (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-debug (= 0.83.3) + - React-featureflags (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) + - React-utils (= 0.83.3) - SocketRocket - - ReactNativeHost (0.5.11): + - ReactNativeHost (0.5.16): - boost - DoubleConversion - fast_float @@ -2371,7 +2597,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - ReactTestApp-DevSupport (4.4.7): + - ReactTestApp-DevSupport (5.1.0): - React-Core - React-jsi - ReactTestApp-Resources (1.0.0-dev) @@ -2687,6 +2913,8 @@ DEPENDENCIES: - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) - RCTRequired (from `../node_modules/react-native/Libraries/Required`) + - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`) + - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) @@ -2706,6 +2934,7 @@ DEPENDENCIES: - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) + - React-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`) - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) @@ -2720,8 +2949,10 @@ DEPENDENCIES: - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) + - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`) - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`) - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) @@ -2746,10 +2977,11 @@ 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`) + - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`) + - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`) + - ReactCodegen (from `build/generated/ios/ReactCodegen`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - - "ReactNativeHost (from `../../../node_modules/.pnpm/react-native-test-app@4.4.7_react-native@0.81.0_@babel+core@7.25.2_@react-native-community+cl_ewtjfzw7qct7nbxbklxsged2ea/node_modules/@rnx-kit/react-native-host`)" + - "ReactNativeHost (from `../../../node_modules/.pnpm/react-native-test-app@5.1.0_react-native@0.83.3_@babel+core@7.25.2_@react-native-community+cl_z76kjirq25hld6vveima5ikg7u/node_modules/@rnx-kit/react-native-host`)" - ReactTestApp-DevSupport (from `../node_modules/react-native-test-app`) - ReactTestApp-Resources (from `..`) - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" @@ -2782,13 +3014,17 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2025-07-07-RNv0.81.0-e0fc67142ec0763c6b6153ca2bf96df815539782 + :tag: hermes-v0.14.1 RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" RCTRequired: :path: "../node_modules/react-native/Libraries/Required" + RCTSwiftUI: + :path: "../node_modules/react-native/ReactApple/RCTSwiftUI" + RCTSwiftUIWrapper: + :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: @@ -2825,6 +3061,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" + React-intersectionobservernativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver" React-jserrorhandler: :path: "../node_modules/react-native/ReactCommon/jserrorhandler" React-jsi: @@ -2853,10 +3091,14 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-safe-area-context" React-NativeModulesApple: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" + React-networking: + :path: "../node_modules/react-native/ReactCommon/react/networking" React-oscompat: :path: "../node_modules/react-native/ReactCommon/oscompat" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancecdpmetrics: + :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics" React-performancetimeline: :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" React-RCTActionSheet: @@ -2905,14 +3147,16 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/timing" React-utils: :path: "../node_modules/react-native/ReactCommon/react/utils" + React-webperformancenativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance" ReactAppDependencyProvider: - :path: build/generated/ios + :path: build/generated/ios/ReactAppDependencyProvider ReactCodegen: - :path: build/generated/ios + :path: build/generated/ios/ReactCodegen ReactCommon: :path: "../node_modules/react-native/ReactCommon" ReactNativeHost: - :path: "../../../node_modules/.pnpm/react-native-test-app@4.4.7_react-native@0.81.0_@babel+core@7.25.2_@react-native-community+cl_ewtjfzw7qct7nbxbklxsged2ea/node_modules/@rnx-kit/react-native-host" + :path: "../../../node_modules/.pnpm/react-native-test-app@5.1.0_react-native@0.83.3_@babel+core@7.25.2_@react-native-community+cl_z76kjirq25hld6vveima5ikg7u/node_modules/@rnx-kit/react-native-host" ReactTestApp-DevSupport: :path: "../node_modules/react-native-test-app" ReactTestApp-Resources: @@ -2933,85 +3177,91 @@ SPEC CHECKSUMS: callstack-repack: d2b994c81bca9047cfd550b1a760421c8868c1a3 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 - FBLazyVector: a867936a67af0d09c37935a1b900a1a3c795b6d1 + FBLazyVector: fc9809f68c51849ba5be77326c255b83db74b8a1 fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 - hermes-engine: e7491a2038f2618c8cd444ed411a6deb350a3742 + hermes-engine: 6b41850af20c45e6301453a5c9b3ee33d9263d0a JWTDecode: 2eed97c2fa46ccaf3049a787004eedf0be474a87 RCT-Folly: 59ec0ac1f2f39672a0c6e6cecdd39383b764646f - RCTDeprecation: 0735ab4f6b3ec93a7f98187b5da74d7916e2cf4c - RCTRequired: 8fcc7801bfc433072287b0f24a662e2816e89d0c - RCTTypeSafety: 2b2be515d6b968bcba7a68c4179d8199bd8c9b58 - React: 1000c0e96d8fb9fbdaf13f7d31d0b09db3cbb4ac - React-callinvoker: 7e52661bfaf5d8881a9cee049792627a00001fbe - React-Core: a9128dd77ec52432727bfbec8c55d17189f6c039 - React-CoreModules: 4597116bd78ae2b183547e3700be0dc9537918e9 - React-cxxreact: e3a02f535cc1f1b547ac1baafe6ac25552352362 - React-debug: 7a23d96f709f437c5e08973d6e06d0a54dd180a1 - React-defaultsnativemodule: f01b6e58a23efe4fc8d74db7dadeea112908f5d5 - React-domnativemodule: 2d9796d40ab675e0f91ae8aae26c796b6e9a7499 - React-Fabric: f4344b3a882292783de9a5404852023b6c4fdd2d - React-FabricComponents: 7c51eb1619473ae3ed92d8bbf5d5dd3be0c5ef9d - React-FabricImage: 9e743575e67a9c14242bec3ae0e26663eed641bb - React-featureflags: 5188951cc2fc81f4d249dc37e8f96dca7ef50e96 - React-featureflagsnativemodule: 0fa7473065377ca4e5651c75614796326ef57aa8 - React-graphics: f65ecd0a8c70f9c7dcdae322851c19b21c83ec27 - React-hermes: 8418dae38a0513aa66aaa0a1b0904e55c4448644 - React-idlecallbacksnativemodule: 540d6f743fcb595b26da8b182b28c878a1176a96 - React-ImageManager: 5f9f1e33611a852d21a63e1de76d211fb04ac935 - React-jserrorhandler: 9c0a7d69cd07c9ae08fab3a61150d526c0174c83 - React-jsi: b711b7a11d77357beb95fa2eabd30c1ae34dcf40 - React-jsiexecutor: 0d1c78e666c5be71ff7c0ff5ea7fb043e5b1f14c - React-jsinspector: 5fabd9f0be9390d5b5eb5fc88a8965d97e0c14ac - React-jsinspectorcdp: e78c65e25253999c0efd5e23c99e649e02fd0244 - React-jsinspectornetwork: b02c6f7fe00e12b575a7faea0ed9ec9ddbc1c20f - React-jsinspectortracing: c6d8da3c8bcd939b8dcfd5113e247d56af932e1b - React-jsitooling: 4ca9b158d65909590daf6bf30a345b663eb71964 - React-jsitracing: d9e9378d5a3e05febea2164a5d0c5fab06492872 - React-logger: 839abfd18a3fbdf88132824de584b226d0c5cbce - React-Mapbuffer: bd5b1120c9bbaac6203eb288735e239f04e03009 - React-microtasksnativemodule: 10892b00e612d79436022a11e5bc8bdf468a284f + RCTDeprecation: 5b820e4173338406a389434c2b79b84ec3b17e26 + RCTRequired: 10f9df44a97f776fa100b21de237605e77558003 + RCTSwiftUI: f39ca8a94156ffc21fe32cd698d0526aea96ac67 + RCTSwiftUIWrapper: 9dd1885803ebb68ef067c201456b855b94cf39b1 + RCTTypeSafety: 5a9a574c62ef181c9ab4f8939beae05fd7e4295b + React: d2e915c0695e4aab827878e1291f3c08bcc78c37 + React-callinvoker: 33672f1ad938395b7859532cb4901701be59e951 + React-Core: b1bbda65681b4a033367194ffdf90a800b31826b + React-CoreModules: 28692a4bacc81606d54032b115bf2a973d9ffa48 + React-cxxreact: 08dd10045b7b08032f0f55ea82c4abe923f20906 + React-debug: fb5fa668cbcce4c16165f911cdb18c95965f6931 + React-defaultsnativemodule: 0a5b70bb3b8e0b8564271d058238dda3f055fc56 + React-domnativemodule: 5dc7e81f73aa1ca6e6077e9d8906d0a4cb235ca1 + React-Fabric: 90d48592ac3945e6e8ccbd8548702acf7173e00d + React-FabricComponents: 1bc2689420ad8253db5001d65f40fcc25a074131 + React-FabricImage: 2893e6e98ffe5473629f9620bbbae54257b5c553 + React-featureflags: c2aff1a0fb1952c295ae3df3f915d0e38010f564 + React-featureflagsnativemodule: 43b4bff6bf7e6cf7295a867619e16c41a36534bc + React-graphics: 953b125bad116068b99f11e0bbb5b6c37dc49459 + React-hermes: 17017df3cfd34f7bb2082d1c99707f31682352b9 + React-idlecallbacksnativemodule: e89c2d781f3877a5528090cb65aae4f7943bf44b + React-ImageManager: 523d45e72dd34d99e81a245f76d170c11090a7e6 + React-intersectionobservernativemodule: efc31ecef5585394e4d3681f12e81782c1fd9a75 + React-jserrorhandler: f6fcc82e42bc16a1f411910d5e884d50424162e1 + React-jsi: 881d0973e4115de4fe7514c40c517112dd87bdf2 + React-jsiexecutor: 3135e7fbf876bad9214a8f1b11e12e9757355157 + React-jsinspector: 4695c82b7ab08cb5b8aa2562a29f6be6b74ce853 + React-jsinspectorcdp: 1701bedb021c919973cc106c6cf289d594ba0092 + React-jsinspectornetwork: 35e3009efe406c8dc51d0f9559e77e4147fbc396 + React-jsinspectortracing: 89daa2c4ec61e50886fc6fcf612640a92c45a331 + React-jsitooling: 3469c471c81831d143f0c80b29fa1783b68a540f + React-jsitracing: 35b798866b4fb1ec674ac34e884af4f04b980a82 + React-logger: 6eabdaf76fbf47f97cb984034e78f7f94c598935 + React-Mapbuffer: 59f2b773f64fca9ab6facd443657c77ac992669a + React-microtasksnativemodule: 1c7ccce743f1347261dbc699d6a41cd45c392d2d react-native-safe-area-context: 0ba06165160a8ff54ff0f20eca9bc6717d4df79e - React-NativeModulesApple: 3f9e97a4a90eeec1ceade511f973b277632650bb - React-oscompat: 34f3d3c06cadcbc470bc4509c717fb9b919eaa8b - React-perflogger: 95dff8cc9901777360716cbdcb2998849f133a4f - React-performancetimeline: 2937a27399b52ca8baf46f22c39087f617e626b5 - React-RCTActionSheet: 550c9c6c2e7dcd85a51954dc08e2f3837a148e7c - React-RCTAnimation: 0008bfe273566acd3128da13598073383325ac7a - React-RCTAppDelegate: 8b9452baef5548856a22f4710d4135cf68746cf5 - React-RCTBlob: 60006ab743e5fd807aaf536092f5ce86e87df526 - React-RCTFabric: 8d5d1006b3812c35fd0f37c117ff7bcf6449e20d - React-RCTFBReactNativeSpec: 3cb4265fa9a4e4f8250ae89feb345edc542731da - React-RCTImage: f40a2ee0f79c1666e8b81da4ea2d9d1182c94962 - React-RCTLinking: cfe6995bdd8d08d0bb0df12771f4d28fd5fd54ff - React-RCTNetwork: 565c0cd46313f2cad0e4db70a44958b2842c372b - React-RCTRuntime: 971a71a42d8979475a380e5179083302e5506cdd - React-RCTSettings: afcec6060d916e9c0410004ad8419d45f9dbcd36 - React-RCTText: 952f2a1b618d3f3872e7e5a82aefc5e5082c59aa - React-RCTVibration: 2a7e7497ffefa135c7f0fee8ee10e3505ab5cc61 - React-rendererconsistency: c2cb23365f4a7b511893748fe8cad1830bbae637 - React-renderercss: 621b2b85af14694e93c2bcd63986fb57bcceab2e - React-rendererdebug: 4ba0769131e20347b900757fcac3c7919b27080c - React-RuntimeApple: c1a211351c14d35805d45a94094cfb3e5649552c - React-RuntimeCore: b7c7d8dffa3728a9e9616e0e8b5b6b41037ebcca - React-runtimeexecutor: e931e48afc888fe459f6ffb481971e23bb34f7ee - React-RuntimeHermes: 5763230801ee57d9f414818f48e44b874f3ce1be - React-runtimescheduler: b2e99f9702705fc8c11cf3c51f9911f478ee2210 - React-timing: 25e8229ad1cf6874e9f0711515213cb2bc322215 - React-utils: 7ea6e4d300c43a763e4e08091413aec962588f93 - ReactAppDependencyProvider: 562d731311d0524a577cf8a01faa97874bacbdfe - ReactCodegen: ee1afddd0b9416db28c0d7f442890f38116ef6d2 - ReactCommon: c235ebd26d63fde9a2dfa72cee9f8294b910fee1 - ReactNativeHost: 6977837691a2084827c650fc23181eebc54ad9e1 - ReactTestApp-DevSupport: 6994b53b5b81139a8ce63e0776c726c95de079a1 + React-NativeModulesApple: 4a853d23adcfc688a83fa00048e170d865a162c8 + React-networking: dc6548f9ea922a4781f0c5490e78fbda614062a5 + React-oscompat: 4c2d9e85075ddcca7b7a61695ac8f3537f7134fb + React-perflogger: 5b36ec5529b43a3888f8a1852149c217a7003db5 + React-performancecdpmetrics: 346dbe8cacc410212ffbfd1c387c3f8a173ccfe9 + React-performancetimeline: 27a0b9f711729e8ed0de35ee964abc120f35bf1e + React-RCTActionSheet: b51142b04a248640143632f8ceadcb70e9cd574c + React-RCTAnimation: 77f173f29e748dccac93c659db9a761828dd9d9d + React-RCTAppDelegate: d0f09f429eef200d0e1167d0dd539497926d8323 + React-RCTBlob: d47ade560e5dd80ddcf9e34bf3043c5366c008eb + React-RCTFabric: 793e8dfc2c926d9c95613425158001a28f137878 + React-RCTFBReactNativeSpec: 723fcfbf92ea803ff280e91821e1ec250db70b55 + React-RCTImage: 77458a87c240d5f8d34c1dbbf14e7bd57278ed0e + React-RCTLinking: e614f04c8770f4282dba940adf52bd986e4ed974 + React-RCTNetwork: bab280601a7baafded7e4a48bbf71c5af47d3298 + React-RCTRuntime: 753de520b91f4d7439f6de7c054c5301a2f9877d + React-RCTSettings: d0796a5f5915a0fb0e52cf3ee04e241b09a2f8b8 + React-RCTText: 5ed613d2dfe990dbb19938372036b4643f0625ce + React-RCTVibration: 0ba561085e4c44a653b499236abe493629873286 + React-rendererconsistency: 066ea817c79274336239f8da6621541ce7470228 + React-renderercss: d76faab753aebcc375b7e5fc265a7cb9e2a28785 + React-rendererdebug: 4705abd17df137dd3037c61a3871183f2e4fc473 + React-RuntimeApple: 6753d64e71a9da7b61d982bc15917d91341bd611 + React-RuntimeCore: ed70bc4e24a2033406b1554ae834621e9fa2e016 + React-runtimeexecutor: 95dab70d12f30b7169ab82e425847f72a9e0a175 + React-RuntimeHermes: acdd1e00fd1566ba59ac0488ab77bb75cdc07ef3 + React-runtimescheduler: 5b07f7a468b2d17d31dd71d26472a41793267994 + React-timing: 0d80bae78f698446ce4c3300078e8189c2c4b04f + React-utils: 68f444a56df3fd6080a91840395d0bbaff764dba + React-webperformancenativemodule: 03a1e25807b8e315c2c13ed09f4b6f6ddf5f0787 + ReactAppDependencyProvider: 616652983836e8dec145adb270c9a997f46dbf9b + ReactCodegen: fbb48ce4afddc4b8944287a78a217bf777c98974 + ReactCommon: 26a853504bed63ccc005fe3299d89515aac9f25a + ReactNativeHost: e7e0a518b0120f0070b3e1f13c7006d3e0e8ee13 + ReactTestApp-DevSupport: 0520f3f0e6f13e2d915fc146389c855c94117c2b ReactTestApp-Resources: 8d72c3deef156833760694a288ff334af4d427d7 RNCAsyncStorage: 302f2fac014fd450046c120567ca364632da682b - RNReanimated: 2c2241d839b38b3ee258bc6c938adef91bc0d04f - RNSVG: 99882257fbebbfd40adb30890002babf82077f3c - RNWorklets: 98d1d1ebc96a15c4df64dd180153f3de0a53c4a3 + RNReanimated: 847bf389f5922c5b0f4c3900d5aabca03c142751 + RNSVG: 4f0391c299faf79b25290d6627077831be627ca0 + RNWorklets: c1945e44e33995242def9b302c765c6aeede5092 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 - Yoga: 00013dd9cde63a2d98e8002fcc4f5ddb66c10782 + Yoga: b3a8e8de88bf21eb845ecd38242b04ce48645074 PODFILE CHECKSUM: 6d7cbe03444d5e87210979fb32a0eca299d758fe diff --git a/apps/tester-federation-v2/android/gradle/wrapper/gradle-wrapper.properties b/apps/tester-federation-v2/android/gradle/wrapper/gradle-wrapper.properties index d4081da47..2a84e188b 100644 --- a/apps/tester-federation-v2/android/gradle/wrapper/gradle-wrapper.properties +++ b/apps/tester-federation-v2/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/apps/tester-federation-v2/configs/rspack.host-app.mts b/apps/tester-federation-v2/configs/rspack.host-app.mts index 25e695b8e..8ebb8852d 100644 --- a/apps/tester-federation-v2/configs/rspack.host-app.mts +++ b/apps/tester-federation-v2/configs/rspack.host-app.mts @@ -51,12 +51,12 @@ export default Repack.defineRspackConfig((env) => { react: { singleton: true, eager: true, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: true, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation-v2/configs/rspack.mini-app.mts b/apps/tester-federation-v2/configs/rspack.mini-app.mts index e7adf8baf..144f5818c 100644 --- a/apps/tester-federation-v2/configs/rspack.mini-app.mts +++ b/apps/tester-federation-v2/configs/rspack.mini-app.mts @@ -51,12 +51,12 @@ export default Repack.defineRspackConfig((env) => { react: { singleton: true, eager: false, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: false, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation-v2/configs/webpack.host-app.mts b/apps/tester-federation-v2/configs/webpack.host-app.mts index 31f245673..05d252d59 100644 --- a/apps/tester-federation-v2/configs/webpack.host-app.mts +++ b/apps/tester-federation-v2/configs/webpack.host-app.mts @@ -50,12 +50,12 @@ export default Repack.defineWebpackConfig((env) => { react: { singleton: true, eager: true, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: true, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation-v2/configs/webpack.mini-app.mts b/apps/tester-federation-v2/configs/webpack.mini-app.mts index 0e3bcf894..c341ec7e4 100644 --- a/apps/tester-federation-v2/configs/webpack.mini-app.mts +++ b/apps/tester-federation-v2/configs/webpack.mini-app.mts @@ -49,12 +49,12 @@ export default Repack.defineWebpackConfig((env) => { react: { singleton: true, eager: false, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: false, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation-v2/ios/Podfile.lock b/apps/tester-federation-v2/ios/Podfile.lock index 0462543f3..40fd1ed14 100644 --- a/apps/tester-federation-v2/ios/Podfile.lock +++ b/apps/tester-federation-v2/ios/Podfile.lock @@ -32,12 +32,12 @@ PODS: - Yoga - DoubleConversion (1.1.6) - fast_float (8.0.0) - - FBLazyVector (0.81.0) + - FBLazyVector (0.83.3) - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.81.0): - - hermes-engine/Pre-built (= 0.81.0) - - hermes-engine/Pre-built (0.81.0) + - hermes-engine (0.14.1): + - hermes-engine/Pre-built (= 0.14.1) + - hermes-engine/Pre-built (0.14.1) - JWTDecode (3.0.1) - RCT-Folly (2024.11.18.00): - boost @@ -58,27 +58,30 @@ PODS: - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - - RCTDeprecation (0.81.0) - - RCTRequired (0.81.0) - - RCTTypeSafety (0.81.0): - - FBLazyVector (= 0.81.0) - - RCTRequired (= 0.81.0) - - React-Core (= 0.81.0) - - React (0.81.0): - - React-Core (= 0.81.0) - - React-Core/DevSupport (= 0.81.0) - - React-Core/RCTWebSocket (= 0.81.0) - - React-RCTActionSheet (= 0.81.0) - - React-RCTAnimation (= 0.81.0) - - React-RCTBlob (= 0.81.0) - - React-RCTImage (= 0.81.0) - - React-RCTLinking (= 0.81.0) - - React-RCTNetwork (= 0.81.0) - - React-RCTSettings (= 0.81.0) - - React-RCTText (= 0.81.0) - - React-RCTVibration (= 0.81.0) - - React-callinvoker (0.81.0) - - React-Core (0.81.0): + - RCTDeprecation (0.83.3) + - RCTRequired (0.83.3) + - RCTSwiftUI (0.83.3) + - RCTSwiftUIWrapper (0.83.3): + - RCTSwiftUI + - RCTTypeSafety (0.83.3): + - FBLazyVector (= 0.83.3) + - RCTRequired (= 0.83.3) + - React-Core (= 0.83.3) + - React (0.83.3): + - React-Core (= 0.83.3) + - React-Core/DevSupport (= 0.83.3) + - React-Core/RCTWebSocket (= 0.83.3) + - React-RCTActionSheet (= 0.83.3) + - React-RCTAnimation (= 0.83.3) + - React-RCTBlob (= 0.83.3) + - React-RCTImage (= 0.83.3) + - React-RCTLinking (= 0.83.3) + - React-RCTNetwork (= 0.83.3) + - React-RCTSettings (= 0.83.3) + - React-RCTText (= 0.83.3) + - React-RCTVibration (= 0.83.3) + - React-callinvoker (0.83.3) + - React-Core (0.83.3): - boost - DoubleConversion - fast_float @@ -88,7 +91,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) + - React-Core/Default (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -103,7 +106,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/CoreModulesHeaders (0.81.0): + - React-Core/CoreModulesHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -128,7 +131,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/Default (0.81.0): + - React-Core/Default (0.83.3): - boost - DoubleConversion - fast_float @@ -152,7 +155,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/DevSupport (0.81.0): + - React-Core/DevSupport (0.83.3): - boost - DoubleConversion - fast_float @@ -162,8 +165,8 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) - - React-Core/RCTWebSocket (= 0.81.0) + - React-Core/Default (= 0.83.3) + - React-Core/RCTWebSocket (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -178,7 +181,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTActionSheetHeaders (0.81.0): + - React-Core/RCTActionSheetHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -203,7 +206,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTAnimationHeaders (0.81.0): + - React-Core/RCTAnimationHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -228,7 +231,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTBlobHeaders (0.81.0): + - React-Core/RCTBlobHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -253,7 +256,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTImageHeaders (0.81.0): + - React-Core/RCTImageHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -278,7 +281,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTLinkingHeaders (0.81.0): + - React-Core/RCTLinkingHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -303,7 +306,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTNetworkHeaders (0.81.0): + - React-Core/RCTNetworkHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -328,7 +331,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTSettingsHeaders (0.81.0): + - React-Core/RCTSettingsHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -353,7 +356,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTTextHeaders (0.81.0): + - React-Core/RCTTextHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -378,7 +381,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTVibrationHeaders (0.81.0): + - React-Core/RCTVibrationHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -403,7 +406,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTWebSocket (0.81.0): + - React-Core/RCTWebSocket (0.83.3): - boost - DoubleConversion - fast_float @@ -413,7 +416,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) + - React-Core/Default (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -428,7 +431,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-CoreModules (0.81.0): + - React-CoreModules (0.83.3): - boost - DoubleConversion - fast_float @@ -436,20 +439,22 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - RCTTypeSafety (= 0.81.0) - - React-Core/CoreModulesHeaders (= 0.81.0) - - React-jsi (= 0.81.0) + - RCTTypeSafety (= 0.83.3) + - React-Core/CoreModulesHeaders (= 0.83.3) + - React-debug + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.81.0) + - React-RCTImage (= 0.83.3) - React-runtimeexecutor + - React-utils - ReactCommon - SocketRocket - - React-cxxreact (0.81.0): + - React-cxxreact (0.83.3): - boost - DoubleConversion - fast_float @@ -458,19 +463,20 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-debug (= 0.81.0) - - React-jsi (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-debug (= 0.83.3) + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) - React-runtimeexecutor - - React-timing (= 0.81.0) + - React-timing (= 0.83.3) + - React-utils - SocketRocket - - React-debug (0.81.0) - - React-defaultsnativemodule (0.81.0): + - React-debug (0.83.3) + - React-defaultsnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -480,14 +486,18 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-domnativemodule + - React-featureflags - React-featureflagsnativemodule - React-idlecallbacksnativemodule + - React-intersectionobservernativemodule - React-jsi - React-jsiexecutor - React-microtasksnativemodule - React-RCTFBReactNativeSpec + - React-webperformancenativemodule - SocketRocket - - React-domnativemodule (0.81.0): + - Yoga + - React-domnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -507,7 +517,51 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric (0.81.0): + - React-Fabric (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animated (= 0.83.3) + - React-Fabric/animationbackend (= 0.83.3) + - React-Fabric/animations (= 0.83.3) + - React-Fabric/attributedstring (= 0.83.3) + - React-Fabric/bridging (= 0.83.3) + - React-Fabric/componentregistry (= 0.83.3) + - React-Fabric/componentregistrynative (= 0.83.3) + - React-Fabric/components (= 0.83.3) + - React-Fabric/consistency (= 0.83.3) + - React-Fabric/core (= 0.83.3) + - React-Fabric/dom (= 0.83.3) + - React-Fabric/imagemanager (= 0.83.3) + - React-Fabric/leakchecker (= 0.83.3) + - React-Fabric/mounting (= 0.83.3) + - React-Fabric/observers (= 0.83.3) + - React-Fabric/scheduler (= 0.83.3) + - React-Fabric/telemetry (= 0.83.3) + - React-Fabric/templateprocessor (= 0.83.3) + - React-Fabric/uimanager (= 0.83.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/animated (0.83.3): - boost - DoubleConversion - fast_float @@ -521,23 +575,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.81.0) - - React-Fabric/attributedstring (= 0.81.0) - - React-Fabric/bridging (= 0.81.0) - - React-Fabric/componentregistry (= 0.81.0) - - React-Fabric/componentregistrynative (= 0.81.0) - - React-Fabric/components (= 0.81.0) - - React-Fabric/consistency (= 0.81.0) - - React-Fabric/core (= 0.81.0) - - React-Fabric/dom (= 0.81.0) - - React-Fabric/imagemanager (= 0.81.0) - - React-Fabric/leakchecker (= 0.81.0) - - React-Fabric/mounting (= 0.81.0) - - React-Fabric/observers (= 0.81.0) - - React-Fabric/scheduler (= 0.81.0) - - React-Fabric/telemetry (= 0.81.0) - - React-Fabric/templateprocessor (= 0.81.0) - - React-Fabric/uimanager (= 0.81.0) - React-featureflags - React-graphics - React-jsi @@ -549,7 +586,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animations (0.81.0): + - React-Fabric/animationbackend (0.83.3): - boost - DoubleConversion - fast_float @@ -574,7 +611,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/attributedstring (0.81.0): + - React-Fabric/animations (0.83.3): - boost - DoubleConversion - fast_float @@ -599,7 +636,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/bridging (0.81.0): + - React-Fabric/attributedstring (0.83.3): - boost - DoubleConversion - fast_float @@ -624,7 +661,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistry (0.81.0): + - React-Fabric/bridging (0.83.3): - boost - DoubleConversion - fast_float @@ -649,7 +686,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistrynative (0.81.0): + - React-Fabric/componentregistry (0.83.3): - boost - DoubleConversion - fast_float @@ -674,7 +711,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components (0.81.0): + - React-Fabric/componentregistrynative (0.83.3): - boost - DoubleConversion - fast_float @@ -688,10 +725,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.81.0) - - React-Fabric/components/root (= 0.81.0) - - React-Fabric/components/scrollview (= 0.81.0) - - React-Fabric/components/view (= 0.81.0) - React-featureflags - React-graphics - React-jsi @@ -703,7 +736,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/legacyviewmanagerinterop (0.81.0): + - React-Fabric/components (0.83.3): - boost - DoubleConversion - fast_float @@ -717,6 +750,10 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.83.3) + - React-Fabric/components/root (= 0.83.3) + - React-Fabric/components/scrollview (= 0.83.3) + - React-Fabric/components/view (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -728,7 +765,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/root (0.81.0): + - React-Fabric/components/legacyviewmanagerinterop (0.83.3): - boost - DoubleConversion - fast_float @@ -753,7 +790,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/scrollview (0.81.0): + - React-Fabric/components/root (0.83.3): - boost - DoubleConversion - fast_float @@ -778,7 +815,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/view (0.81.0): + - React-Fabric/components/scrollview (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/components/view (0.83.3): - boost - DoubleConversion - fast_float @@ -805,7 +867,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric/consistency (0.81.0): + - React-Fabric/consistency (0.83.3): - boost - DoubleConversion - fast_float @@ -830,7 +892,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/core (0.81.0): + - React-Fabric/core (0.83.3): - boost - DoubleConversion - fast_float @@ -855,7 +917,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/dom (0.81.0): + - React-Fabric/dom (0.83.3): - boost - DoubleConversion - fast_float @@ -880,7 +942,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/imagemanager (0.81.0): + - React-Fabric/imagemanager (0.83.3): - boost - DoubleConversion - fast_float @@ -905,7 +967,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/leakchecker (0.81.0): + - React-Fabric/leakchecker (0.83.3): - boost - DoubleConversion - fast_float @@ -930,7 +992,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/mounting (0.81.0): + - React-Fabric/mounting (0.83.3): - boost - DoubleConversion - fast_float @@ -955,7 +1017,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers (0.81.0): + - React-Fabric/observers (0.83.3): - boost - DoubleConversion - fast_float @@ -969,7 +1031,8 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.81.0) + - React-Fabric/observers/events (= 0.83.3) + - React-Fabric/observers/intersection (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -981,7 +1044,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers/events (0.81.0): + - React-Fabric/observers/events (0.83.3): - boost - DoubleConversion - fast_float @@ -1006,7 +1069,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/scheduler (0.81.0): + - React-Fabric/observers/intersection (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/scheduler (0.83.3): - boost - DoubleConversion - fast_float @@ -1026,6 +1114,7 @@ PODS: - React-jsi - React-jsiexecutor - React-logger + - React-performancecdpmetrics - React-performancetimeline - React-rendererdebug - React-runtimeexecutor @@ -1033,7 +1122,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/telemetry (0.81.0): + - React-Fabric/telemetry (0.83.3): - boost - DoubleConversion - fast_float @@ -1058,7 +1147,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/templateprocessor (0.81.0): + - React-Fabric/templateprocessor (0.83.3): - boost - DoubleConversion - fast_float @@ -1083,7 +1172,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager (0.81.0): + - React-Fabric/uimanager (0.83.3): - boost - DoubleConversion - fast_float @@ -1097,7 +1186,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.81.0) + - React-Fabric/uimanager/consistency (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1110,7 +1199,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager/consistency (0.81.0): + - React-Fabric/uimanager/consistency (0.83.3): - boost - DoubleConversion - fast_float @@ -1136,7 +1225,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-FabricComponents (0.81.0): + - React-FabricComponents (0.83.3): - boost - DoubleConversion - fast_float @@ -1151,8 +1240,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.81.0) - - React-FabricComponents/textlayoutmanager (= 0.81.0) + - React-FabricComponents/components (= 0.83.3) + - React-FabricComponents/textlayoutmanager (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1165,7 +1254,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components (0.81.0): + - React-FabricComponents/components (0.83.3): - boost - DoubleConversion - fast_float @@ -1180,16 +1269,18 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.81.0) - - React-FabricComponents/components/iostextinput (= 0.81.0) - - React-FabricComponents/components/modal (= 0.81.0) - - React-FabricComponents/components/rncore (= 0.81.0) - - React-FabricComponents/components/safeareaview (= 0.81.0) - - React-FabricComponents/components/scrollview (= 0.81.0) - - React-FabricComponents/components/text (= 0.81.0) - - React-FabricComponents/components/textinput (= 0.81.0) - - React-FabricComponents/components/unimplementedview (= 0.81.0) - - React-FabricComponents/components/virtualview (= 0.81.0) + - React-FabricComponents/components/inputaccessory (= 0.83.3) + - React-FabricComponents/components/iostextinput (= 0.83.3) + - React-FabricComponents/components/modal (= 0.83.3) + - React-FabricComponents/components/rncore (= 0.83.3) + - React-FabricComponents/components/safeareaview (= 0.83.3) + - React-FabricComponents/components/scrollview (= 0.83.3) + - React-FabricComponents/components/switch (= 0.83.3) + - React-FabricComponents/components/text (= 0.83.3) + - React-FabricComponents/components/textinput (= 0.83.3) + - React-FabricComponents/components/unimplementedview (= 0.83.3) + - React-FabricComponents/components/virtualview (= 0.83.3) + - React-FabricComponents/components/virtualviewexperimental (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1202,7 +1293,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/inputaccessory (0.81.0): + - React-FabricComponents/components/inputaccessory (0.83.3): - boost - DoubleConversion - fast_float @@ -1229,7 +1320,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/iostextinput (0.81.0): + - React-FabricComponents/components/iostextinput (0.83.3): - boost - DoubleConversion - fast_float @@ -1256,7 +1347,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/modal (0.81.0): + - React-FabricComponents/components/modal (0.83.3): - boost - DoubleConversion - fast_float @@ -1283,7 +1374,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/rncore (0.81.0): + - React-FabricComponents/components/rncore (0.83.3): - boost - DoubleConversion - fast_float @@ -1310,7 +1401,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/safeareaview (0.81.0): + - React-FabricComponents/components/safeareaview (0.83.3): - boost - DoubleConversion - fast_float @@ -1337,7 +1428,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/scrollview (0.81.0): + - React-FabricComponents/components/scrollview (0.83.3): - boost - DoubleConversion - fast_float @@ -1364,7 +1455,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/text (0.81.0): + - React-FabricComponents/components/switch (0.83.3): - boost - DoubleConversion - fast_float @@ -1391,7 +1482,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/textinput (0.81.0): + - React-FabricComponents/components/text (0.83.3): - boost - DoubleConversion - fast_float @@ -1418,7 +1509,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/unimplementedview (0.81.0): + - React-FabricComponents/components/textinput (0.83.3): - boost - DoubleConversion - fast_float @@ -1445,7 +1536,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualview (0.81.0): + - React-FabricComponents/components/unimplementedview (0.83.3): - boost - DoubleConversion - fast_float @@ -1472,7 +1563,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/textlayoutmanager (0.81.0): + - React-FabricComponents/components/virtualview (0.83.3): - boost - DoubleConversion - fast_float @@ -1499,7 +1590,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricImage (0.81.0): + - React-FabricComponents/components/virtualviewexperimental (0.83.3): - boost - DoubleConversion - fast_float @@ -1508,21 +1599,75 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - RCTRequired (= 0.81.0) - - RCTTypeSafety (= 0.81.0) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-RCTFBReactNativeSpec + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-FabricComponents/textlayoutmanager (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-RCTFBReactNativeSpec + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-FabricImage (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired (= 0.83.3) + - RCTTypeSafety (= 0.83.3) - React-Fabric - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.81.0) + - React-jsiexecutor (= 0.83.3) - React-logger - React-rendererdebug - React-utils - ReactCommon - SocketRocket - Yoga - - React-featureflags (0.81.0): + - React-featureflags (0.83.3): - boost - DoubleConversion - fast_float @@ -1531,7 +1676,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-featureflagsnativemodule (0.81.0): + - React-featureflagsnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1546,7 +1691,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - SocketRocket - - React-graphics (0.81.0): + - React-graphics (0.83.3): - boost - DoubleConversion - fast_float @@ -1559,7 +1704,7 @@ PODS: - React-jsiexecutor - React-utils - SocketRocket - - React-hermes (0.81.0): + - React-hermes (0.83.3): - boost - DoubleConversion - fast_float @@ -1568,16 +1713,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) + - React-cxxreact (= 0.83.3) - React-jsi - - React-jsiexecutor (= 0.81.0) + - React-jsiexecutor (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-oscompat + - React-perflogger (= 0.83.3) - React-runtimeexecutor - SocketRocket - - React-idlecallbacksnativemodule (0.81.0): + - React-idlecallbacksnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1593,7 +1739,7 @@ PODS: - React-runtimescheduler - ReactCommon/turbomodule/core - SocketRocket - - React-ImageManager (0.81.0): + - React-ImageManager (0.83.3): - boost - DoubleConversion - fast_float @@ -1608,7 +1754,28 @@ PODS: - React-rendererdebug - React-utils - SocketRocket - - React-jserrorhandler (0.81.0): + - React-intersectionobservernativemodule (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-Fabric + - React-Fabric/bridging + - React-graphics + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - React-runtimescheduler + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-jserrorhandler (0.83.3): - boost - DoubleConversion - fast_float @@ -1623,7 +1790,7 @@ PODS: - React-jsi - ReactCommon/turbomodule/bridging - SocketRocket - - React-jsi (0.81.0): + - React-jsi (0.83.3): - boost - DoubleConversion - fast_float @@ -1633,7 +1800,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsiexecutor (0.81.0): + - React-jsiexecutor (0.83.3): - boost - DoubleConversion - fast_float @@ -1642,15 +1809,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) + - React-cxxreact + - React-debug + - React-jsi - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-perflogger - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspector (0.81.0): + - React-jsinspector (0.83.3): - boost - DoubleConversion - fast_float @@ -1664,10 +1833,12 @@ PODS: - React-jsinspectorcdp - React-jsinspectornetwork - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-oscompat + - React-perflogger (= 0.83.3) - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspectorcdp (0.81.0): + - React-jsinspectorcdp (0.83.3): - boost - DoubleConversion - fast_float @@ -1676,7 +1847,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsinspectornetwork (0.81.0): + - React-jsinspectornetwork (0.83.3): - boost - DoubleConversion - fast_float @@ -1684,23 +1855,23 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-featureflags - React-jsinspectorcdp - - React-performancetimeline - - React-timing - SocketRocket - - React-jsinspectortracing (0.81.0): + - React-jsinspectortracing (0.83.3): - boost - DoubleConversion - fast_float - fmt - glog + - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - React-jsi + - React-jsinspectornetwork - React-oscompat - React-timing - SocketRocket - - React-jsitooling (0.81.0): + - React-jsitooling (0.83.3): - boost - DoubleConversion - fast_float @@ -1708,16 +1879,18 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) + - React-cxxreact (= 0.83.3) + - React-debug + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsitracing (0.81.0): + - React-jsitracing (0.83.3): - React-jsi - - React-logger (0.81.0): + - React-logger (0.83.3): - boost - DoubleConversion - fast_float @@ -1726,7 +1899,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-Mapbuffer (0.81.0): + - React-Mapbuffer (0.83.3): - boost - DoubleConversion - fast_float @@ -1736,7 +1909,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-microtasksnativemodule (0.81.0): + - React-microtasksnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1837,7 +2010,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-NativeModulesApple (0.81.0): + - React-NativeModulesApple (0.83.3): - boost - DoubleConversion - fast_float @@ -1849,6 +2022,7 @@ PODS: - React-callinvoker - React-Core - React-cxxreact + - React-debug - React-featureflags - React-jsi - React-jsinspector @@ -1857,8 +2031,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - React-oscompat (0.81.0) - - React-perflogger (0.81.0): + - React-networking (0.83.3): - boost - DoubleConversion - fast_float @@ -1866,8 +2039,37 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric + - React-featureflags + - React-jsinspectornetwork + - React-jsinspectortracing + - React-performancetimeline + - React-timing - SocketRocket - - React-performancetimeline (0.81.0): + - React-oscompat (0.83.3) + - React-perflogger (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-performancecdpmetrics (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-jsi + - React-performancetimeline + - React-runtimeexecutor + - React-timing + - SocketRocket + - React-performancetimeline (0.83.3): - boost - DoubleConversion - fast_float @@ -1880,9 +2082,9 @@ PODS: - React-perflogger - React-timing - SocketRocket - - React-RCTActionSheet (0.81.0): - - React-Core/RCTActionSheetHeaders (= 0.81.0) - - React-RCTAnimation (0.81.0): + - React-RCTActionSheet (0.83.3): + - React-Core/RCTActionSheetHeaders (= 0.83.3) + - React-RCTAnimation (0.83.3): - boost - DoubleConversion - fast_float @@ -1898,7 +2100,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTAppDelegate (0.81.0): + - React-RCTAppDelegate (0.83.3): - boost - DoubleConversion - fast_float @@ -1932,7 +2134,7 @@ PODS: - React-utils - ReactCommon - SocketRocket - - React-RCTBlob (0.81.0): + - React-RCTBlob (0.83.3): - boost - DoubleConversion - fast_float @@ -1951,7 +2153,7 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTFabric (0.81.0): + - React-RCTFabric (0.83.3): - boost - DoubleConversion - fast_float @@ -1960,6 +2162,7 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - RCTSwiftUIWrapper - React-Core - React-debug - React-Fabric @@ -1971,8 +2174,9 @@ PODS: - React-jsi - React-jsinspector - React-jsinspectorcdp - - React-jsinspectornetwork - React-jsinspectortracing + - React-networking + - React-performancecdpmetrics - React-performancetimeline - React-RCTAnimation - React-RCTFBReactNativeSpec @@ -1986,7 +2190,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-RCTFBReactNativeSpec (0.81.0): + - React-RCTFBReactNativeSpec (0.83.3): - boost - DoubleConversion - fast_float @@ -2000,10 +2204,10 @@ PODS: - React-Core - React-jsi - React-NativeModulesApple - - React-RCTFBReactNativeSpec/components (= 0.81.0) + - React-RCTFBReactNativeSpec/components (= 0.83.3) - ReactCommon - SocketRocket - - React-RCTFBReactNativeSpec/components (0.81.0): + - React-RCTFBReactNativeSpec/components (0.83.3): - boost - DoubleConversion - fast_float @@ -2026,7 +2230,7 @@ PODS: - ReactCommon - SocketRocket - Yoga - - React-RCTImage (0.81.0): + - React-RCTImage (0.83.3): - boost - DoubleConversion - fast_float @@ -2042,14 +2246,14 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTLinking (0.81.0): - - React-Core/RCTLinkingHeaders (= 0.81.0) - - React-jsi (= 0.81.0) + - React-RCTLinking (0.83.3): + - React-Core/RCTLinkingHeaders (= 0.83.3) + - React-jsi (= 0.83.3) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.81.0) - - React-RCTNetwork (0.81.0): + - ReactCommon/turbomodule/core (= 0.83.3) + - React-RCTNetwork (0.83.3): - boost - DoubleConversion - fast_float @@ -2059,15 +2263,17 @@ PODS: - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTNetworkHeaders + - React-debug - React-featureflags - React-jsi - React-jsinspectorcdp - React-jsinspectornetwork - React-NativeModulesApple + - React-networking - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTRuntime (0.81.0): + - React-RCTRuntime (0.83.3): - boost - DoubleConversion - fast_float @@ -2077,6 +2283,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-Core + - React-debug - React-jsi - React-jsinspector - React-jsinspectorcdp @@ -2086,8 +2293,9 @@ PODS: - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes + - React-utils - SocketRocket - - React-RCTSettings (0.81.0): + - React-RCTSettings (0.83.3): - boost - DoubleConversion - fast_float @@ -2102,10 +2310,10 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTText (0.81.0): - - React-Core/RCTTextHeaders (= 0.81.0) + - React-RCTText (0.83.3): + - React-Core/RCTTextHeaders (= 0.83.3) - Yoga - - React-RCTVibration (0.81.0): + - React-RCTVibration (0.83.3): - boost - DoubleConversion - fast_float @@ -2119,11 +2327,11 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-rendererconsistency (0.81.0) - - React-renderercss (0.81.0): + - React-rendererconsistency (0.83.3) + - React-renderercss (0.83.3): - React-debug - React-utils - - React-rendererdebug (0.81.0): + - React-rendererdebug (0.83.3): - boost - DoubleConversion - fast_float @@ -2133,7 +2341,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-RuntimeApple (0.81.0): + - React-RuntimeApple (0.83.3): - boost - DoubleConversion - fast_float @@ -2162,7 +2370,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-RuntimeCore (0.81.0): + - React-RuntimeCore (0.83.3): - boost - DoubleConversion - fast_float @@ -2184,7 +2392,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-runtimeexecutor (0.81.0): + - React-runtimeexecutor (0.83.3): - boost - DoubleConversion - fast_float @@ -2194,10 +2402,10 @@ PODS: - RCT-Folly/Fabric - React-debug - React-featureflags - - React-jsi (= 0.81.0) + - React-jsi (= 0.83.3) - React-utils - SocketRocket - - React-RuntimeHermes (0.81.0): + - React-RuntimeHermes (0.83.3): - boost - DoubleConversion - fast_float @@ -2218,7 +2426,7 @@ PODS: - React-runtimeexecutor - React-utils - SocketRocket - - React-runtimescheduler (0.81.0): + - React-runtimescheduler (0.83.3): - boost - DoubleConversion - fast_float @@ -2240,8 +2448,9 @@ PODS: - React-timing - React-utils - SocketRocket - - React-timing (0.81.0) - - React-utils (0.81.0): + - React-timing (0.83.3): + - React-debug + - React-utils (0.83.3): - boost - DoubleConversion - fast_float @@ -2251,11 +2460,28 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-debug - - React-jsi (= 0.81.0) + - React-jsi (= 0.83.3) + - SocketRocket + - React-webperformancenativemodule (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-jsi + - React-jsiexecutor + - React-performancetimeline + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - ReactCommon/turbomodule/core - SocketRocket - - ReactAppDependencyProvider (0.81.0): + - ReactAppDependencyProvider (0.83.3): - ReactCodegen - - ReactCodegen (0.81.0): + - ReactCodegen (0.83.3): - boost - DoubleConversion - fast_float @@ -2281,7 +2507,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - ReactCommon (0.81.0): + - ReactCommon (0.83.3): - boost - DoubleConversion - fast_float @@ -2289,9 +2515,9 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - ReactCommon/turbomodule (= 0.81.0) + - ReactCommon/turbomodule (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule (0.81.0): + - ReactCommon/turbomodule (0.83.3): - boost - DoubleConversion - fast_float @@ -2300,15 +2526,15 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) - - ReactCommon/turbomodule/bridging (= 0.81.0) - - ReactCommon/turbomodule/core (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) + - ReactCommon/turbomodule/bridging (= 0.83.3) + - ReactCommon/turbomodule/core (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule/bridging (0.81.0): + - ReactCommon/turbomodule/bridging (0.83.3): - boost - DoubleConversion - fast_float @@ -2317,13 +2543,13 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule/core (0.81.0): + - ReactCommon/turbomodule/core (0.83.3): - boost - DoubleConversion - fast_float @@ -2332,16 +2558,16 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-debug (= 0.81.0) - - React-featureflags (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) - - React-utils (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-debug (= 0.83.3) + - React-featureflags (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) + - React-utils (= 0.83.3) - SocketRocket - - ReactNativeHost (0.5.11): + - ReactNativeHost (0.5.16): - boost - DoubleConversion - fast_float @@ -2371,7 +2597,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - ReactTestApp-DevSupport (4.4.7): + - ReactTestApp-DevSupport (5.1.0): - React-Core - React-jsi - RNCAsyncStorage (2.2.0): @@ -2479,6 +2705,8 @@ DEPENDENCIES: - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) - RCTRequired (from `../node_modules/react-native/Libraries/Required`) + - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`) + - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) @@ -2498,6 +2726,7 @@ DEPENDENCIES: - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) + - React-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`) - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) @@ -2512,8 +2741,10 @@ DEPENDENCIES: - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) + - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`) - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`) - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) @@ -2538,10 +2769,11 @@ 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`) + - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`) + - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`) + - ReactCodegen (from `build/generated/ios/ReactCodegen`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - - "ReactNativeHost (from `../../../node_modules/.pnpm/react-native-test-app@4.4.7_react-native@0.81.0_@babel+core@7.25.2_@react-native-community+cl_ewtjfzw7qct7nbxbklxsged2ea/node_modules/@rnx-kit/react-native-host`)" + - "ReactNativeHost (from `../../../node_modules/.pnpm/react-native-test-app@5.1.0_react-native@0.83.3_@babel+core@7.25.2_@react-native-community+cl_z76kjirq25hld6vveima5ikg7u/node_modules/@rnx-kit/react-native-host`)" - ReactTestApp-DevSupport (from `../node_modules/react-native-test-app`) - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" - RNScreens (from `../node_modules/react-native-screens`) @@ -2571,13 +2803,17 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2025-07-07-RNv0.81.0-e0fc67142ec0763c6b6153ca2bf96df815539782 + :tag: hermes-v0.14.1 RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" RCTRequired: :path: "../node_modules/react-native/Libraries/Required" + RCTSwiftUI: + :path: "../node_modules/react-native/ReactApple/RCTSwiftUI" + RCTSwiftUIWrapper: + :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: @@ -2614,6 +2850,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" + React-intersectionobservernativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver" React-jserrorhandler: :path: "../node_modules/react-native/ReactCommon/jserrorhandler" React-jsi: @@ -2642,10 +2880,14 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-safe-area-context" React-NativeModulesApple: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" + React-networking: + :path: "../node_modules/react-native/ReactCommon/react/networking" React-oscompat: :path: "../node_modules/react-native/ReactCommon/oscompat" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancecdpmetrics: + :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics" React-performancetimeline: :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" React-RCTActionSheet: @@ -2694,14 +2936,16 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/timing" React-utils: :path: "../node_modules/react-native/ReactCommon/react/utils" + React-webperformancenativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance" ReactAppDependencyProvider: - :path: build/generated/ios + :path: build/generated/ios/ReactAppDependencyProvider ReactCodegen: - :path: build/generated/ios + :path: build/generated/ios/ReactCodegen ReactCommon: :path: "../node_modules/react-native/ReactCommon" ReactNativeHost: - :path: "../../../node_modules/.pnpm/react-native-test-app@4.4.7_react-native@0.81.0_@babel+core@7.25.2_@react-native-community+cl_ewtjfzw7qct7nbxbklxsged2ea/node_modules/@rnx-kit/react-native-host" + :path: "../../../node_modules/.pnpm/react-native-test-app@5.1.0_react-native@0.83.3_@babel+core@7.25.2_@react-native-community+cl_z76kjirq25hld6vveima5ikg7u/node_modules/@rnx-kit/react-native-host" ReactTestApp-DevSupport: :path: "../node_modules/react-native-test-app" RNCAsyncStorage: @@ -2716,82 +2960,88 @@ SPEC CHECKSUMS: callstack-repack: d2b994c81bca9047cfd550b1a760421c8868c1a3 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 - FBLazyVector: a867936a67af0d09c37935a1b900a1a3c795b6d1 + FBLazyVector: fc9809f68c51849ba5be77326c255b83db74b8a1 fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 - hermes-engine: e7491a2038f2618c8cd444ed411a6deb350a3742 + hermes-engine: 6b41850af20c45e6301453a5c9b3ee33d9263d0a JWTDecode: 2eed97c2fa46ccaf3049a787004eedf0be474a87 RCT-Folly: 59ec0ac1f2f39672a0c6e6cecdd39383b764646f - RCTDeprecation: 0735ab4f6b3ec93a7f98187b5da74d7916e2cf4c - RCTRequired: 8fcc7801bfc433072287b0f24a662e2816e89d0c - RCTTypeSafety: 2b2be515d6b968bcba7a68c4179d8199bd8c9b58 - React: 1000c0e96d8fb9fbdaf13f7d31d0b09db3cbb4ac - React-callinvoker: 7e52661bfaf5d8881a9cee049792627a00001fbe - React-Core: a9128dd77ec52432727bfbec8c55d17189f6c039 - React-CoreModules: 4597116bd78ae2b183547e3700be0dc9537918e9 - React-cxxreact: e3a02f535cc1f1b547ac1baafe6ac25552352362 - React-debug: 7a23d96f709f437c5e08973d6e06d0a54dd180a1 - React-defaultsnativemodule: f01b6e58a23efe4fc8d74db7dadeea112908f5d5 - React-domnativemodule: 2d9796d40ab675e0f91ae8aae26c796b6e9a7499 - React-Fabric: f4344b3a882292783de9a5404852023b6c4fdd2d - React-FabricComponents: 7c51eb1619473ae3ed92d8bbf5d5dd3be0c5ef9d - React-FabricImage: 9e743575e67a9c14242bec3ae0e26663eed641bb - React-featureflags: 5188951cc2fc81f4d249dc37e8f96dca7ef50e96 - React-featureflagsnativemodule: 0fa7473065377ca4e5651c75614796326ef57aa8 - React-graphics: f65ecd0a8c70f9c7dcdae322851c19b21c83ec27 - React-hermes: 8418dae38a0513aa66aaa0a1b0904e55c4448644 - React-idlecallbacksnativemodule: 540d6f743fcb595b26da8b182b28c878a1176a96 - React-ImageManager: 5f9f1e33611a852d21a63e1de76d211fb04ac935 - React-jserrorhandler: 9c0a7d69cd07c9ae08fab3a61150d526c0174c83 - React-jsi: b711b7a11d77357beb95fa2eabd30c1ae34dcf40 - React-jsiexecutor: 0d1c78e666c5be71ff7c0ff5ea7fb043e5b1f14c - React-jsinspector: 5fabd9f0be9390d5b5eb5fc88a8965d97e0c14ac - React-jsinspectorcdp: e78c65e25253999c0efd5e23c99e649e02fd0244 - React-jsinspectornetwork: b02c6f7fe00e12b575a7faea0ed9ec9ddbc1c20f - React-jsinspectortracing: c6d8da3c8bcd939b8dcfd5113e247d56af932e1b - React-jsitooling: 4ca9b158d65909590daf6bf30a345b663eb71964 - React-jsitracing: d9e9378d5a3e05febea2164a5d0c5fab06492872 - React-logger: 839abfd18a3fbdf88132824de584b226d0c5cbce - React-Mapbuffer: bd5b1120c9bbaac6203eb288735e239f04e03009 - React-microtasksnativemodule: 10892b00e612d79436022a11e5bc8bdf468a284f + RCTDeprecation: 5b820e4173338406a389434c2b79b84ec3b17e26 + RCTRequired: 10f9df44a97f776fa100b21de237605e77558003 + RCTSwiftUI: f39ca8a94156ffc21fe32cd698d0526aea96ac67 + RCTSwiftUIWrapper: 9dd1885803ebb68ef067c201456b855b94cf39b1 + RCTTypeSafety: 5a9a574c62ef181c9ab4f8939beae05fd7e4295b + React: d2e915c0695e4aab827878e1291f3c08bcc78c37 + React-callinvoker: 33672f1ad938395b7859532cb4901701be59e951 + React-Core: b1bbda65681b4a033367194ffdf90a800b31826b + React-CoreModules: 28692a4bacc81606d54032b115bf2a973d9ffa48 + React-cxxreact: 08dd10045b7b08032f0f55ea82c4abe923f20906 + React-debug: fb5fa668cbcce4c16165f911cdb18c95965f6931 + React-defaultsnativemodule: 0a5b70bb3b8e0b8564271d058238dda3f055fc56 + React-domnativemodule: 5dc7e81f73aa1ca6e6077e9d8906d0a4cb235ca1 + React-Fabric: 90d48592ac3945e6e8ccbd8548702acf7173e00d + React-FabricComponents: 1bc2689420ad8253db5001d65f40fcc25a074131 + React-FabricImage: 2893e6e98ffe5473629f9620bbbae54257b5c553 + React-featureflags: c2aff1a0fb1952c295ae3df3f915d0e38010f564 + React-featureflagsnativemodule: 43b4bff6bf7e6cf7295a867619e16c41a36534bc + React-graphics: 953b125bad116068b99f11e0bbb5b6c37dc49459 + React-hermes: 17017df3cfd34f7bb2082d1c99707f31682352b9 + React-idlecallbacksnativemodule: e89c2d781f3877a5528090cb65aae4f7943bf44b + React-ImageManager: 523d45e72dd34d99e81a245f76d170c11090a7e6 + React-intersectionobservernativemodule: efc31ecef5585394e4d3681f12e81782c1fd9a75 + React-jserrorhandler: f6fcc82e42bc16a1f411910d5e884d50424162e1 + React-jsi: 881d0973e4115de4fe7514c40c517112dd87bdf2 + React-jsiexecutor: 3135e7fbf876bad9214a8f1b11e12e9757355157 + React-jsinspector: 4695c82b7ab08cb5b8aa2562a29f6be6b74ce853 + React-jsinspectorcdp: 1701bedb021c919973cc106c6cf289d594ba0092 + React-jsinspectornetwork: 35e3009efe406c8dc51d0f9559e77e4147fbc396 + React-jsinspectortracing: 89daa2c4ec61e50886fc6fcf612640a92c45a331 + React-jsitooling: 3469c471c81831d143f0c80b29fa1783b68a540f + React-jsitracing: 35b798866b4fb1ec674ac34e884af4f04b980a82 + React-logger: 6eabdaf76fbf47f97cb984034e78f7f94c598935 + React-Mapbuffer: 59f2b773f64fca9ab6facd443657c77ac992669a + React-microtasksnativemodule: 1c7ccce743f1347261dbc699d6a41cd45c392d2d react-native-safe-area-context: 6d8a7b750e496e37bda47c938320bf2c734d441f - React-NativeModulesApple: 3f9e97a4a90eeec1ceade511f973b277632650bb - React-oscompat: 34f3d3c06cadcbc470bc4509c717fb9b919eaa8b - React-perflogger: 95dff8cc9901777360716cbdcb2998849f133a4f - React-performancetimeline: 2937a27399b52ca8baf46f22c39087f617e626b5 - React-RCTActionSheet: 550c9c6c2e7dcd85a51954dc08e2f3837a148e7c - React-RCTAnimation: 0008bfe273566acd3128da13598073383325ac7a - React-RCTAppDelegate: 8b9452baef5548856a22f4710d4135cf68746cf5 - React-RCTBlob: 60006ab743e5fd807aaf536092f5ce86e87df526 - React-RCTFabric: 8d5d1006b3812c35fd0f37c117ff7bcf6449e20d - React-RCTFBReactNativeSpec: 3cb4265fa9a4e4f8250ae89feb345edc542731da - React-RCTImage: f40a2ee0f79c1666e8b81da4ea2d9d1182c94962 - React-RCTLinking: cfe6995bdd8d08d0bb0df12771f4d28fd5fd54ff - React-RCTNetwork: 565c0cd46313f2cad0e4db70a44958b2842c372b - React-RCTRuntime: 971a71a42d8979475a380e5179083302e5506cdd - React-RCTSettings: afcec6060d916e9c0410004ad8419d45f9dbcd36 - React-RCTText: 952f2a1b618d3f3872e7e5a82aefc5e5082c59aa - React-RCTVibration: 2a7e7497ffefa135c7f0fee8ee10e3505ab5cc61 - React-rendererconsistency: c2cb23365f4a7b511893748fe8cad1830bbae637 - React-renderercss: 621b2b85af14694e93c2bcd63986fb57bcceab2e - React-rendererdebug: 4ba0769131e20347b900757fcac3c7919b27080c - React-RuntimeApple: c1a211351c14d35805d45a94094cfb3e5649552c - React-RuntimeCore: b7c7d8dffa3728a9e9616e0e8b5b6b41037ebcca - React-runtimeexecutor: e931e48afc888fe459f6ffb481971e23bb34f7ee - React-RuntimeHermes: 5763230801ee57d9f414818f48e44b874f3ce1be - React-runtimescheduler: b2e99f9702705fc8c11cf3c51f9911f478ee2210 - React-timing: 25e8229ad1cf6874e9f0711515213cb2bc322215 - React-utils: 7ea6e4d300c43a763e4e08091413aec962588f93 - ReactAppDependencyProvider: 562d731311d0524a577cf8a01faa97874bacbdfe - ReactCodegen: ee1afddd0b9416db28c0d7f442890f38116ef6d2 - ReactCommon: c235ebd26d63fde9a2dfa72cee9f8294b910fee1 - ReactNativeHost: 6977837691a2084827c650fc23181eebc54ad9e1 - ReactTestApp-DevSupport: 6994b53b5b81139a8ce63e0776c726c95de079a1 + React-NativeModulesApple: 4a853d23adcfc688a83fa00048e170d865a162c8 + React-networking: dc6548f9ea922a4781f0c5490e78fbda614062a5 + React-oscompat: 4c2d9e85075ddcca7b7a61695ac8f3537f7134fb + React-perflogger: 5b36ec5529b43a3888f8a1852149c217a7003db5 + React-performancecdpmetrics: 346dbe8cacc410212ffbfd1c387c3f8a173ccfe9 + React-performancetimeline: 27a0b9f711729e8ed0de35ee964abc120f35bf1e + React-RCTActionSheet: b51142b04a248640143632f8ceadcb70e9cd574c + React-RCTAnimation: 77f173f29e748dccac93c659db9a761828dd9d9d + React-RCTAppDelegate: d0f09f429eef200d0e1167d0dd539497926d8323 + React-RCTBlob: d47ade560e5dd80ddcf9e34bf3043c5366c008eb + React-RCTFabric: 793e8dfc2c926d9c95613425158001a28f137878 + React-RCTFBReactNativeSpec: 723fcfbf92ea803ff280e91821e1ec250db70b55 + React-RCTImage: 77458a87c240d5f8d34c1dbbf14e7bd57278ed0e + React-RCTLinking: e614f04c8770f4282dba940adf52bd986e4ed974 + React-RCTNetwork: bab280601a7baafded7e4a48bbf71c5af47d3298 + React-RCTRuntime: 753de520b91f4d7439f6de7c054c5301a2f9877d + React-RCTSettings: d0796a5f5915a0fb0e52cf3ee04e241b09a2f8b8 + React-RCTText: 5ed613d2dfe990dbb19938372036b4643f0625ce + React-RCTVibration: 0ba561085e4c44a653b499236abe493629873286 + React-rendererconsistency: 066ea817c79274336239f8da6621541ce7470228 + React-renderercss: d76faab753aebcc375b7e5fc265a7cb9e2a28785 + React-rendererdebug: 4705abd17df137dd3037c61a3871183f2e4fc473 + React-RuntimeApple: 6753d64e71a9da7b61d982bc15917d91341bd611 + React-RuntimeCore: ed70bc4e24a2033406b1554ae834621e9fa2e016 + React-runtimeexecutor: 95dab70d12f30b7169ab82e425847f72a9e0a175 + React-RuntimeHermes: acdd1e00fd1566ba59ac0488ab77bb75cdc07ef3 + React-runtimescheduler: 5b07f7a468b2d17d31dd71d26472a41793267994 + React-timing: 0d80bae78f698446ce4c3300078e8189c2c4b04f + React-utils: 68f444a56df3fd6080a91840395d0bbaff764dba + React-webperformancenativemodule: 03a1e25807b8e315c2c13ed09f4b6f6ddf5f0787 + ReactAppDependencyProvider: 616652983836e8dec145adb270c9a997f46dbf9b + ReactCodegen: fbb48ce4afddc4b8944287a78a217bf777c98974 + ReactCommon: 26a853504bed63ccc005fe3299d89515aac9f25a + ReactNativeHost: e7e0a518b0120f0070b3e1f13c7006d3e0e8ee13 + ReactTestApp-DevSupport: 0520f3f0e6f13e2d915fc146389c855c94117c2b RNCAsyncStorage: 302f2fac014fd450046c120567ca364632da682b RNScreens: 5c7f22b19ee2e900e5de2c578471aeb153d1e502 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 - Yoga: 00013dd9cde63a2d98e8002fcc4f5ddb66c10782 + Yoga: b3a8e8de88bf21eb845ecd38242b04ce48645074 PODFILE CHECKSUM: 3d5c18eefbf70d38fbbfe81a262195cadac1f5dd diff --git a/apps/tester-federation/android/gradle/wrapper/gradle-wrapper.properties b/apps/tester-federation/android/gradle/wrapper/gradle-wrapper.properties index d4081da47..2a84e188b 100644 --- a/apps/tester-federation/android/gradle/wrapper/gradle-wrapper.properties +++ b/apps/tester-federation/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/apps/tester-federation/configs/rspack.host-app.mts b/apps/tester-federation/configs/rspack.host-app.mts index 2d96580fc..f6b3e70bd 100644 --- a/apps/tester-federation/configs/rspack.host-app.mts +++ b/apps/tester-federation/configs/rspack.host-app.mts @@ -47,12 +47,12 @@ export default Repack.defineRspackConfig((env) => { react: { singleton: true, eager: true, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: true, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation/configs/rspack.mini-app.mts b/apps/tester-federation/configs/rspack.mini-app.mts index cb1abd319..83d86d5a4 100644 --- a/apps/tester-federation/configs/rspack.mini-app.mts +++ b/apps/tester-federation/configs/rspack.mini-app.mts @@ -50,12 +50,12 @@ export default Repack.defineRspackConfig((env) => { react: { singleton: true, eager: false, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: false, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation/configs/webpack.host-app.mts b/apps/tester-federation/configs/webpack.host-app.mts index e5c329535..bab7f6133 100644 --- a/apps/tester-federation/configs/webpack.host-app.mts +++ b/apps/tester-federation/configs/webpack.host-app.mts @@ -44,12 +44,12 @@ export default Repack.defineWebpackConfig((env) => { react: { singleton: true, eager: true, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: true, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation/configs/webpack.mini-app.mts b/apps/tester-federation/configs/webpack.mini-app.mts index 634eaa38a..c443f1301 100644 --- a/apps/tester-federation/configs/webpack.mini-app.mts +++ b/apps/tester-federation/configs/webpack.mini-app.mts @@ -48,12 +48,12 @@ export default Repack.defineWebpackConfig((env) => { react: { singleton: true, eager: false, - requiredVersion: '19.1.0', + requiredVersion: '19.2.0', }, 'react-native': { singleton: true, eager: false, - requiredVersion: '0.81.0', + requiredVersion: '0.83.3', }, '@react-navigation/native': { singleton: true, diff --git a/apps/tester-federation/ios/Podfile.lock b/apps/tester-federation/ios/Podfile.lock index 3d9a2c786..dfed50516 100644 --- a/apps/tester-federation/ios/Podfile.lock +++ b/apps/tester-federation/ios/Podfile.lock @@ -32,12 +32,12 @@ PODS: - Yoga - DoubleConversion (1.1.6) - fast_float (8.0.0) - - FBLazyVector (0.81.0) + - FBLazyVector (0.83.3) - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.81.0): - - hermes-engine/Pre-built (= 0.81.0) - - hermes-engine/Pre-built (0.81.0) + - hermes-engine (0.14.1): + - hermes-engine/Pre-built (= 0.14.1) + - hermes-engine/Pre-built (0.14.1) - JWTDecode (3.0.1) - RCT-Folly (2024.11.18.00): - boost @@ -58,27 +58,30 @@ PODS: - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - - RCTDeprecation (0.81.0) - - RCTRequired (0.81.0) - - RCTTypeSafety (0.81.0): - - FBLazyVector (= 0.81.0) - - RCTRequired (= 0.81.0) - - React-Core (= 0.81.0) - - React (0.81.0): - - React-Core (= 0.81.0) - - React-Core/DevSupport (= 0.81.0) - - React-Core/RCTWebSocket (= 0.81.0) - - React-RCTActionSheet (= 0.81.0) - - React-RCTAnimation (= 0.81.0) - - React-RCTBlob (= 0.81.0) - - React-RCTImage (= 0.81.0) - - React-RCTLinking (= 0.81.0) - - React-RCTNetwork (= 0.81.0) - - React-RCTSettings (= 0.81.0) - - React-RCTText (= 0.81.0) - - React-RCTVibration (= 0.81.0) - - React-callinvoker (0.81.0) - - React-Core (0.81.0): + - RCTDeprecation (0.83.3) + - RCTRequired (0.83.3) + - RCTSwiftUI (0.83.3) + - RCTSwiftUIWrapper (0.83.3): + - RCTSwiftUI + - RCTTypeSafety (0.83.3): + - FBLazyVector (= 0.83.3) + - RCTRequired (= 0.83.3) + - React-Core (= 0.83.3) + - React (0.83.3): + - React-Core (= 0.83.3) + - React-Core/DevSupport (= 0.83.3) + - React-Core/RCTWebSocket (= 0.83.3) + - React-RCTActionSheet (= 0.83.3) + - React-RCTAnimation (= 0.83.3) + - React-RCTBlob (= 0.83.3) + - React-RCTImage (= 0.83.3) + - React-RCTLinking (= 0.83.3) + - React-RCTNetwork (= 0.83.3) + - React-RCTSettings (= 0.83.3) + - React-RCTText (= 0.83.3) + - React-RCTVibration (= 0.83.3) + - React-callinvoker (0.83.3) + - React-Core (0.83.3): - boost - DoubleConversion - fast_float @@ -88,7 +91,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) + - React-Core/Default (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -103,7 +106,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/CoreModulesHeaders (0.81.0): + - React-Core/CoreModulesHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -128,7 +131,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/Default (0.81.0): + - React-Core/Default (0.83.3): - boost - DoubleConversion - fast_float @@ -152,7 +155,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/DevSupport (0.81.0): + - React-Core/DevSupport (0.83.3): - boost - DoubleConversion - fast_float @@ -162,8 +165,8 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) - - React-Core/RCTWebSocket (= 0.81.0) + - React-Core/Default (= 0.83.3) + - React-Core/RCTWebSocket (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -178,7 +181,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTActionSheetHeaders (0.81.0): + - React-Core/RCTActionSheetHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -203,7 +206,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTAnimationHeaders (0.81.0): + - React-Core/RCTAnimationHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -228,7 +231,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTBlobHeaders (0.81.0): + - React-Core/RCTBlobHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -253,7 +256,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTImageHeaders (0.81.0): + - React-Core/RCTImageHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -278,7 +281,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTLinkingHeaders (0.81.0): + - React-Core/RCTLinkingHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -303,7 +306,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTNetworkHeaders (0.81.0): + - React-Core/RCTNetworkHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -328,7 +331,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTSettingsHeaders (0.81.0): + - React-Core/RCTSettingsHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -353,7 +356,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTTextHeaders (0.81.0): + - React-Core/RCTTextHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -378,7 +381,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTVibrationHeaders (0.81.0): + - React-Core/RCTVibrationHeaders (0.83.3): - boost - DoubleConversion - fast_float @@ -403,7 +406,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTWebSocket (0.81.0): + - React-Core/RCTWebSocket (0.83.3): - boost - DoubleConversion - fast_float @@ -413,7 +416,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.81.0) + - React-Core/Default (= 0.83.3) - React-cxxreact - React-featureflags - React-hermes @@ -428,7 +431,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-CoreModules (0.81.0): + - React-CoreModules (0.83.3): - boost - DoubleConversion - fast_float @@ -436,20 +439,22 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - RCTTypeSafety (= 0.81.0) - - React-Core/CoreModulesHeaders (= 0.81.0) - - React-jsi (= 0.81.0) + - RCTTypeSafety (= 0.83.3) + - React-Core/CoreModulesHeaders (= 0.83.3) + - React-debug + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.81.0) + - React-RCTImage (= 0.83.3) - React-runtimeexecutor + - React-utils - ReactCommon - SocketRocket - - React-cxxreact (0.81.0): + - React-cxxreact (0.83.3): - boost - DoubleConversion - fast_float @@ -458,19 +463,20 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-debug (= 0.81.0) - - React-jsi (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-debug (= 0.83.3) + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) - React-runtimeexecutor - - React-timing (= 0.81.0) + - React-timing (= 0.83.3) + - React-utils - SocketRocket - - React-debug (0.81.0) - - React-defaultsnativemodule (0.81.0): + - React-debug (0.83.3) + - React-defaultsnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -480,14 +486,18 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-domnativemodule + - React-featureflags - React-featureflagsnativemodule - React-idlecallbacksnativemodule + - React-intersectionobservernativemodule - React-jsi - React-jsiexecutor - React-microtasksnativemodule - React-RCTFBReactNativeSpec + - React-webperformancenativemodule - SocketRocket - - React-domnativemodule (0.81.0): + - Yoga + - React-domnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -507,7 +517,51 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric (0.81.0): + - React-Fabric (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animated (= 0.83.3) + - React-Fabric/animationbackend (= 0.83.3) + - React-Fabric/animations (= 0.83.3) + - React-Fabric/attributedstring (= 0.83.3) + - React-Fabric/bridging (= 0.83.3) + - React-Fabric/componentregistry (= 0.83.3) + - React-Fabric/componentregistrynative (= 0.83.3) + - React-Fabric/components (= 0.83.3) + - React-Fabric/consistency (= 0.83.3) + - React-Fabric/core (= 0.83.3) + - React-Fabric/dom (= 0.83.3) + - React-Fabric/imagemanager (= 0.83.3) + - React-Fabric/leakchecker (= 0.83.3) + - React-Fabric/mounting (= 0.83.3) + - React-Fabric/observers (= 0.83.3) + - React-Fabric/scheduler (= 0.83.3) + - React-Fabric/telemetry (= 0.83.3) + - React-Fabric/templateprocessor (= 0.83.3) + - React-Fabric/uimanager (= 0.83.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/animated (0.83.3): - boost - DoubleConversion - fast_float @@ -521,23 +575,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.81.0) - - React-Fabric/attributedstring (= 0.81.0) - - React-Fabric/bridging (= 0.81.0) - - React-Fabric/componentregistry (= 0.81.0) - - React-Fabric/componentregistrynative (= 0.81.0) - - React-Fabric/components (= 0.81.0) - - React-Fabric/consistency (= 0.81.0) - - React-Fabric/core (= 0.81.0) - - React-Fabric/dom (= 0.81.0) - - React-Fabric/imagemanager (= 0.81.0) - - React-Fabric/leakchecker (= 0.81.0) - - React-Fabric/mounting (= 0.81.0) - - React-Fabric/observers (= 0.81.0) - - React-Fabric/scheduler (= 0.81.0) - - React-Fabric/telemetry (= 0.81.0) - - React-Fabric/templateprocessor (= 0.81.0) - - React-Fabric/uimanager (= 0.81.0) - React-featureflags - React-graphics - React-jsi @@ -549,7 +586,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animations (0.81.0): + - React-Fabric/animationbackend (0.83.3): - boost - DoubleConversion - fast_float @@ -574,7 +611,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/attributedstring (0.81.0): + - React-Fabric/animations (0.83.3): - boost - DoubleConversion - fast_float @@ -599,7 +636,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/bridging (0.81.0): + - React-Fabric/attributedstring (0.83.3): - boost - DoubleConversion - fast_float @@ -624,7 +661,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistry (0.81.0): + - React-Fabric/bridging (0.83.3): - boost - DoubleConversion - fast_float @@ -649,7 +686,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistrynative (0.81.0): + - React-Fabric/componentregistry (0.83.3): - boost - DoubleConversion - fast_float @@ -674,7 +711,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components (0.81.0): + - React-Fabric/componentregistrynative (0.83.3): - boost - DoubleConversion - fast_float @@ -688,10 +725,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.81.0) - - React-Fabric/components/root (= 0.81.0) - - React-Fabric/components/scrollview (= 0.81.0) - - React-Fabric/components/view (= 0.81.0) - React-featureflags - React-graphics - React-jsi @@ -703,7 +736,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/legacyviewmanagerinterop (0.81.0): + - React-Fabric/components (0.83.3): - boost - DoubleConversion - fast_float @@ -717,6 +750,10 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.83.3) + - React-Fabric/components/root (= 0.83.3) + - React-Fabric/components/scrollview (= 0.83.3) + - React-Fabric/components/view (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -728,7 +765,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/root (0.81.0): + - React-Fabric/components/legacyviewmanagerinterop (0.83.3): - boost - DoubleConversion - fast_float @@ -753,7 +790,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/scrollview (0.81.0): + - React-Fabric/components/root (0.83.3): - boost - DoubleConversion - fast_float @@ -778,7 +815,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/view (0.81.0): + - React-Fabric/components/scrollview (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/components/view (0.83.3): - boost - DoubleConversion - fast_float @@ -805,7 +867,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric/consistency (0.81.0): + - React-Fabric/consistency (0.83.3): - boost - DoubleConversion - fast_float @@ -830,7 +892,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/core (0.81.0): + - React-Fabric/core (0.83.3): - boost - DoubleConversion - fast_float @@ -855,7 +917,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/dom (0.81.0): + - React-Fabric/dom (0.83.3): - boost - DoubleConversion - fast_float @@ -880,7 +942,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/imagemanager (0.81.0): + - React-Fabric/imagemanager (0.83.3): - boost - DoubleConversion - fast_float @@ -905,7 +967,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/leakchecker (0.81.0): + - React-Fabric/leakchecker (0.83.3): - boost - DoubleConversion - fast_float @@ -930,7 +992,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/mounting (0.81.0): + - React-Fabric/mounting (0.83.3): - boost - DoubleConversion - fast_float @@ -955,7 +1017,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers (0.81.0): + - React-Fabric/observers (0.83.3): - boost - DoubleConversion - fast_float @@ -969,7 +1031,8 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.81.0) + - React-Fabric/observers/events (= 0.83.3) + - React-Fabric/observers/intersection (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -981,7 +1044,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers/events (0.81.0): + - React-Fabric/observers/events (0.83.3): - boost - DoubleConversion - fast_float @@ -1006,7 +1069,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/scheduler (0.81.0): + - React-Fabric/observers/intersection (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/scheduler (0.83.3): - boost - DoubleConversion - fast_float @@ -1026,6 +1114,7 @@ PODS: - React-jsi - React-jsiexecutor - React-logger + - React-performancecdpmetrics - React-performancetimeline - React-rendererdebug - React-runtimeexecutor @@ -1033,7 +1122,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/telemetry (0.81.0): + - React-Fabric/telemetry (0.83.3): - boost - DoubleConversion - fast_float @@ -1058,7 +1147,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/templateprocessor (0.81.0): + - React-Fabric/templateprocessor (0.83.3): - boost - DoubleConversion - fast_float @@ -1083,7 +1172,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager (0.81.0): + - React-Fabric/uimanager (0.83.3): - boost - DoubleConversion - fast_float @@ -1097,7 +1186,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.81.0) + - React-Fabric/uimanager/consistency (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1110,7 +1199,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager/consistency (0.81.0): + - React-Fabric/uimanager/consistency (0.83.3): - boost - DoubleConversion - fast_float @@ -1136,7 +1225,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-FabricComponents (0.81.0): + - React-FabricComponents (0.83.3): - boost - DoubleConversion - fast_float @@ -1151,8 +1240,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.81.0) - - React-FabricComponents/textlayoutmanager (= 0.81.0) + - React-FabricComponents/components (= 0.83.3) + - React-FabricComponents/textlayoutmanager (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1165,7 +1254,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components (0.81.0): + - React-FabricComponents/components (0.83.3): - boost - DoubleConversion - fast_float @@ -1180,16 +1269,18 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.81.0) - - React-FabricComponents/components/iostextinput (= 0.81.0) - - React-FabricComponents/components/modal (= 0.81.0) - - React-FabricComponents/components/rncore (= 0.81.0) - - React-FabricComponents/components/safeareaview (= 0.81.0) - - React-FabricComponents/components/scrollview (= 0.81.0) - - React-FabricComponents/components/text (= 0.81.0) - - React-FabricComponents/components/textinput (= 0.81.0) - - React-FabricComponents/components/unimplementedview (= 0.81.0) - - React-FabricComponents/components/virtualview (= 0.81.0) + - React-FabricComponents/components/inputaccessory (= 0.83.3) + - React-FabricComponents/components/iostextinput (= 0.83.3) + - React-FabricComponents/components/modal (= 0.83.3) + - React-FabricComponents/components/rncore (= 0.83.3) + - React-FabricComponents/components/safeareaview (= 0.83.3) + - React-FabricComponents/components/scrollview (= 0.83.3) + - React-FabricComponents/components/switch (= 0.83.3) + - React-FabricComponents/components/text (= 0.83.3) + - React-FabricComponents/components/textinput (= 0.83.3) + - React-FabricComponents/components/unimplementedview (= 0.83.3) + - React-FabricComponents/components/virtualview (= 0.83.3) + - React-FabricComponents/components/virtualviewexperimental (= 0.83.3) - React-featureflags - React-graphics - React-jsi @@ -1202,7 +1293,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/inputaccessory (0.81.0): + - React-FabricComponents/components/inputaccessory (0.83.3): - boost - DoubleConversion - fast_float @@ -1229,7 +1320,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/iostextinput (0.81.0): + - React-FabricComponents/components/iostextinput (0.83.3): - boost - DoubleConversion - fast_float @@ -1256,7 +1347,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/modal (0.81.0): + - React-FabricComponents/components/modal (0.83.3): - boost - DoubleConversion - fast_float @@ -1283,7 +1374,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/rncore (0.81.0): + - React-FabricComponents/components/rncore (0.83.3): - boost - DoubleConversion - fast_float @@ -1310,7 +1401,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/safeareaview (0.81.0): + - React-FabricComponents/components/safeareaview (0.83.3): - boost - DoubleConversion - fast_float @@ -1337,7 +1428,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/scrollview (0.81.0): + - React-FabricComponents/components/scrollview (0.83.3): - boost - DoubleConversion - fast_float @@ -1364,7 +1455,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/text (0.81.0): + - React-FabricComponents/components/switch (0.83.3): - boost - DoubleConversion - fast_float @@ -1391,7 +1482,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/textinput (0.81.0): + - React-FabricComponents/components/text (0.83.3): - boost - DoubleConversion - fast_float @@ -1418,7 +1509,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/unimplementedview (0.81.0): + - React-FabricComponents/components/textinput (0.83.3): - boost - DoubleConversion - fast_float @@ -1445,7 +1536,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualview (0.81.0): + - React-FabricComponents/components/unimplementedview (0.83.3): - boost - DoubleConversion - fast_float @@ -1472,7 +1563,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/textlayoutmanager (0.81.0): + - React-FabricComponents/components/virtualview (0.83.3): - boost - DoubleConversion - fast_float @@ -1499,7 +1590,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricImage (0.81.0): + - React-FabricComponents/components/virtualviewexperimental (0.83.3): - boost - DoubleConversion - fast_float @@ -1508,21 +1599,75 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - RCTRequired (= 0.81.0) - - RCTTypeSafety (= 0.81.0) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-RCTFBReactNativeSpec + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-FabricComponents/textlayoutmanager (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-RCTFBReactNativeSpec + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-FabricImage (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired (= 0.83.3) + - RCTTypeSafety (= 0.83.3) - React-Fabric - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.81.0) + - React-jsiexecutor (= 0.83.3) - React-logger - React-rendererdebug - React-utils - ReactCommon - SocketRocket - Yoga - - React-featureflags (0.81.0): + - React-featureflags (0.83.3): - boost - DoubleConversion - fast_float @@ -1531,7 +1676,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-featureflagsnativemodule (0.81.0): + - React-featureflagsnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1546,7 +1691,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - SocketRocket - - React-graphics (0.81.0): + - React-graphics (0.83.3): - boost - DoubleConversion - fast_float @@ -1559,7 +1704,7 @@ PODS: - React-jsiexecutor - React-utils - SocketRocket - - React-hermes (0.81.0): + - React-hermes (0.83.3): - boost - DoubleConversion - fast_float @@ -1568,16 +1713,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) + - React-cxxreact (= 0.83.3) - React-jsi - - React-jsiexecutor (= 0.81.0) + - React-jsiexecutor (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-oscompat + - React-perflogger (= 0.83.3) - React-runtimeexecutor - SocketRocket - - React-idlecallbacksnativemodule (0.81.0): + - React-idlecallbacksnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1593,7 +1739,7 @@ PODS: - React-runtimescheduler - ReactCommon/turbomodule/core - SocketRocket - - React-ImageManager (0.81.0): + - React-ImageManager (0.83.3): - boost - DoubleConversion - fast_float @@ -1608,7 +1754,28 @@ PODS: - React-rendererdebug - React-utils - SocketRocket - - React-jserrorhandler (0.81.0): + - React-intersectionobservernativemodule (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-Fabric + - React-Fabric/bridging + - React-graphics + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - React-runtimescheduler + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-jserrorhandler (0.83.3): - boost - DoubleConversion - fast_float @@ -1623,7 +1790,7 @@ PODS: - React-jsi - ReactCommon/turbomodule/bridging - SocketRocket - - React-jsi (0.81.0): + - React-jsi (0.83.3): - boost - DoubleConversion - fast_float @@ -1633,7 +1800,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsiexecutor (0.81.0): + - React-jsiexecutor (0.83.3): - boost - DoubleConversion - fast_float @@ -1642,15 +1809,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) + - React-cxxreact + - React-debug + - React-jsi - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-perflogger - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspector (0.81.0): + - React-jsinspector (0.83.3): - boost - DoubleConversion - fast_float @@ -1664,10 +1833,12 @@ PODS: - React-jsinspectorcdp - React-jsinspectornetwork - React-jsinspectortracing - - React-perflogger (= 0.81.0) + - React-oscompat + - React-perflogger (= 0.83.3) - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspectorcdp (0.81.0): + - React-jsinspectorcdp (0.83.3): - boost - DoubleConversion - fast_float @@ -1676,7 +1847,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsinspectornetwork (0.81.0): + - React-jsinspectornetwork (0.83.3): - boost - DoubleConversion - fast_float @@ -1684,23 +1855,23 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-featureflags - React-jsinspectorcdp - - React-performancetimeline - - React-timing - SocketRocket - - React-jsinspectortracing (0.81.0): + - React-jsinspectortracing (0.83.3): - boost - DoubleConversion - fast_float - fmt - glog + - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - React-jsi + - React-jsinspectornetwork - React-oscompat - React-timing - SocketRocket - - React-jsitooling (0.81.0): + - React-jsitooling (0.83.3): - boost - DoubleConversion - fast_float @@ -1708,16 +1879,18 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) + - React-cxxreact (= 0.83.3) + - React-debug + - React-jsi (= 0.83.3) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsitracing (0.81.0): + - React-jsitracing (0.83.3): - React-jsi - - React-logger (0.81.0): + - React-logger (0.83.3): - boost - DoubleConversion - fast_float @@ -1726,7 +1899,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-Mapbuffer (0.81.0): + - React-Mapbuffer (0.83.3): - boost - DoubleConversion - fast_float @@ -1736,7 +1909,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-microtasksnativemodule (0.81.0): + - React-microtasksnativemodule (0.83.3): - boost - DoubleConversion - fast_float @@ -1837,7 +2010,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-NativeModulesApple (0.81.0): + - React-NativeModulesApple (0.83.3): - boost - DoubleConversion - fast_float @@ -1849,6 +2022,7 @@ PODS: - React-callinvoker - React-Core - React-cxxreact + - React-debug - React-featureflags - React-jsi - React-jsinspector @@ -1857,8 +2031,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - React-oscompat (0.81.0) - - React-perflogger (0.81.0): + - React-networking (0.83.3): - boost - DoubleConversion - fast_float @@ -1866,8 +2039,37 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric + - React-featureflags + - React-jsinspectornetwork + - React-jsinspectortracing + - React-performancetimeline + - React-timing - SocketRocket - - React-performancetimeline (0.81.0): + - React-oscompat (0.83.3) + - React-perflogger (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-performancecdpmetrics (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-jsi + - React-performancetimeline + - React-runtimeexecutor + - React-timing + - SocketRocket + - React-performancetimeline (0.83.3): - boost - DoubleConversion - fast_float @@ -1880,9 +2082,9 @@ PODS: - React-perflogger - React-timing - SocketRocket - - React-RCTActionSheet (0.81.0): - - React-Core/RCTActionSheetHeaders (= 0.81.0) - - React-RCTAnimation (0.81.0): + - React-RCTActionSheet (0.83.3): + - React-Core/RCTActionSheetHeaders (= 0.83.3) + - React-RCTAnimation (0.83.3): - boost - DoubleConversion - fast_float @@ -1898,7 +2100,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTAppDelegate (0.81.0): + - React-RCTAppDelegate (0.83.3): - boost - DoubleConversion - fast_float @@ -1932,7 +2134,7 @@ PODS: - React-utils - ReactCommon - SocketRocket - - React-RCTBlob (0.81.0): + - React-RCTBlob (0.83.3): - boost - DoubleConversion - fast_float @@ -1951,7 +2153,7 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTFabric (0.81.0): + - React-RCTFabric (0.83.3): - boost - DoubleConversion - fast_float @@ -1960,6 +2162,7 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - RCTSwiftUIWrapper - React-Core - React-debug - React-Fabric @@ -1971,8 +2174,9 @@ PODS: - React-jsi - React-jsinspector - React-jsinspectorcdp - - React-jsinspectornetwork - React-jsinspectortracing + - React-networking + - React-performancecdpmetrics - React-performancetimeline - React-RCTAnimation - React-RCTFBReactNativeSpec @@ -1986,7 +2190,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-RCTFBReactNativeSpec (0.81.0): + - React-RCTFBReactNativeSpec (0.83.3): - boost - DoubleConversion - fast_float @@ -2000,10 +2204,10 @@ PODS: - React-Core - React-jsi - React-NativeModulesApple - - React-RCTFBReactNativeSpec/components (= 0.81.0) + - React-RCTFBReactNativeSpec/components (= 0.83.3) - ReactCommon - SocketRocket - - React-RCTFBReactNativeSpec/components (0.81.0): + - React-RCTFBReactNativeSpec/components (0.83.3): - boost - DoubleConversion - fast_float @@ -2026,7 +2230,7 @@ PODS: - ReactCommon - SocketRocket - Yoga - - React-RCTImage (0.81.0): + - React-RCTImage (0.83.3): - boost - DoubleConversion - fast_float @@ -2042,14 +2246,14 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTLinking (0.81.0): - - React-Core/RCTLinkingHeaders (= 0.81.0) - - React-jsi (= 0.81.0) + - React-RCTLinking (0.83.3): + - React-Core/RCTLinkingHeaders (= 0.83.3) + - React-jsi (= 0.83.3) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.81.0) - - React-RCTNetwork (0.81.0): + - ReactCommon/turbomodule/core (= 0.83.3) + - React-RCTNetwork (0.83.3): - boost - DoubleConversion - fast_float @@ -2059,15 +2263,17 @@ PODS: - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTNetworkHeaders + - React-debug - React-featureflags - React-jsi - React-jsinspectorcdp - React-jsinspectornetwork - React-NativeModulesApple + - React-networking - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTRuntime (0.81.0): + - React-RCTRuntime (0.83.3): - boost - DoubleConversion - fast_float @@ -2077,6 +2283,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-Core + - React-debug - React-jsi - React-jsinspector - React-jsinspectorcdp @@ -2086,8 +2293,9 @@ PODS: - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes + - React-utils - SocketRocket - - React-RCTSettings (0.81.0): + - React-RCTSettings (0.83.3): - boost - DoubleConversion - fast_float @@ -2102,10 +2310,10 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTText (0.81.0): - - React-Core/RCTTextHeaders (= 0.81.0) + - React-RCTText (0.83.3): + - React-Core/RCTTextHeaders (= 0.83.3) - Yoga - - React-RCTVibration (0.81.0): + - React-RCTVibration (0.83.3): - boost - DoubleConversion - fast_float @@ -2119,11 +2327,11 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-rendererconsistency (0.81.0) - - React-renderercss (0.81.0): + - React-rendererconsistency (0.83.3) + - React-renderercss (0.83.3): - React-debug - React-utils - - React-rendererdebug (0.81.0): + - React-rendererdebug (0.83.3): - boost - DoubleConversion - fast_float @@ -2133,7 +2341,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-RuntimeApple (0.81.0): + - React-RuntimeApple (0.83.3): - boost - DoubleConversion - fast_float @@ -2162,7 +2370,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-RuntimeCore (0.81.0): + - React-RuntimeCore (0.83.3): - boost - DoubleConversion - fast_float @@ -2184,7 +2392,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-runtimeexecutor (0.81.0): + - React-runtimeexecutor (0.83.3): - boost - DoubleConversion - fast_float @@ -2194,10 +2402,10 @@ PODS: - RCT-Folly/Fabric - React-debug - React-featureflags - - React-jsi (= 0.81.0) + - React-jsi (= 0.83.3) - React-utils - SocketRocket - - React-RuntimeHermes (0.81.0): + - React-RuntimeHermes (0.83.3): - boost - DoubleConversion - fast_float @@ -2218,7 +2426,7 @@ PODS: - React-runtimeexecutor - React-utils - SocketRocket - - React-runtimescheduler (0.81.0): + - React-runtimescheduler (0.83.3): - boost - DoubleConversion - fast_float @@ -2240,8 +2448,9 @@ PODS: - React-timing - React-utils - SocketRocket - - React-timing (0.81.0) - - React-utils (0.81.0): + - React-timing (0.83.3): + - React-debug + - React-utils (0.83.3): - boost - DoubleConversion - fast_float @@ -2251,11 +2460,28 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-debug - - React-jsi (= 0.81.0) + - React-jsi (= 0.83.3) + - SocketRocket + - React-webperformancenativemodule (0.83.3): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-jsi + - React-jsiexecutor + - React-performancetimeline + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - ReactCommon/turbomodule/core - SocketRocket - - ReactAppDependencyProvider (0.81.0): + - ReactAppDependencyProvider (0.83.3): - ReactCodegen - - ReactCodegen (0.81.0): + - ReactCodegen (0.83.3): - boost - DoubleConversion - fast_float @@ -2281,7 +2507,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - ReactCommon (0.81.0): + - ReactCommon (0.83.3): - boost - DoubleConversion - fast_float @@ -2289,9 +2515,9 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - ReactCommon/turbomodule (= 0.81.0) + - ReactCommon/turbomodule (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule (0.81.0): + - ReactCommon/turbomodule (0.83.3): - boost - DoubleConversion - fast_float @@ -2300,15 +2526,15 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) - - ReactCommon/turbomodule/bridging (= 0.81.0) - - ReactCommon/turbomodule/core (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) + - ReactCommon/turbomodule/bridging (= 0.83.3) + - ReactCommon/turbomodule/core (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule/bridging (0.81.0): + - ReactCommon/turbomodule/bridging (0.83.3): - boost - DoubleConversion - fast_float @@ -2317,13 +2543,13 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) - SocketRocket - - ReactCommon/turbomodule/core (0.81.0): + - ReactCommon/turbomodule/core (0.83.3): - boost - DoubleConversion - fast_float @@ -2332,16 +2558,16 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.81.0) - - React-cxxreact (= 0.81.0) - - React-debug (= 0.81.0) - - React-featureflags (= 0.81.0) - - React-jsi (= 0.81.0) - - React-logger (= 0.81.0) - - React-perflogger (= 0.81.0) - - React-utils (= 0.81.0) + - React-callinvoker (= 0.83.3) + - React-cxxreact (= 0.83.3) + - React-debug (= 0.83.3) + - React-featureflags (= 0.83.3) + - React-jsi (= 0.83.3) + - React-logger (= 0.83.3) + - React-perflogger (= 0.83.3) + - React-utils (= 0.83.3) - SocketRocket - - ReactNativeHost (0.5.11): + - ReactNativeHost (0.5.16): - boost - DoubleConversion - fast_float @@ -2371,7 +2597,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - ReactTestApp-DevSupport (4.4.7): + - ReactTestApp-DevSupport (5.1.0): - React-Core - React-jsi - RNCAsyncStorage (2.2.0): @@ -2479,6 +2705,8 @@ DEPENDENCIES: - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) - RCTRequired (from `../node_modules/react-native/Libraries/Required`) + - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`) + - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) @@ -2498,6 +2726,7 @@ DEPENDENCIES: - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) + - React-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`) - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) @@ -2512,8 +2741,10 @@ DEPENDENCIES: - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) + - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`) - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`) - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) @@ -2538,10 +2769,11 @@ 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`) + - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`) + - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`) + - ReactCodegen (from `build/generated/ios/ReactCodegen`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - - "ReactNativeHost (from `../../../node_modules/.pnpm/react-native-test-app@4.4.7_react-native@0.81.0_@babel+core@7.25.2_@react-native-community+cl_ewtjfzw7qct7nbxbklxsged2ea/node_modules/@rnx-kit/react-native-host`)" + - "ReactNativeHost (from `../../../node_modules/.pnpm/react-native-test-app@5.1.0_react-native@0.83.3_@babel+core@7.25.2_@react-native-community+cl_z76kjirq25hld6vveima5ikg7u/node_modules/@rnx-kit/react-native-host`)" - ReactTestApp-DevSupport (from `../node_modules/react-native-test-app`) - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" - RNScreens (from `../node_modules/react-native-screens`) @@ -2571,13 +2803,17 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2025-07-07-RNv0.81.0-e0fc67142ec0763c6b6153ca2bf96df815539782 + :tag: hermes-v0.14.1 RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" RCTRequired: :path: "../node_modules/react-native/Libraries/Required" + RCTSwiftUI: + :path: "../node_modules/react-native/ReactApple/RCTSwiftUI" + RCTSwiftUIWrapper: + :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: @@ -2614,6 +2850,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" + React-intersectionobservernativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver" React-jserrorhandler: :path: "../node_modules/react-native/ReactCommon/jserrorhandler" React-jsi: @@ -2642,10 +2880,14 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-safe-area-context" React-NativeModulesApple: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" + React-networking: + :path: "../node_modules/react-native/ReactCommon/react/networking" React-oscompat: :path: "../node_modules/react-native/ReactCommon/oscompat" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancecdpmetrics: + :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics" React-performancetimeline: :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" React-RCTActionSheet: @@ -2694,14 +2936,16 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/timing" React-utils: :path: "../node_modules/react-native/ReactCommon/react/utils" + React-webperformancenativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance" ReactAppDependencyProvider: - :path: build/generated/ios + :path: build/generated/ios/ReactAppDependencyProvider ReactCodegen: - :path: build/generated/ios + :path: build/generated/ios/ReactCodegen ReactCommon: :path: "../node_modules/react-native/ReactCommon" ReactNativeHost: - :path: "../../../node_modules/.pnpm/react-native-test-app@4.4.7_react-native@0.81.0_@babel+core@7.25.2_@react-native-community+cl_ewtjfzw7qct7nbxbklxsged2ea/node_modules/@rnx-kit/react-native-host" + :path: "../../../node_modules/.pnpm/react-native-test-app@5.1.0_react-native@0.83.3_@babel+core@7.25.2_@react-native-community+cl_z76kjirq25hld6vveima5ikg7u/node_modules/@rnx-kit/react-native-host" ReactTestApp-DevSupport: :path: "../node_modules/react-native-test-app" RNCAsyncStorage: @@ -2716,82 +2960,88 @@ SPEC CHECKSUMS: callstack-repack: d2b994c81bca9047cfd550b1a760421c8868c1a3 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 - FBLazyVector: a867936a67af0d09c37935a1b900a1a3c795b6d1 + FBLazyVector: fc9809f68c51849ba5be77326c255b83db74b8a1 fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 - hermes-engine: e7491a2038f2618c8cd444ed411a6deb350a3742 + hermes-engine: 6b41850af20c45e6301453a5c9b3ee33d9263d0a JWTDecode: 2eed97c2fa46ccaf3049a787004eedf0be474a87 RCT-Folly: 59ec0ac1f2f39672a0c6e6cecdd39383b764646f - RCTDeprecation: 0735ab4f6b3ec93a7f98187b5da74d7916e2cf4c - RCTRequired: 8fcc7801bfc433072287b0f24a662e2816e89d0c - RCTTypeSafety: 2b2be515d6b968bcba7a68c4179d8199bd8c9b58 - React: 1000c0e96d8fb9fbdaf13f7d31d0b09db3cbb4ac - React-callinvoker: 7e52661bfaf5d8881a9cee049792627a00001fbe - React-Core: a9128dd77ec52432727bfbec8c55d17189f6c039 - React-CoreModules: 4597116bd78ae2b183547e3700be0dc9537918e9 - React-cxxreact: e3a02f535cc1f1b547ac1baafe6ac25552352362 - React-debug: 7a23d96f709f437c5e08973d6e06d0a54dd180a1 - React-defaultsnativemodule: f01b6e58a23efe4fc8d74db7dadeea112908f5d5 - React-domnativemodule: 2d9796d40ab675e0f91ae8aae26c796b6e9a7499 - React-Fabric: f4344b3a882292783de9a5404852023b6c4fdd2d - React-FabricComponents: 7c51eb1619473ae3ed92d8bbf5d5dd3be0c5ef9d - React-FabricImage: 9e743575e67a9c14242bec3ae0e26663eed641bb - React-featureflags: 5188951cc2fc81f4d249dc37e8f96dca7ef50e96 - React-featureflagsnativemodule: 0fa7473065377ca4e5651c75614796326ef57aa8 - React-graphics: f65ecd0a8c70f9c7dcdae322851c19b21c83ec27 - React-hermes: 8418dae38a0513aa66aaa0a1b0904e55c4448644 - React-idlecallbacksnativemodule: 540d6f743fcb595b26da8b182b28c878a1176a96 - React-ImageManager: 5f9f1e33611a852d21a63e1de76d211fb04ac935 - React-jserrorhandler: 9c0a7d69cd07c9ae08fab3a61150d526c0174c83 - React-jsi: b711b7a11d77357beb95fa2eabd30c1ae34dcf40 - React-jsiexecutor: 0d1c78e666c5be71ff7c0ff5ea7fb043e5b1f14c - React-jsinspector: 5fabd9f0be9390d5b5eb5fc88a8965d97e0c14ac - React-jsinspectorcdp: e78c65e25253999c0efd5e23c99e649e02fd0244 - React-jsinspectornetwork: b02c6f7fe00e12b575a7faea0ed9ec9ddbc1c20f - React-jsinspectortracing: c6d8da3c8bcd939b8dcfd5113e247d56af932e1b - React-jsitooling: 4ca9b158d65909590daf6bf30a345b663eb71964 - React-jsitracing: d9e9378d5a3e05febea2164a5d0c5fab06492872 - React-logger: 839abfd18a3fbdf88132824de584b226d0c5cbce - React-Mapbuffer: bd5b1120c9bbaac6203eb288735e239f04e03009 - React-microtasksnativemodule: 10892b00e612d79436022a11e5bc8bdf468a284f + RCTDeprecation: 5b820e4173338406a389434c2b79b84ec3b17e26 + RCTRequired: 10f9df44a97f776fa100b21de237605e77558003 + RCTSwiftUI: f39ca8a94156ffc21fe32cd698d0526aea96ac67 + RCTSwiftUIWrapper: 9dd1885803ebb68ef067c201456b855b94cf39b1 + RCTTypeSafety: 5a9a574c62ef181c9ab4f8939beae05fd7e4295b + React: d2e915c0695e4aab827878e1291f3c08bcc78c37 + React-callinvoker: 33672f1ad938395b7859532cb4901701be59e951 + React-Core: b1bbda65681b4a033367194ffdf90a800b31826b + React-CoreModules: 28692a4bacc81606d54032b115bf2a973d9ffa48 + React-cxxreact: 08dd10045b7b08032f0f55ea82c4abe923f20906 + React-debug: fb5fa668cbcce4c16165f911cdb18c95965f6931 + React-defaultsnativemodule: 0a5b70bb3b8e0b8564271d058238dda3f055fc56 + React-domnativemodule: 5dc7e81f73aa1ca6e6077e9d8906d0a4cb235ca1 + React-Fabric: 90d48592ac3945e6e8ccbd8548702acf7173e00d + React-FabricComponents: 1bc2689420ad8253db5001d65f40fcc25a074131 + React-FabricImage: 2893e6e98ffe5473629f9620bbbae54257b5c553 + React-featureflags: c2aff1a0fb1952c295ae3df3f915d0e38010f564 + React-featureflagsnativemodule: 43b4bff6bf7e6cf7295a867619e16c41a36534bc + React-graphics: 953b125bad116068b99f11e0bbb5b6c37dc49459 + React-hermes: 17017df3cfd34f7bb2082d1c99707f31682352b9 + React-idlecallbacksnativemodule: e89c2d781f3877a5528090cb65aae4f7943bf44b + React-ImageManager: 523d45e72dd34d99e81a245f76d170c11090a7e6 + React-intersectionobservernativemodule: efc31ecef5585394e4d3681f12e81782c1fd9a75 + React-jserrorhandler: f6fcc82e42bc16a1f411910d5e884d50424162e1 + React-jsi: 881d0973e4115de4fe7514c40c517112dd87bdf2 + React-jsiexecutor: 3135e7fbf876bad9214a8f1b11e12e9757355157 + React-jsinspector: 4695c82b7ab08cb5b8aa2562a29f6be6b74ce853 + React-jsinspectorcdp: 1701bedb021c919973cc106c6cf289d594ba0092 + React-jsinspectornetwork: 35e3009efe406c8dc51d0f9559e77e4147fbc396 + React-jsinspectortracing: 89daa2c4ec61e50886fc6fcf612640a92c45a331 + React-jsitooling: 3469c471c81831d143f0c80b29fa1783b68a540f + React-jsitracing: 35b798866b4fb1ec674ac34e884af4f04b980a82 + React-logger: 6eabdaf76fbf47f97cb984034e78f7f94c598935 + React-Mapbuffer: 59f2b773f64fca9ab6facd443657c77ac992669a + React-microtasksnativemodule: 1c7ccce743f1347261dbc699d6a41cd45c392d2d react-native-safe-area-context: 6d8a7b750e496e37bda47c938320bf2c734d441f - React-NativeModulesApple: 3f9e97a4a90eeec1ceade511f973b277632650bb - React-oscompat: 34f3d3c06cadcbc470bc4509c717fb9b919eaa8b - React-perflogger: 95dff8cc9901777360716cbdcb2998849f133a4f - React-performancetimeline: 2937a27399b52ca8baf46f22c39087f617e626b5 - React-RCTActionSheet: 550c9c6c2e7dcd85a51954dc08e2f3837a148e7c - React-RCTAnimation: 0008bfe273566acd3128da13598073383325ac7a - React-RCTAppDelegate: 8b9452baef5548856a22f4710d4135cf68746cf5 - React-RCTBlob: 60006ab743e5fd807aaf536092f5ce86e87df526 - React-RCTFabric: 8d5d1006b3812c35fd0f37c117ff7bcf6449e20d - React-RCTFBReactNativeSpec: 3cb4265fa9a4e4f8250ae89feb345edc542731da - React-RCTImage: f40a2ee0f79c1666e8b81da4ea2d9d1182c94962 - React-RCTLinking: cfe6995bdd8d08d0bb0df12771f4d28fd5fd54ff - React-RCTNetwork: 565c0cd46313f2cad0e4db70a44958b2842c372b - React-RCTRuntime: 971a71a42d8979475a380e5179083302e5506cdd - React-RCTSettings: afcec6060d916e9c0410004ad8419d45f9dbcd36 - React-RCTText: 952f2a1b618d3f3872e7e5a82aefc5e5082c59aa - React-RCTVibration: 2a7e7497ffefa135c7f0fee8ee10e3505ab5cc61 - React-rendererconsistency: c2cb23365f4a7b511893748fe8cad1830bbae637 - React-renderercss: 621b2b85af14694e93c2bcd63986fb57bcceab2e - React-rendererdebug: 4ba0769131e20347b900757fcac3c7919b27080c - React-RuntimeApple: c1a211351c14d35805d45a94094cfb3e5649552c - React-RuntimeCore: b7c7d8dffa3728a9e9616e0e8b5b6b41037ebcca - React-runtimeexecutor: e931e48afc888fe459f6ffb481971e23bb34f7ee - React-RuntimeHermes: 5763230801ee57d9f414818f48e44b874f3ce1be - React-runtimescheduler: b2e99f9702705fc8c11cf3c51f9911f478ee2210 - React-timing: 25e8229ad1cf6874e9f0711515213cb2bc322215 - React-utils: 7ea6e4d300c43a763e4e08091413aec962588f93 - ReactAppDependencyProvider: 562d731311d0524a577cf8a01faa97874bacbdfe - ReactCodegen: ee1afddd0b9416db28c0d7f442890f38116ef6d2 - ReactCommon: c235ebd26d63fde9a2dfa72cee9f8294b910fee1 - ReactNativeHost: 6977837691a2084827c650fc23181eebc54ad9e1 - ReactTestApp-DevSupport: 6994b53b5b81139a8ce63e0776c726c95de079a1 + React-NativeModulesApple: 4a853d23adcfc688a83fa00048e170d865a162c8 + React-networking: dc6548f9ea922a4781f0c5490e78fbda614062a5 + React-oscompat: 4c2d9e85075ddcca7b7a61695ac8f3537f7134fb + React-perflogger: 5b36ec5529b43a3888f8a1852149c217a7003db5 + React-performancecdpmetrics: 346dbe8cacc410212ffbfd1c387c3f8a173ccfe9 + React-performancetimeline: 27a0b9f711729e8ed0de35ee964abc120f35bf1e + React-RCTActionSheet: b51142b04a248640143632f8ceadcb70e9cd574c + React-RCTAnimation: 77f173f29e748dccac93c659db9a761828dd9d9d + React-RCTAppDelegate: d0f09f429eef200d0e1167d0dd539497926d8323 + React-RCTBlob: d47ade560e5dd80ddcf9e34bf3043c5366c008eb + React-RCTFabric: 793e8dfc2c926d9c95613425158001a28f137878 + React-RCTFBReactNativeSpec: 723fcfbf92ea803ff280e91821e1ec250db70b55 + React-RCTImage: 77458a87c240d5f8d34c1dbbf14e7bd57278ed0e + React-RCTLinking: e614f04c8770f4282dba940adf52bd986e4ed974 + React-RCTNetwork: bab280601a7baafded7e4a48bbf71c5af47d3298 + React-RCTRuntime: 753de520b91f4d7439f6de7c054c5301a2f9877d + React-RCTSettings: d0796a5f5915a0fb0e52cf3ee04e241b09a2f8b8 + React-RCTText: 5ed613d2dfe990dbb19938372036b4643f0625ce + React-RCTVibration: 0ba561085e4c44a653b499236abe493629873286 + React-rendererconsistency: 066ea817c79274336239f8da6621541ce7470228 + React-renderercss: d76faab753aebcc375b7e5fc265a7cb9e2a28785 + React-rendererdebug: 4705abd17df137dd3037c61a3871183f2e4fc473 + React-RuntimeApple: 6753d64e71a9da7b61d982bc15917d91341bd611 + React-RuntimeCore: ed70bc4e24a2033406b1554ae834621e9fa2e016 + React-runtimeexecutor: 95dab70d12f30b7169ab82e425847f72a9e0a175 + React-RuntimeHermes: acdd1e00fd1566ba59ac0488ab77bb75cdc07ef3 + React-runtimescheduler: 5b07f7a468b2d17d31dd71d26472a41793267994 + React-timing: 0d80bae78f698446ce4c3300078e8189c2c4b04f + React-utils: 68f444a56df3fd6080a91840395d0bbaff764dba + React-webperformancenativemodule: 03a1e25807b8e315c2c13ed09f4b6f6ddf5f0787 + ReactAppDependencyProvider: 616652983836e8dec145adb270c9a997f46dbf9b + ReactCodegen: fbb48ce4afddc4b8944287a78a217bf777c98974 + ReactCommon: 26a853504bed63ccc005fe3299d89515aac9f25a + ReactNativeHost: e7e0a518b0120f0070b3e1f13c7006d3e0e8ee13 + ReactTestApp-DevSupport: 0520f3f0e6f13e2d915fc146389c855c94117c2b RNCAsyncStorage: 302f2fac014fd450046c120567ca364632da682b RNScreens: 5c7f22b19ee2e900e5de2c578471aeb153d1e502 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 - Yoga: 00013dd9cde63a2d98e8002fcc4f5ddb66c10782 + Yoga: 068146bd1fdc8632a4b98b9d3f554d54449b92a8 PODFILE CHECKSUM: 16a059e985a55bc49163512a311428a48f715334 diff --git a/packages/dev-server/package.json b/packages/dev-server/package.json index c76b1e839..64751b837 100644 --- a/packages/dev-server/package.json +++ b/packages/dev-server/package.json @@ -42,7 +42,7 @@ "ws": "^8.18.1" }, "devDependencies": { - "@react-native/dev-middleware": "^0.81.0", + "@react-native/dev-middleware": "^0.83.3", "@types/babel__code-frame": "^7.0.6", "@types/node": "catalog:", "@types/ws": "^8.18.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index aa99547cc..fdd3d5d51 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,14 +19,14 @@ catalogs: specifier: ^20.19.31 version: 20.19.31 react: - specifier: 19.1.0 - version: 19.1.0 + specifier: 19.2.0 + version: 19.2.0 react-native: - specifier: 0.81.0 - version: 0.81.0 + specifier: 0.83.3 + version: 0.83.3 terser-webpack-plugin: specifier: ^5.3.14 - version: 5.3.14 + version: 5.3.16 typescript: specifier: ^5.8.3 version: 5.8.3 @@ -47,17 +47,17 @@ catalogs: specifier: 20.1.2 version: 20.1.2 '@react-native/babel-preset': - specifier: 0.81.0 - version: 0.81.0 + specifier: 0.83.3 + version: 0.83.3 '@react-native/typescript-config': - specifier: 0.81.0 - version: 0.81.0 + specifier: 0.83.3 + version: 0.83.3 '@types/react': - specifier: ^19.1.0 - version: 19.1.8 + specifier: ^19.2.0 + version: 19.2.14 react-native-test-app: - specifier: 4.4.7 - version: 4.4.7 + specifier: 5.1.0 + version: 5.1.0 overrides: caniuse-lite: ^1.0.30001774 @@ -113,13 +113,13 @@ importers: dependencies: '@react-native-async-storage/async-storage': specifier: ^2.2.0 - version: 2.2.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0)) + version: 2.2.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0)) '@rn-primitives/slot': specifier: ^1.1.0 - version: 1.1.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 1.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) '@rn-primitives/types': specifier: ^1.1.0 - version: 1.1.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 1.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) class-variance-authority: specifier: ^0.7.1 version: 0.7.1 @@ -128,28 +128,28 @@ importers: version: 2.1.1 nativewind: specifier: ^4.1.23 - version: 4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17) + version: 4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-svg@15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@3.4.17) react: specifier: 'catalog:' - version: 19.1.0 + version: 19.2.0 react-native: specifier: 'catalog:' - version: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + version: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) react-native-css-interop: specifier: 0.1.22 - version: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17) + version: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-svg@15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@3.4.17) react-native-reanimated: specifier: 4.0.0 - version: 4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react-native-safe-area-context: specifier: 5.5.0 - version: 5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react-native-svg: specifier: 15.12.0 - version: 15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react-native-worklets: specifier: 0.4.0 - version: 0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) tailwind-merge: specifier: ^2.6.0 version: 2.6.0 @@ -177,10 +177,10 @@ importers: version: 20.1.2 '@react-native/babel-preset': specifier: catalog:testers - version: 0.81.0(@babel/core@7.25.2) + version: 0.83.3(@babel/core@7.25.2) '@react-native/typescript-config': specifier: catalog:testers - version: 0.81.0 + version: 0.83.3 '@rsdoctor/rspack-plugin': specifier: ^1.5.2 version: 1.5.2(@rsbuild/core@2.0.0-alpha.4)(@rspack/core@1.6.0(@swc/helpers@0.5.18))(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) @@ -201,10 +201,10 @@ importers: version: 29.5.14 '@types/react': specifier: catalog:testers - version: 19.1.8 + version: 19.2.14 autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.5.1) + version: 10.4.20(postcss@8.5.6) get-port: specifier: ^6.1.2 version: 6.1.2 @@ -216,19 +216,19 @@ importers: version: 14.1.1 postcss: specifier: ^8.4.49 - version: 8.5.1 + version: 8.5.6 postcss-loader: specifier: ^8.1.1 - version: 8.1.1(@rspack/core@1.6.0(@swc/helpers@0.5.18))(postcss@8.5.1)(typescript@5.8.3)(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) + version: 8.1.1(@rspack/core@1.6.0(@swc/helpers@0.5.18))(postcss@8.5.6)(typescript@5.8.3)(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) react-native-test-app: specifier: catalog:testers - version: 4.4.7(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 5.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) tailwindcss: specifier: ^3.4.17 version: 3.4.17 terser-webpack-plugin: specifier: 'catalog:' - version: 5.3.14(@swc/core@1.13.3(@swc/helpers@0.5.18))(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) + version: 5.3.16(@swc/core@1.13.3(@swc/helpers@0.5.18))(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) thread-loader: specifier: ^4.0.4 version: 4.0.4(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) @@ -237,7 +237,7 @@ importers: version: 5.8.3 vitest: specifier: 'catalog:' - version: 4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5) + version: 4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2) webpack: specifier: 'catalog:' version: 5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18)) @@ -249,25 +249,25 @@ importers: version: link:../../packages/repack '@react-native-async-storage/async-storage': specifier: ^2.2.0 - version: 2.2.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0)) + version: 2.2.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0)) '@react-navigation/native': specifier: ^6.1.18 - version: 6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) '@react-navigation/native-stack': specifier: ^6.10.1 - version: 6.11.0(@react-navigation/native@6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-screens@4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 6.11.0(@react-navigation/native@6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react: specifier: 'catalog:' - version: 19.1.0 + version: 19.2.0 react-native: specifier: 'catalog:' - version: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + version: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) react-native-safe-area-context: specifier: ^5.6.1 - version: 5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react-native-screens: specifier: ^4.15.4 - version: 4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) devDependencies: '@babel/core': specifier: ^7.25.2 @@ -283,10 +283,10 @@ importers: version: 20.1.2 '@react-native/babel-preset': specifier: catalog:testers - version: 0.81.0(@babel/core@7.25.2) + version: 0.83.3(@babel/core@7.25.2) '@react-native/typescript-config': specifier: catalog:testers - version: 0.81.0 + version: 0.83.3 '@rsdoctor/rspack-plugin': specifier: ^1.5.2 version: 1.5.2(@rsbuild/core@2.0.0-alpha.4)(@rspack/core@1.6.0(@swc/helpers@0.5.18))(webpack@5.105.3) @@ -301,13 +301,13 @@ importers: version: 29.5.14 '@types/react': specifier: catalog:testers - version: 19.1.8 + version: 19.2.14 react-native-test-app: specifier: catalog:testers - version: 4.4.7(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 5.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) terser-webpack-plugin: specifier: 'catalog:' - version: 5.3.14(webpack@5.105.3) + version: 5.3.16(webpack@5.105.3) typescript: specifier: 'catalog:' version: 5.8.3 @@ -322,31 +322,31 @@ importers: version: link:../../packages/repack '@module-federation/enhanced': specifier: 0.12.0 - version: 0.12.0(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.105.3) + version: 0.12.0(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.2.0))(react@19.2.0)(typescript@5.8.3)(webpack@5.105.3) '@module-federation/runtime': specifier: 0.12.0 version: 0.12.0 '@react-native-async-storage/async-storage': specifier: ^2.2.0 - version: 2.2.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0)) + version: 2.2.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0)) '@react-navigation/native': specifier: ^6.1.18 - version: 6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) '@react-navigation/native-stack': specifier: ^6.10.1 - version: 6.11.0(@react-navigation/native@6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-screens@4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 6.11.0(@react-navigation/native@6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react: specifier: 'catalog:' - version: 19.1.0 + version: 19.2.0 react-native: specifier: 'catalog:' - version: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + version: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) react-native-safe-area-context: specifier: ^5.6.1 - version: 5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) react-native-screens: specifier: ^4.15.4 - version: 4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) devDependencies: '@babel/core': specifier: ^7.25.2 @@ -362,10 +362,10 @@ importers: version: 20.1.2 '@react-native/babel-preset': specifier: catalog:testers - version: 0.81.0(@babel/core@7.25.2) + version: 0.83.3(@babel/core@7.25.2) '@react-native/typescript-config': specifier: catalog:testers - version: 0.81.0 + version: 0.83.3 '@rsdoctor/rspack-plugin': specifier: ^1.5.2 version: 1.5.2(@rsbuild/core@2.0.0-alpha.4)(@rspack/core@1.6.0(@swc/helpers@0.5.18))(webpack@5.105.3) @@ -380,13 +380,13 @@ importers: version: 29.5.14 '@types/react': specifier: catalog:testers - version: 19.1.8 + version: 19.2.14 react-native-test-app: specifier: catalog:testers - version: 4.4.7(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + version: 5.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) terser-webpack-plugin: specifier: 'catalog:' - version: 5.3.14(webpack@5.105.3) + version: 5.3.16(webpack@5.105.3) typescript: specifier: 'catalog:' version: 5.8.3 @@ -398,7 +398,7 @@ importers: dependencies: '@babel/code-frame': specifier: ^7.26.2 - version: 7.26.2 + version: 7.29.0 '@fastify/middie': specifier: ^9.0.0 version: 9.1.0 @@ -428,14 +428,14 @@ importers: version: 28.1.3 source-map: specifier: ^0.7.4 - version: 0.7.4 + version: 0.7.6 ws: specifier: ^8.18.1 - version: 8.18.1 + version: 8.18.3 devDependencies: '@react-native/dev-middleware': - specifier: ^0.81.0 - version: 0.81.0 + specifier: ^0.83.3 + version: 0.83.3 '@types/babel__code-frame': specifier: ^7.0.6 version: 7.0.6 @@ -472,7 +472,7 @@ importers: version: 20.19.31 '@types/semver': specifier: ^7.5.8 - version: 7.5.8 + version: 7.7.0 '@types/which-pm-runs': specifier: ^1.0.2 version: 1.0.2 @@ -493,7 +493,7 @@ importers: version: 3.0.0 semver: specifier: ^7.6.3 - version: 7.6.3 + version: 7.7.4 typescript: specifier: 'catalog:' version: 5.8.3 @@ -539,10 +539,10 @@ importers: version: 20.19.31 nativewind: specifier: ^4.1.23 - version: 4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17) + version: 4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17) react-native-css-interop: specifier: ^0.1.22 - version: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17) + version: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17) webpack: specifier: 'catalog:' version: 5.105.3 @@ -551,7 +551,7 @@ importers: dependencies: semver: specifier: ^7.7.2 - version: 7.7.2 + version: 7.7.4 devDependencies: '@callstack/repack': specifier: workspace:* @@ -630,19 +630,19 @@ importers: version: 0.14.2 schema-utils: specifier: ^4.2.0 - version: 4.3.0 + version: 4.3.3 semver: specifier: ^7.7.2 - version: 7.7.2 + version: 7.7.4 shallowequal: specifier: ^1.1.0 version: 1.1.0 tapable: specifier: ^2.2.1 - version: 2.2.1 + version: 2.3.0 terser-webpack-plugin: specifier: ^5.3.14 - version: 5.3.14(webpack@5.105.3) + version: 5.3.16(webpack@5.105.3) throttleit: specifier: ^2.1.0 version: 2.1.0 @@ -664,7 +664,7 @@ importers: version: 7.24.8(@babel/core@7.25.2) '@module-federation/enhanced': specifier: 0.8.9 - version: 0.8.9(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.105.3) + version: 0.8.9(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.2.0))(react@19.2.0)(typescript@5.8.3)(webpack@5.105.3) '@module-federation/sdk': specifier: 0.6.10 version: 0.6.10 @@ -715,10 +715,10 @@ importers: version: 29.7.0(@types/node@20.19.31) react: specifier: 'catalog:' - version: 19.1.0 + version: 19.2.0 react-native: specifier: 'catalog:' - version: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + version: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) rspack-plugin-virtual-module: specifier: ^0.1.13 version: 0.1.13 @@ -757,7 +757,7 @@ importers: version: 5.8.3 vitest: specifier: 'catalog:' - version: 4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5) + version: 4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2) webpack: specifier: 'catalog:' version: 5.105.3 @@ -787,7 +787,7 @@ importers: version: 0.20.1 enhanced-resolve: specifier: ^5.18.1 - version: 5.18.1 + version: 5.19.0 jest: specifier: ^29.7.0 version: 29.7.0(@types/node@20.19.31) @@ -808,7 +808,7 @@ importers: version: 20.19.31 enhanced-resolve: specifier: ^5.18.1 - version: 5.18.1 + version: 5.19.0 memfs: specifier: ^4.11.1 version: 4.17.0 @@ -817,7 +817,7 @@ importers: version: 5.8.3 vitest: specifier: 'catalog:' - version: 4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5) + version: 4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2) website: dependencies: @@ -932,10 +932,6 @@ packages: resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.25.6': - resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==} - engines: {node: '>=6.9.0'} - '@babel/generator@7.29.1': resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} engines: {node: '>=6.9.0'} @@ -1015,18 +1011,10 @@ packages: resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.24.8': - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.27.1': resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.9': - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.28.5': resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} @@ -1043,11 +1031,6 @@ packages: resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==} engines: {node: '>=6.9.0'} - '@babel/parser@7.25.6': - resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.29.0': resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==} engines: {node: '>=6.0.0'} @@ -1604,26 +1587,14 @@ packages: resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==} engines: {node: '>=6.9.0'} - '@babel/template@7.25.0': - resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} - engines: {node: '>=6.9.0'} - '@babel/template@7.28.6': resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.25.6': - resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} - engines: {node: '>=6.9.0'} - '@babel/traverse@7.29.0': resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.6': - resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} - engines: {node: '>=6.9.0'} - '@babel/types@7.29.0': resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} engines: {node: '>=6.9.0'} @@ -2344,30 +2315,16 @@ packages: '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} - '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - '@jridgewell/source-map@0.3.6': resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@jridgewell/sourcemap-codec@1.5.5': resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} @@ -2950,28 +2907,28 @@ packages: engines: {node: '>=20.19.4'} hasBin: true - '@react-native/assets-registry@0.81.0': - resolution: {integrity: sha512-rZs8ziQ1YRV3Z5Mw5AR7YcgI3q1Ya9NIx6nyuZAT9wDSSjspSi+bww+Hargh/a4JfV2Ajcxpn9X9UiFJr1ddPw==} + '@react-native/assets-registry@0.83.3': + resolution: {integrity: sha512-fLr0bjdkPkNfVYuOTGhuhrocUnE5S5x0Jz66uRloOAuUMLrG8eEPaRU4denYjx1njCeIrnYQ9jm31zXojasv/Q==} engines: {node: '>= 20.19.4'} - '@react-native/babel-plugin-codegen@0.81.0': - resolution: {integrity: sha512-MEMlW91+2Kk9GiObRP1Nc6oTdiyvmSEbPMSC6kzUzDyouxnh5/x28uyNySmB2nb6ivcbmQ0lxaU059+CZSkKXQ==} + '@react-native/babel-plugin-codegen@0.83.3': + resolution: {integrity: sha512-qPQDYp5Q2YkfXugmu1G1/9WRnxYT2r1TXIiC6/kT295AOB3uh2pjWMDKUrSjg/pWkEghN9uckOUsf8rMtNAFeg==} engines: {node: '>= 20.19.4'} - '@react-native/babel-preset@0.81.0': - resolution: {integrity: sha512-RKMgCUGsso/2b32kgg24lB68LJ6qr2geLoSQTbisY6Usye0uXeXCgbZZDbILIX9upL4uzU4staMldRZ0v08F1g==} + '@react-native/babel-preset@0.83.3': + resolution: {integrity: sha512-4hqwY1hxu/TpV52sgSaA3SidHL5rfitgi/PWohdJMgIXy2/kL+x41YN13kF8EvRVfgLBP98GBkyGc0DwP47ADA==} engines: {node: '>= 20.19.4'} peerDependencies: '@babel/core': '*' - '@react-native/codegen@0.81.0': - resolution: {integrity: sha512-gPFutgtj8YqbwKKt3YpZKamUBGd9YZJV51Jq2aiDZ9oThkg1frUBa20E+Jdi7jKn982wjBMxAklAR85QGQ4xMA==} + '@react-native/codegen@0.83.3': + resolution: {integrity: sha512-4tMj70llnBSiPxLmvcUggAug5BM6yTJd+I98vQhe63MtclfXppWLeHlHf5OaIv0wG6mtJZvT6JDs4AjP3MNExA==} engines: {node: '>= 20.19.4'} peerDependencies: '@babel/core': '*' - '@react-native/community-cli-plugin@0.81.0': - resolution: {integrity: sha512-n04ACkCaLR54NmA/eWiDpjC16pHr7+yrbjQ6OEdRoXbm5EfL8FEre2kDAci7pfFdiSMpxdRULDlKpfQ+EV/GAQ==} + '@react-native/community-cli-plugin@0.83.3': + resolution: {integrity: sha512-gtO/GGzBvCwZJmG8icGwyFB71gFJBreiADqhUp8t2cG+5a4DarIZQRDIbpOU4WRv2Jws5VZ6sIUgR1M37UbSpQ==} engines: {node: '>= 20.19.4'} peerDependencies: '@react-native-community/cli': '*' @@ -2979,34 +2936,40 @@ packages: peerDependenciesMeta: '@react-native-community/cli': optional: true + '@react-native/metro-config': + optional: true + + '@react-native/debugger-frontend@0.83.3': + resolution: {integrity: sha512-eE4DgJwskNQI9UYetT8X1Za9psLr2/fZ1pxslOlkW2aat135HvBB5AZmrhLrLRBcpdkcXQHc13e7SrvjUK0Xiw==} + engines: {node: '>= 20.19.4'} - '@react-native/debugger-frontend@0.81.0': - resolution: {integrity: sha512-N/8uL2CGQfwiQRYFUNfmaYxRDSoSeOmFb56rb0PDnP3XbS5+X9ee7X4bdnukNHLGfkRdH7sVjlB8M5zE8XJOhw==} + '@react-native/debugger-shell@0.83.3': + resolution: {integrity: sha512-VpG2S3dCGaDnf9bK47dmmWytY6P02WlPZsGZUV33QUKs8yeTORGe7Nxv6PH6ek/uzTuKPMxpQZSg47jO8Qn54w==} engines: {node: '>= 20.19.4'} - '@react-native/dev-middleware@0.81.0': - resolution: {integrity: sha512-J/HeC/+VgRyGECPPr9rAbe5S0OL6MCIrvrC/kgNKSME5+ZQLCiTpt3pdAoAMXwXiF9a02Nmido0DnyM1acXTIA==} + '@react-native/dev-middleware@0.83.3': + resolution: {integrity: sha512-/RrqU1EB2+yHM0xPi0wFbiDkaxeAxq8ljjyFoAltxYlo13+SeyNdsFuvWbkI/aYxYOXRNB/7DwB/VubwJ9gSmw==} engines: {node: '>= 20.19.4'} - '@react-native/gradle-plugin@0.81.0': - resolution: {integrity: sha512-LGNtPXO1RKLws5ORRb4Q4YULi2qxM4qZRuARtwqM/1f2wyZVggqapoV0OXlaXaz+GiEd2ll3ROE4CcLN6J93jg==} + '@react-native/gradle-plugin@0.83.3': + resolution: {integrity: sha512-+d8yDxQjtCssq//eLqoWQ6f3W685Iio/52vEYBJF99EZfZFkyEKeCdsICJQIhRsvBd9NoOfKbm3WOpQHxomeqg==} engines: {node: '>= 20.19.4'} - '@react-native/js-polyfills@0.81.0': - resolution: {integrity: sha512-whXZWIogzoGpqdyTjqT89M6DXmlOkWqNpWoVOAwVi8XFCMO+L7WTk604okIgO6gdGZcP1YtFpQf9JusbKrv/XA==} + '@react-native/js-polyfills@0.83.3': + resolution: {integrity: sha512-KxS1x81uboe29lhxlP+ZbEFTdq2WI+45LMnPEUVA08qtmT8sBRdN66EsFYjSQFkPF85pWHIUfABgWxRsENm5OQ==} engines: {node: '>= 20.19.4'} - '@react-native/normalize-colors@0.81.0': - resolution: {integrity: sha512-3gEu/29uFgz+81hpUgdlOojM4rjHTIPwxpfygFNY60V6ywZih3eLDTS8kAjNZfPFHQbcYrNorJzwnL5yFF/uLw==} + '@react-native/normalize-colors@0.83.3': + resolution: {integrity: sha512-eW+sqaw3YH52Ghn9VSRcNNXEJhBlydHZznsJe5VWD+DTiftGUydwgC3kxfIIc0S5J3oQZUnDPsxEQdsHDzwRPQ==} - '@react-native/typescript-config@0.81.0': - resolution: {integrity: sha512-BnmmXHafGitDBD5naQF1wwaJ2LY1CLMABs009tVTF4ZOPK9/IrGdoNjuiI+tjHAeug6S68MlSNyVxknZ2JBIvw==} + '@react-native/typescript-config@0.83.3': + resolution: {integrity: sha512-iW1X9S4itdMy3WI3rJHk1dtXy/Wcx1P46FWN/+eFx2hJyzC4NmIGnSQPS/li42c9RDiKPwDGGZKAJkRYOJxeHA==} - '@react-native/virtualized-lists@0.81.0': - resolution: {integrity: sha512-p14QC5INHkbMZ96158sUxkSwN6zp138W11G+CRGoLJY4Q9WRJBCe7wHR5Owyy3XczQXrIih/vxAXwgYeZ2XByg==} + '@react-native/virtualized-lists@0.83.3': + resolution: {integrity: sha512-ujtUem9nlN/yIJUr84nfUObc7kUoKUt/ny3SxQS5Ixe/eZwIQHiFLGKPP4I5BQfSBqKa4XlnjSDd16znFQHOjQ==} engines: {node: '>= 20.19.4'} peerDependencies: - '@types/react': ^19.1.0 + '@types/react': ^19.2.0 react: '*' react-native: '*' peerDependenciesMeta: @@ -3068,8 +3031,8 @@ packages: react-native-web: optional: true - '@rnx-kit/react-native-host@0.5.11': - resolution: {integrity: sha512-kT2iDjcIQcMu21peY2TSMXQaFpfZ5hsQVYfZtXOlR4KSnG6bNpvoDFxKO6RRGZ9ODYUoCkCr5cmhpGt0ZH1sAw==} + '@rnx-kit/react-native-host@0.5.16': + resolution: {integrity: sha512-7PZpNEtDcVcQiudSME9g6pcqAp0ILG7VlkmR37/5SLa4KuUWniu0rLc+HMao5wZMeKwE9lN/d9i99DApKIz/vw==} engines: {node: '>=16.17'} peerDependencies: react-native: '>=0.66' @@ -3837,8 +3800,8 @@ packages: '@types/react@18.3.3': resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} - '@types/react@19.1.8': - resolution: {integrity: sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==} + '@types/react@19.2.14': + resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==} '@types/scheduler@0.16.8': resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} @@ -4014,6 +3977,10 @@ packages: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} + accepts@2.0.0: + resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} + engines: {node: '>= 0.6'} + acorn-import-attributes@1.9.5: resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} peerDependencies: @@ -4034,11 +4001,6 @@ packages: resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} engines: {node: '>=0.4.0'} - acorn@8.15.0: - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.16.0: resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} engines: {node: '>=0.4.0'} @@ -4182,9 +4144,6 @@ packages: axios@1.13.5: resolution: {integrity: sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==} - axios@1.8.4: - resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==} - babel-jest@29.7.0: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4227,8 +4186,8 @@ packages: babel-plugin-syntax-hermes-parser@0.20.1: resolution: {integrity: sha512-fTP6P0NV+0PrJLUQZSjAe7G4D/WvD2/Q38dNEsuBr9c6FUJ82VggApUQx6l3HnkvDtr5zHbNcJUIplGqumQ+Hg==} - babel-plugin-syntax-hermes-parser@0.29.1: - resolution: {integrity: sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==} + babel-plugin-syntax-hermes-parser@0.32.0: + resolution: {integrity: sha512-m5HthL++AbyeEA2FcdwOLfVFvWYECOBObLHNqdR8ceY4TsEdn4LdX2oTvbB2QJSSElE2AWA/b2MXZ/PF/CqLZg==} babel-plugin-transform-flow-enums@0.0.2: resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} @@ -4323,11 +4282,6 @@ packages: resolution: {integrity: sha512-1bYCrck5Qh5HUy7P+iDuK39v757/ry5PnQo20vf4sHGeUrYKL2N2OF05U9ARSGt06TpFDQiTv9MT+eitYgWWxA==} hasBin: true - browserslist@4.24.4: - resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.28.1: resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -4374,26 +4328,10 @@ packages: resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} engines: {node: '>= 0.4'} - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} - call-bound@1.0.4: resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} engines: {node: '>= 0.4'} - caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} - - caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} - - callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} - callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -4645,10 +4583,6 @@ packages: resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} engines: {node: '>= 0.4.0'} - cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} - cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} @@ -4708,8 +4642,8 @@ packages: resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} dataloader@1.4.0: resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} @@ -4746,15 +4680,6 @@ packages: supports-color: optional: true - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.4.3: resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} engines: {node: '>=6.0'} @@ -4808,10 +4733,6 @@ packages: defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} - define-lazy-prop@3.0.0: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} engines: {node: '>=12'} @@ -4879,9 +4800,6 @@ packages: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} - domutils@3.2.2: resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} @@ -4908,9 +4826,6 @@ packages: electron-to-chromium@1.5.302: resolution: {integrity: sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==} - electron-to-chromium@1.5.96: - resolution: {integrity: sha512-8AJUW6dh75Fm/ny8+kZKJzI1pgoE8bKLZlzDU2W1ENd+DXKJrx7I7l9hb8UWR4ojlnb5OlixMt00QWiYJoVw1w==} - emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} @@ -4941,10 +4856,6 @@ packages: resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} engines: {node: '>=10.13.0'} - enhanced-resolve@5.18.1: - resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} - engines: {node: '>=10.13.0'} - enhanced-resolve@5.19.0: resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==} engines: {node: '>=10.13.0'} @@ -4965,11 +4876,6 @@ packages: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} - envinfo@7.14.0: - resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==} - engines: {node: '>=4'} - hasBin: true - envinfo@7.21.0: resolution: {integrity: sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow==} engines: {node: '>=4'} @@ -4985,10 +4891,6 @@ packages: resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} engines: {node: '>= 0.8'} - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} - es-define-property@1.0.1: resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} engines: {node: '>= 0.4'} @@ -5188,10 +5090,6 @@ packages: fast-xml-builder@1.0.0: resolution: {integrity: sha512-fpZuDogrAgnyt9oDDz+5DBz0zgPdPZz6D4IR7iESxRXElrlGTRkHJ9eEt+SACRJwT0FNFrt71DFQIUFBJfX/uQ==} - fast-xml-parser@4.5.0: - resolution: {integrity: sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==} - hasBin: true - fast-xml-parser@5.4.1: resolution: {integrity: sha512-BQ30U1mKkvXQXXkAGcuyUA/GA26oEB7NzOtsxCDtyu62sjGw5QraKFhx2Em3WQNjPw9PG6MQ9yuIIgkSDfGu5A==} hasBin: true @@ -5209,6 +5107,11 @@ packages: fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fb-dotslash@0.5.8: + resolution: {integrity: sha512-XHYLKk9J4BupDxi9bSEhkfss0m+Vr9ChTrjhf9l2iw3jB5C7BnY4GVPoMcqbrTutsKJso6yj2nAB6BI/F2oZaA==} + engines: {node: '>=20'} + hasBin: true + fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} @@ -5310,23 +5213,10 @@ packages: debug: optional: true - follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - foreground-child@3.3.0: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} - form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} - form-data@4.0.5: resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} engines: {node: '>= 6'} @@ -5342,10 +5232,6 @@ packages: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} - fs-extra@11.3.0: resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} engines: {node: '>=14.14'} @@ -5384,10 +5270,6 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - get-intrinsic@1.3.0: resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} engines: {node: '>= 0.4'} @@ -5464,9 +5346,6 @@ packages: resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - gopd@1.2.0: resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} engines: {node: '>= 0.4'} @@ -5494,17 +5373,6 @@ packages: resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} engines: {node: '>=8'} - has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - has-symbols@1.1.0: resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} engines: {node: '>= 0.4'} @@ -5557,18 +5425,33 @@ packages: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true + hermes-compiler@0.14.1: + resolution: {integrity: sha512-+RPPQlayoZ9n6/KXKt5SFILWXCGJ/LV5d24L5smXrvTDrPS4L6dSctPczXauuvzFP3QEJbD1YO7Z3Ra4a+4IhA==} + hermes-estree@0.20.1: resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} hermes-estree@0.29.1: resolution: {integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==} + hermes-estree@0.32.0: + resolution: {integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==} + + hermes-estree@0.33.3: + resolution: {integrity: sha512-6kzYZHCk8Fy1Uc+t3HGYyJn3OL4aeqKLTyina4UFtWl8I0kSL7OmKThaiX+Uh2f8nGw3mo4Ifxg0M5Zk3/Oeqg==} + hermes-parser@0.20.1: resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} hermes-parser@0.29.1: resolution: {integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==} + hermes-parser@0.32.0: + resolution: {integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==} + + hermes-parser@0.33.3: + resolution: {integrity: sha512-Yg3HgaG4CqgyowtYjX/FsnPAuZdHOqSMtnbpylbptsQ9nwwSKsy6uRWcGO5RK0EqiX12q8HvDWKgeAVajRO5DA==} + homedir-polyfill@1.0.3: resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} engines: {node: '>=0.10.0'} @@ -5580,9 +5463,6 @@ packages: resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} engines: {node: '>=12'} - html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - html-entities@2.6.0: resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} @@ -5673,10 +5553,6 @@ packages: engines: {node: '>=16.x'} hasBin: true - import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} - import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -5734,10 +5610,6 @@ packages: is-decimal@2.0.1: resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} - is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} @@ -6061,11 +5933,6 @@ packages: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - jsesc@3.1.0: resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} engines: {node: '>=6'} @@ -6110,7 +5977,6 @@ packages: keygrip@1.1.0: resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} engines: {node: '>= 0.6'} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} @@ -6235,10 +6101,6 @@ packages: resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} engines: {node: '>=6'} - loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - loader-runner@4.3.1: resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==} engines: {node: '>=6.11.5'} @@ -6447,61 +6309,61 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - metro-babel-transformer@0.83.1: - resolution: {integrity: sha512-r3xAD3964E8dwDBaZNSO2aIIvWXjIK80uO2xo0/pi3WI8XWT9h5SCjtGWtMtE5PRWw+t20TN0q1WMRsjvhC1rQ==} + metro-babel-transformer@0.83.5: + resolution: {integrity: sha512-d9FfmgUEVejTiSb7bkQeLRGl6aeno2UpuPm3bo3rCYwxewj03ymvOn8s8vnS4fBqAPQ+cE9iQM40wh7nGXR+eA==} engines: {node: '>=20.19.4'} - metro-cache-key@0.83.1: - resolution: {integrity: sha512-ZUs+GD5CNeDLxx5UUWmfg26IL+Dnbryd+TLqTlZnDEgehkIa11kUSvgF92OFfJhONeXzV4rZDRGNXoo6JT+8Gg==} + metro-cache-key@0.83.5: + resolution: {integrity: sha512-Ycl8PBajB7bhbAI7Rt0xEyiF8oJ0RWX8EKkolV1KfCUlC++V/GStMSGpPLwnnBZXZWkCC5edBPzv1Hz1Yi0Euw==} engines: {node: '>=20.19.4'} - metro-cache@0.83.1: - resolution: {integrity: sha512-7N/Ad1PHa1YMWDNiyynTPq34Op2qIE68NWryGEQ4TSE3Zy6a8GpsYnEEZE4Qi6aHgsE+yZHKkRczeBgxhnFIxQ==} + metro-cache@0.83.5: + resolution: {integrity: sha512-oH+s4U+IfZyg8J42bne2Skc90rcuESIYf86dYittcdWQtPfcaFXWpByPyTuWk3rR1Zz3Eh5HOrcVImfEhhJLng==} engines: {node: '>=20.19.4'} - metro-config@0.83.1: - resolution: {integrity: sha512-HJhpZx3wyOkux/jeF1o7akFJzZFdbn6Zf7UQqWrvp7gqFqNulQ8Mju09raBgPmmSxKDl4LbbNeigkX0/nKY1QA==} + metro-config@0.83.5: + resolution: {integrity: sha512-JQ/PAASXH7yczgV6OCUSRhZYME+NU8NYjI2RcaG5ga4QfQ3T/XdiLzpSb3awWZYlDCcQb36l4Vl7i0Zw7/Tf9w==} engines: {node: '>=20.19.4'} - metro-core@0.83.1: - resolution: {integrity: sha512-uVL1eAJcMFd2o2Q7dsbpg8COaxjZBBGaXqO2OHnivpCdfanraVL8dPmY6It9ZeqWLOihUKZ2yHW4b6soVCzH/Q==} + metro-core@0.83.5: + resolution: {integrity: sha512-YcVcLCrf0ed4mdLa82Qob0VxYqfhmlRxUS8+TO4gosZo/gLwSvtdeOjc/Vt0pe/lvMNrBap9LlmvZM8FIsMgJQ==} engines: {node: '>=20.19.4'} - metro-file-map@0.83.1: - resolution: {integrity: sha512-Yu429lnexKl44PttKw3nhqgmpBR+6UQ/tRaYcxPeEShtcza9DWakCn7cjqDTQZtWR2A8xSNv139izJMyQ4CG+w==} + metro-file-map@0.83.5: + resolution: {integrity: sha512-ZEt8s3a1cnYbn40nyCD+CsZdYSlwtFh2kFym4lo+uvfM+UMMH+r/BsrC6rbNClSrt+B7rU9T+Te/sh/NL8ZZKQ==} engines: {node: '>=20.19.4'} - metro-minify-terser@0.83.1: - resolution: {integrity: sha512-kmooOxXLvKVxkh80IVSYO4weBdJDhCpg5NSPkjzzAnPJP43u6+usGXobkTWxxrAlq900bhzqKek4pBsUchlX6A==} + metro-minify-terser@0.83.5: + resolution: {integrity: sha512-Toe4Md1wS1PBqbvB0cFxBzKEVyyuYTUb0sgifAZh/mSvLH84qA1NAWik9sISWatzvfWf3rOGoUoO5E3f193a3Q==} engines: {node: '>=20.19.4'} - metro-resolver@0.83.1: - resolution: {integrity: sha512-t8j46kiILAqqFS5RNa+xpQyVjULxRxlvMidqUswPEk5nQVNdlJslqizDm/Et3v/JKwOtQGkYAQCHxP1zGStR/g==} + metro-resolver@0.83.5: + resolution: {integrity: sha512-7p3GtzVUpbAweJeCcUJihJeOQl1bDuimO5ueo1K0BUpUtR41q5EilbQ3klt16UTPPMpA+tISWBtsrqU556mY1A==} engines: {node: '>=20.19.4'} - metro-runtime@0.83.1: - resolution: {integrity: sha512-3Ag8ZS4IwafL/JUKlaeM6/CbkooY+WcVeqdNlBG0m4S0Qz0om3rdFdy1y6fYBpl6AwXJwWeMuXrvZdMuByTcRA==} + metro-runtime@0.83.5: + resolution: {integrity: sha512-f+b3ue9AWTVlZe2Xrki6TAoFtKIqw30jwfk7GQ1rDUBQaE0ZQ+NkiMEtb9uwH7uAjJ87U7Tdx1Jg1OJqUfEVlA==} engines: {node: '>=20.19.4'} - metro-source-map@0.83.1: - resolution: {integrity: sha512-De7Vbeo96fFZ2cqmI0fWwVJbtHIwPZv++LYlWSwzTiCzxBDJORncN0LcT48Vi2UlQLzXJg+/CuTAcy7NBVh69A==} + metro-source-map@0.83.5: + resolution: {integrity: sha512-VT9bb2KO2/4tWY9Z2yeZqTUao7CicKAOps9LUg2aQzsz+04QyuXL3qgf1cLUVRjA/D6G5u1RJAlN1w9VNHtODQ==} engines: {node: '>=20.19.4'} - metro-symbolicate@0.83.1: - resolution: {integrity: sha512-wPxYkONlq/Sv8Ji7vHEx5OzFouXAMQJjpcPW41ySKMLP/Ir18SsiJK2h4YkdKpYrTS1+0xf8oqF6nxCsT3uWtg==} + metro-symbolicate@0.83.5: + resolution: {integrity: sha512-EMIkrjNRz/hF+p0RDdxoE60+dkaTLPN3vaaGkFmX5lvFdO6HPfHA/Ywznzkev+za0VhPQ5KSdz49/MALBRteHA==} engines: {node: '>=20.19.4'} hasBin: true - metro-transform-plugins@0.83.1: - resolution: {integrity: sha512-1Y+I8oozXwhuS0qwC+ezaHXBf0jXW4oeYn4X39XWbZt9X2HfjodqY9bH9r6RUTsoiK7S4j8Ni2C91bUC+sktJQ==} + metro-transform-plugins@0.83.5: + resolution: {integrity: sha512-KxYKzZL+lt3Os5H2nx7YkbkWVduLZL5kPrE/Yq+Prm/DE1VLhpfnO6HtPs8vimYFKOa58ncl60GpoX0h7Wm0Vw==} engines: {node: '>=20.19.4'} - metro-transform-worker@0.83.1: - resolution: {integrity: sha512-owCrhPyUxdLgXEEEAL2b14GWTPZ2zYuab1VQXcfEy0sJE71iciD7fuMcrngoufh7e7UHDZ56q4ktXg8wgiYA1Q==} + metro-transform-worker@0.83.5: + resolution: {integrity: sha512-8N4pjkNXc6ytlP9oAM6MwqkvUepNSW39LKYl9NjUMpRDazBQ7oBpQDc8Sz4aI8jnH6AGhF7s1m/ayxkN1t04yA==} engines: {node: '>=20.19.4'} - metro@0.83.1: - resolution: {integrity: sha512-UGKepmTxoGD4HkQV8YWvpvwef7fUujNtTgG4Ygf7m/M0qjvb9VuDmAsEU+UdriRX7F61pnVK/opz89hjKlYTXA==} + metro@0.83.5: + resolution: {integrity: sha512-BgsXevY1MBac/3ZYv/RfNFf/4iuW9X7f4H8ZNkiH+r667HD9sVujxcmu4jvEzGCAm4/WyKdZCuyhAcyhTHOucQ==} engines: {node: '>=20.19.4'} hasBin: true @@ -6696,11 +6558,6 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanoid@3.3.8: - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - nativewind@4.1.23: resolution: {integrity: sha512-oLX3suGI6ojQqWxdQezOSM5GmJ4KvMnMtmaSMN9Ggb5j7ysFt4nHxb1xs8RDjZR7BWc+bsetNJU8IQdQMHqRpg==} engines: {node: '>=16'} @@ -6714,6 +6571,10 @@ packages: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} + negotiator@1.0.0: + resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} + engines: {node: '>= 0.6'} + neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} @@ -6740,9 +6601,6 @@ packages: resolution: {integrity: sha512-JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ==} engines: {node: '>=0.10.0'} - node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} - node-releases@2.0.27: resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} @@ -6779,8 +6637,8 @@ packages: nullthrows@1.1.1: resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - ob1@0.83.1: - resolution: {integrity: sha512-ngwqewtdUzFyycomdbdIhFLjePPSOt1awKMUXQ0L7iLHgWEPF3DsCerblzjzfAUHaXuvE9ccJymWQ/4PNNqvnQ==} + ob1@0.83.5: + resolution: {integrity: sha512-vNKPYC8L5ycVANANpF/S+WZHpfnRWKx/F3AYP4QMn6ZJTh+l2HOrId0clNkEmua58NB9vmI9Qh7YOoV/4folYg==} engines: {node: '>=20.19.4'} object-assign@4.1.1: @@ -6791,10 +6649,6 @@ packages: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} - object-inspect@1.13.4: resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} engines: {node: '>= 0.4'} @@ -6914,10 +6768,6 @@ packages: parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} - parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} - parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} @@ -7088,10 +6938,6 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.5.1: - resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.5.6: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} @@ -7146,10 +6992,6 @@ packages: pure-rand@6.1.0: resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - qs@6.13.0: - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} - engines: {node: '>=0.6'} - qs@6.15.0: resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==} engines: {node: '>=0.6'} @@ -7264,17 +7106,17 @@ packages: react: '*' react-native: '*' - react-native-test-app@4.4.7: - resolution: {integrity: sha512-QlNHPLW6uxE5zpXRX0uhF+h9uj9lHbpUzyHd6psVPrxMUxCeSXc5Z463BdKNvxYp6omSmUNQAirJKFheU5NDbw==} - engines: {node: '>=16.17'} + react-native-test-app@5.1.0: + resolution: {integrity: sha512-bgo7twAccpqOsEAPglTp7Wyc8ET8Rzu3Y8nBQqnDN+UdkyZ+3O/Yjtd+2Lk4C9ZjttdzKVldHaVH26joWUII5w==} + engines: {node: '>=18.12'} hasBin: true peerDependencies: - '@callstack/react-native-visionos': 0.73 - 0.78 + '@callstack/react-native-visionos': 0.76 - 0.79 '@expo/config-plugins': '>=5.0' - react: 18.1 - 19.1 - react-native: 0.70 - 0.81 || >=0.82.0-0 <0.82.0 - react-native-macos: ^0.0.0-0 || 0.71 - 0.78 - react-native-windows: ^0.0.0-0 || 0.70 - 0.79 + react: 18.2 - 19.2 + react-native: 0.76 - 0.84 || >=0.84.0-0 <0.85.0 + react-native-macos: ^0.0.0-0 || 0.76 - 0.81 + react-native-windows: ^0.0.0-0 || 0.76 - 0.81 peerDependenciesMeta: '@callstack/react-native-visionos': optional: true @@ -7292,13 +7134,13 @@ packages: react: '*' react-native: '*' - react-native@0.81.0: - resolution: {integrity: sha512-RDWhewHGsAa5uZpwIxnJNiv5tW2y6/DrQUjEBdAHPzGMwuMTshern2s4gZaWYeRU3SQguExVddCjiss9IBhxqA==} + react-native@0.83.3: + resolution: {integrity: sha512-J5tZyK5NKLs6Vvt0kBPvlkVL+JoGRAFgnHfyFEmcF+OPDc0+ibkM8ytK1cwG8tyilRrmuOLbUgCEMBh2iF+9Lw==} engines: {node: '>= 20.19.4'} hasBin: true peerDependencies: - '@types/react': ^19.1.0 - react: ^19.1.0 + '@types/react': ^19.1.1 + react: ^19.2.0 peerDependenciesMeta: '@types/react': optional: true @@ -7334,8 +7176,8 @@ packages: react-dom: optional: true - react@19.1.0: - resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} + react@19.2.0: + resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} engines: {node: '>=0.10.0'} react@19.2.4: @@ -7459,10 +7301,6 @@ packages: resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} engines: {node: '>=0.10.0'} - resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -7525,10 +7363,6 @@ packages: '@rsbuild/core': optional: true - rslog@1.2.3: - resolution: {integrity: sha512-antALPJaKBRPBU1X2q9t085K4htWDOOv/K1qhTUk7h0l1ePU/KbDqKJn19eKP0dk7PqMioeA0+fu3gyPXCsXxQ==} - engines: {node: '>=14.17.6'} - rslog@1.3.2: resolution: {integrity: sha512-1YyYXBvN0a2b1MSIDLwDTqqgjDzRKxUg/S/+KO6EAgbtZW1B3fdLHAMhEEtvk1patJYMqcRvlp3HQwnxj7AdGQ==} @@ -7558,20 +7392,9 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - scheduler@0.26.0: - resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} - scheduler@0.27.0: resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} - schema-utils@4.3.0: - resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==} - engines: {node: '>= 10.13.0'} - - schema-utils@4.3.2: - resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} - engines: {node: '>= 10.13.0'} - schema-utils@4.3.3: resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} engines: {node: '>= 10.13.0'} @@ -7633,10 +7456,6 @@ packages: set-cookie-parser@2.6.0: resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} - setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} @@ -7673,10 +7492,6 @@ packages: resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} engines: {node: '>= 0.4'} - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} - side-channel@1.1.0: resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} engines: {node: '>= 0.4'} @@ -7751,10 +7566,6 @@ packages: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - source-map@0.7.6: resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} engines: {node: '>= 12'} @@ -7874,9 +7685,6 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} - strnum@2.1.2: resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==} @@ -7919,10 +7727,6 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - tapable@2.2.3: resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==} engines: {node: '>=6'} @@ -7935,22 +7739,6 @@ packages: resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} engines: {node: '>=8'} - terser-webpack-plugin@5.3.14: - resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - terser-webpack-plugin@5.3.16: resolution: {integrity: sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==} engines: {node: '>= 10.13.0'} @@ -8038,10 +7826,6 @@ packages: tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -8206,9 +7990,6 @@ packages: unist-util-visit-parents@6.0.1: resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} - unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - unist-util-visit@5.1.0: resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} @@ -8228,12 +8009,6 @@ packages: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} - update-browserslist-db@1.1.2: - resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - update-browserslist-db@1.2.3: resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} hasBin: true @@ -8505,18 +8280,6 @@ packages: utf-8-validate: optional: true - ws@8.18.1: - resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - ws@8.18.3: resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} engines: {node: '>=10.0.0'} @@ -8547,9 +8310,9 @@ packages: yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yaml@2.4.5: - resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} - engines: {node: '>= 14'} + yaml@2.8.2: + resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} + engines: {node: '>= 14.6'} hasBin: true yargs-parser@18.1.3: @@ -8596,8 +8359,8 @@ snapshots: '@ampproject/remapping@2.3.0': dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@ast-grep/napi-darwin-arm64@0.36.3': optional: true @@ -8641,7 +8404,7 @@ snapshots: '@babel/cli@7.25.6(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 commander: 6.2.1 convert-source-map: 2.0.0 fs-readdir-recursive: 1.1.0 @@ -8654,7 +8417,7 @@ snapshots: '@babel/code-frame@7.26.2': dependencies: - '@babel/helper-validator-identifier': 7.25.9 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 picocolors: 1.1.1 @@ -8669,30 +8432,23 @@ snapshots: '@babel/core@7.25.2': dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.25.6 + '@babel/code-frame': 7.29.0 + '@babel/generator': 7.29.1 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) '@babel/helpers': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/parser': 7.29.0 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/generator@7.25.6': - dependencies: - '@babel/types': 7.25.6 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - '@babel/generator@7.29.1': dependencies: '@babel/parser': 7.29.0 @@ -8703,12 +8459,12 @@ snapshots: '@babel/helper-annotate-as-pure@7.24.7': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -8716,7 +8472,7 @@ snapshots: dependencies: '@babel/compat-data': 7.25.4 '@babel/helper-validator-option': 7.24.8 - browserslist: 4.24.4 + browserslist: 4.28.1 lru-cache: 5.1.1 semver: 6.3.1 @@ -8728,7 +8484,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.24.7 '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -8745,7 +8501,7 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -8755,15 +8511,15 @@ snapshots: '@babel/helper-member-expression-to-functions@7.24.8': dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.24.7': dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -8772,14 +8528,14 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-module-imports': 7.24.7 '@babel/helper-simple-access': 7.24.7 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.6 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.24.7': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 '@babel/helper-plugin-utils@7.24.8': {} @@ -8788,7 +8544,7 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-wrap-function': 7.25.0 - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -8797,50 +8553,42 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-member-expression-to-functions': 7.24.8 '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helper-simple-access@7.24.7': dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/helper-string-parser@7.24.8': {} - '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-validator-identifier@7.25.9': {} - '@babel/helper-validator-identifier@7.28.5': {} '@babel/helper-validator-option@7.24.8': {} '@babel/helper-wrap-function@7.25.0': dependencies: - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helpers@7.25.6': dependencies: - '@babel/template': 7.25.0 - '@babel/types': 7.25.6 - - '@babel/parser@7.25.6': - dependencies: - '@babel/types': 7.25.6 + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 '@babel/parser@7.29.0': dependencies: @@ -8850,7 +8598,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -8877,7 +8625,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -9018,7 +8766,7 @@ snapshots: '@babel/helper-plugin-utils': 7.24.8 '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2) - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -9065,7 +8813,7 @@ snapshots: '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -9074,7 +8822,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/template': 7.25.0 + '@babel/template': 7.28.6 '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)': dependencies: @@ -9137,7 +8885,7 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -9185,8 +8933,8 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.6 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -9314,7 +9062,7 @@ snapshots: '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -9502,7 +9250,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 esutils: 2.0.3 '@babel/preset-react@7.24.7(@babel/core@7.25.2)': @@ -9534,30 +9282,12 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.25.0': - dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 - '@babel/template@7.28.6': dependencies: '@babel/code-frame': 7.29.0 '@babel/parser': 7.29.0 '@babel/types': 7.29.0 - '@babel/traverse@7.25.6': - dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/types': 7.25.6 - debug: 4.4.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/traverse@7.29.0': dependencies: '@babel/code-frame': 7.29.0 @@ -9570,12 +9300,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/types@7.25.6': - dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.25.9 - to-fast-properties: 2.0.0 - '@babel/types@7.29.0': dependencies: '@babel/helper-string-parser': 7.27.1 @@ -9707,7 +9431,7 @@ snapshots: package-manager-detector: 0.2.11 picocolors: 1.1.1 resolve-from: 5.0.0 - semver: 7.7.2 + semver: 7.7.4 spawndamnit: 3.0.1 term-size: 2.2.1 @@ -10087,7 +9811,7 @@ snapshots: dequal: 2.0.3 fastify-plugin: 5.1.0 forwarded: 0.2.0 - http-errors: 2.0.0 + http-errors: 2.0.1 type-is: 2.0.1 vary: 1.1.2 @@ -10209,7 +9933,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 '@types/node': 20.19.31 chalk: 4.1.2 collect-v8-coverage: 1.0.2 @@ -10263,7 +9987,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -10301,30 +10025,15 @@ snapshots: '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/gen-mapping@0.3.5': - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/set-array@1.2.1': {} - '@jridgewell/source-map@0.3.6': dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - - '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/sourcemap-codec@1.5.5': {} - '@jridgewell/trace-mapping@0.3.25': - dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping@0.3.31': dependencies: '@jridgewell/resolve-uri': 3.1.2 @@ -10380,7 +10089,7 @@ snapshots: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 '@types/mdx': 2.0.13 - acorn: 8.15.0 + acorn: 8.16.0 collapse-white-space: 2.1.0 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 @@ -10389,17 +10098,17 @@ snapshots: hast-util-to-jsx-runtime: 2.3.6 markdown-extensions: 2.0.0 recma-build-jsx: 1.0.0 - recma-jsx: 1.0.0(acorn@8.15.0) + recma-jsx: 1.0.0(acorn@8.16.0) recma-stringify: 1.0.0 rehype-recma: 1.0.0 remark-mdx: 3.1.1 remark-parse: 11.0.0 remark-rehype: 11.1.2 - source-map: 0.7.4 + source-map: 0.7.6 unified: 11.0.5 unist-util-position-from-estree: 2.0.0 unist-util-stringify-position: 4.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 vfile: 6.0.2 transitivePeerDependencies: - supports-color @@ -10433,21 +10142,21 @@ snapshots: '@swc/helpers': 0.5.13 caniuse-lite: 1.0.30001774 lodash: 4.17.21 - rslog: 1.2.3 + rslog: 1.3.2 '@modern-js/utils@2.67.6': dependencies: '@swc/helpers': 0.5.18 caniuse-lite: 1.0.30001774 lodash: 4.17.21 - rslog: 1.2.3 + rslog: 1.3.2 '@modern-js/utils@2.68.2': dependencies: '@swc/helpers': 0.5.18 caniuse-lite: 1.0.30001774 lodash: 4.17.21 - rslog: 1.2.3 + rslog: 1.3.2 '@module-federation/bridge-react-webpack-plugin@0.12.0': dependencies: @@ -10539,13 +10248,13 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/data-prefetch@0.12.0(react-dom@19.2.4(react@19.1.0))(react@19.1.0)': + '@module-federation/data-prefetch@0.12.0(react-dom@19.2.4(react@19.2.0))(react@19.2.0)': dependencies: '@module-federation/runtime': 0.12.0 '@module-federation/sdk': 0.12.0 fs-extra: 9.1.0 - react: 19.1.0 - react-dom: 19.2.4(react@19.1.0) + react: 19.2.0 + react-dom: 19.2.4(react@19.2.0) '@module-federation/data-prefetch@0.15.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: @@ -10563,13 +10272,13 @@ snapshots: react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - '@module-federation/data-prefetch@0.8.9(react-dom@19.2.4(react@19.1.0))(react@19.1.0)': + '@module-federation/data-prefetch@0.8.9(react-dom@19.2.4(react@19.2.0))(react@19.2.0)': dependencies: '@module-federation/runtime': 0.8.9 '@module-federation/sdk': 0.8.9 fs-extra: 9.1.0 - react: 19.1.0 - react-dom: 19.2.4(react@19.1.0) + react: 19.2.0 + react-dom: 19.2.4(react@19.2.0) '@module-federation/data-prefetch@2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: @@ -10588,7 +10297,7 @@ snapshots: '@module-federation/third-party-dts-extractor': 0.12.0 adm-zip: 0.5.16 ansi-colors: 4.1.3 - axios: 1.8.4 + axios: 1.13.5 chalk: 3.0.0 fs-extra: 9.1.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -10613,7 +10322,7 @@ snapshots: '@module-federation/third-party-dts-extractor': 0.15.0 adm-zip: 0.5.16 ansi-colors: 4.1.3 - axios: 1.8.4 + axios: 1.13.5 chalk: 3.0.0 fs-extra: 9.1.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -10705,11 +10414,11 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.12.0(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.105.3)': + '@module-federation/enhanced@0.12.0(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.2.0))(react@19.2.0)(typescript@5.8.3)(webpack@5.105.3)': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.12.0 '@module-federation/cli': 0.12.0(typescript@5.8.3) - '@module-federation/data-prefetch': 0.12.0(react-dom@19.2.4(react@19.1.0))(react@19.1.0) + '@module-federation/data-prefetch': 0.12.0(react-dom@19.2.4(react@19.2.0))(react@19.2.0) '@module-federation/dts-plugin': 0.12.0(typescript@5.8.3) '@module-federation/error-codes': 0.12.0 '@module-federation/inject-external-runtime-core-plugin': 0.12.0(@module-federation/runtime-tools@0.12.0) @@ -10719,7 +10428,7 @@ snapshots: '@module-federation/runtime-tools': 0.12.0 '@module-federation/sdk': 0.12.0 btoa: 1.2.1 - schema-utils: 4.3.0 + schema-utils: 4.3.3 upath: 2.0.1 optionalDependencies: typescript: 5.8.3 @@ -10747,7 +10456,7 @@ snapshots: '@module-federation/runtime-tools': 0.15.0 '@module-federation/sdk': 0.15.0 btoa: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 upath: 2.0.1 optionalDependencies: typescript: 5.8.3 @@ -10775,7 +10484,7 @@ snapshots: '@module-federation/runtime-tools': 0.21.0 '@module-federation/sdk': 0.21.0 btoa: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 upath: 2.0.1 optionalDependencies: typescript: 5.8.3 @@ -10789,10 +10498,10 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.8.9(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.105.3)': + '@module-federation/enhanced@0.8.9(@rspack/core@1.6.0(@swc/helpers@0.5.18))(react-dom@19.2.4(react@19.2.0))(react@19.2.0)(typescript@5.8.3)(webpack@5.105.3)': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.8.9 - '@module-federation/data-prefetch': 0.8.9(react-dom@19.2.4(react@19.1.0))(react@19.1.0) + '@module-federation/data-prefetch': 0.8.9(react-dom@19.2.4(react@19.2.0))(react@19.2.0) '@module-federation/dts-plugin': 0.8.9(typescript@5.8.3) '@module-federation/error-codes': 0.8.9 '@module-federation/inject-external-runtime-core-plugin': 0.8.9(@module-federation/runtime-tools@0.8.9) @@ -10829,7 +10538,7 @@ snapshots: '@module-federation/runtime-tools': 2.0.1 '@module-federation/sdk': 2.0.1 btoa: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 upath: 2.0.1 optionalDependencies: typescript: 5.8.3 @@ -11298,10 +11007,10 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))': + '@react-native-async-storage/async-storage@2.2.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))': dependencies: merge-options: 3.0.4 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) '@react-native-community/cli-clean@20.1.2': dependencies: @@ -11344,14 +11053,14 @@ snapshots: '@react-native-community/cli-tools': 20.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 - envinfo: 7.14.0 + envinfo: 7.21.0 execa: 5.1.1 node-stream-zip: 1.15.0 ora: 5.4.1 picocolors: 1.1.1 - semver: 7.7.2 + semver: 7.7.4 wcwidth: 1.0.1 - yaml: 2.4.5 + yaml: 2.8.2 transitivePeerDependencies: - typescript @@ -11404,7 +11113,7 @@ snapshots: ora: 5.4.1 picocolors: 1.1.1 prompts: 2.4.2 - semver: 7.7.2 + semver: 7.7.4 '@react-native-community/cli-types@20.1.2': dependencies: @@ -11426,24 +11135,24 @@ snapshots: graceful-fs: 4.2.11 picocolors: 1.1.1 prompts: 2.4.2 - semver: 7.7.2 + semver: 7.7.4 transitivePeerDependencies: - bufferutil - supports-color - typescript - utf-8-validate - '@react-native/assets-registry@0.81.0': {} + '@react-native/assets-registry@0.83.3': {} - '@react-native/babel-plugin-codegen@0.81.0(@babel/core@7.25.2)': + '@react-native/babel-plugin-codegen@0.83.3(@babel/core@7.25.2)': dependencies: - '@babel/traverse': 7.25.6 - '@react-native/codegen': 0.81.0(@babel/core@7.25.2) + '@babel/traverse': 7.29.0 + '@react-native/codegen': 0.83.3(@babel/core@7.25.2) transitivePeerDependencies: - '@babel/core' - supports-color - '@react-native/babel-preset@0.81.0(@babel/core@7.25.2)': + '@react-native/babel-preset@0.83.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.25.2) @@ -11485,32 +11194,33 @@ snapshots: '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2) '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2) - '@babel/template': 7.25.0 - '@react-native/babel-plugin-codegen': 0.81.0(@babel/core@7.25.2) - babel-plugin-syntax-hermes-parser: 0.29.1 + '@babel/template': 7.28.6 + '@react-native/babel-plugin-codegen': 0.83.3(@babel/core@7.25.2) + babel-plugin-syntax-hermes-parser: 0.32.0 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.2) react-refresh: 0.14.2 transitivePeerDependencies: - supports-color - '@react-native/codegen@0.81.0(@babel/core@7.25.2)': + '@react-native/codegen@0.83.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 + '@babel/parser': 7.29.0 glob: 7.2.3 - hermes-parser: 0.29.1 + hermes-parser: 0.32.0 invariant: 2.2.4 nullthrows: 1.1.1 yargs: 17.7.2 - '@react-native/community-cli-plugin@0.81.0(@react-native-community/cli@20.1.2(typescript@5.8.3))': + '@react-native/community-cli-plugin@0.83.3(@react-native-community/cli@20.1.2(typescript@5.8.3))': dependencies: - '@react-native/dev-middleware': 0.81.0 - debug: 4.4.0 + '@react-native/dev-middleware': 0.83.3 + debug: 4.4.3 invariant: 2.2.4 - metro: 0.83.1 - metro-config: 0.83.1 - metro-core: 0.83.1 - semver: 7.7.2 + metro: 0.83.5 + metro-config: 0.83.5 + metro-core: 0.83.5 + semver: 7.7.4 optionalDependencies: '@react-native-community/cli': 20.1.2(typescript@5.8.3) transitivePeerDependencies: @@ -11518,107 +11228,113 @@ snapshots: - supports-color - utf-8-validate - '@react-native/debugger-frontend@0.81.0': {} + '@react-native/debugger-frontend@0.83.3': {} - '@react-native/dev-middleware@0.81.0': + '@react-native/debugger-shell@0.83.3': dependencies: - '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.81.0 - chrome-launcher: 0.15.2 + cross-spawn: 7.0.6 + fb-dotslash: 0.5.8 + + '@react-native/dev-middleware@0.83.3': + dependencies: + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.83.3 + '@react-native/debugger-shell': 0.83.3 + chrome-launcher: 0.15.2 chromium-edge-launcher: 0.2.0 connect: 3.7.0 - debug: 4.4.0 + debug: 4.4.3 invariant: 2.2.4 nullthrows: 1.1.1 open: 7.4.2 serve-static: 1.16.2 - ws: 6.2.3 + ws: 7.5.10 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@react-native/gradle-plugin@0.81.0': {} + '@react-native/gradle-plugin@0.83.3': {} - '@react-native/js-polyfills@0.81.0': {} + '@react-native/js-polyfills@0.83.3': {} - '@react-native/normalize-colors@0.81.0': {} + '@react-native/normalize-colors@0.83.3': {} - '@react-native/typescript-config@0.81.0': {} + '@react-native/typescript-config@0.83.3': {} - '@react-native/virtualized-lists@0.81.0(@types/react@19.1.8)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)': + '@react-native/virtualized-lists@0.83.3(@types/react@19.2.14)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) optionalDependencies: - '@types/react': 19.1.8 + '@types/react': 19.2.14 - '@react-native/virtualized-lists@0.81.0(@types/react@19.1.8)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4)': + '@react-native/virtualized-lists@0.83.3(@types/react@19.2.14)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 19.2.4 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4) optionalDependencies: - '@types/react': 19.1.8 + '@types/react': 19.2.14 - '@react-navigation/core@6.4.17(react@19.1.0)': + '@react-navigation/core@6.4.17(react@19.2.0)': dependencies: '@react-navigation/routers': 6.1.9 escape-string-regexp: 4.0.0 - nanoid: 3.3.8 + nanoid: 3.3.11 query-string: 7.1.3 - react: 19.1.0 + react: 19.2.0 react-is: 16.13.1 - use-latest-callback: 0.2.1(react@19.1.0) + use-latest-callback: 0.2.1(react@19.2.0) - '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)': + '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)': dependencies: - '@react-navigation/native': 6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) - react-native-safe-area-context: 5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) + react-native-safe-area-context: 5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) - '@react-navigation/native-stack@6.11.0(@react-navigation/native@6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-screens@4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)': + '@react-navigation/native-stack@6.11.0(@react-navigation/native@6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)': dependencies: - '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - '@react-navigation/native': 6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) - react-native-safe-area-context: 5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + '@react-navigation/native': 6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) + react-native-safe-area-context: 5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + react-native-screens: 4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) warn-once: 0.1.1 - '@react-navigation/native@6.1.18(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)': + '@react-navigation/native@6.1.18(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)': dependencies: - '@react-navigation/core': 6.4.17(react@19.1.0) + '@react-navigation/core': 6.4.17(react@19.2.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 - nanoid: 3.3.8 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + nanoid: 3.3.11 + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) '@react-navigation/routers@6.1.9': dependencies: - nanoid: 3.3.8 + nanoid: 3.3.11 - '@rn-primitives/slot@1.1.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)': + '@rn-primitives/slot@1.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)': dependencies: - react: 19.1.0 + react: 19.2.0 optionalDependencies: - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) - '@rn-primitives/types@1.1.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)': + '@rn-primitives/types@1.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)': dependencies: - react: 19.1.0 + react: 19.2.0 optionalDependencies: - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) - '@rnx-kit/react-native-host@0.5.11(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))': + '@rnx-kit/react-native-host@0.5.16(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))': dependencies: - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) '@rnx-kit/tools-node@3.0.0': {} @@ -11724,7 +11440,7 @@ snapshots: '@rsbuild/plugin-check-syntax@1.6.1(@rsbuild/core@2.0.0-alpha.4)': dependencies: - acorn: 8.15.0 + acorn: 8.16.0 browserslist-to-es-version: 1.4.1 htmlparser2: 10.0.0 picocolors: 1.1.1 @@ -11897,8 +11613,8 @@ snapshots: '@babel/code-frame': 7.26.2 '@rsdoctor/types': 1.5.2(@rspack/core@1.6.0(@swc/helpers@0.5.18))(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))) '@types/estree': 1.0.5 - acorn: 8.15.0 - acorn-import-attributes: 1.9.5(acorn@8.15.0) + acorn: 8.16.0 + acorn-import-attributes: 1.9.5(acorn@8.16.0) acorn-walk: 8.3.4 deep-eql: 4.1.4 envinfo: 7.21.0 @@ -11918,8 +11634,8 @@ snapshots: '@babel/code-frame': 7.26.2 '@rsdoctor/types': 1.5.2(@rspack/core@1.6.0(@swc/helpers@0.5.18))(webpack@5.105.3) '@types/estree': 1.0.5 - acorn: 8.15.0 - acorn-import-attributes: 1.9.5(acorn@8.15.0) + acorn: 8.16.0 + acorn-import-attributes: 1.9.5(acorn@8.16.0) acorn-walk: 8.3.4 deep-eql: 4.1.4 envinfo: 7.21.0 @@ -12105,7 +11821,7 @@ snapshots: '@rspack/plugin-react-refresh@1.0.0(react-refresh@0.14.2)': dependencies: error-stack-parser: 2.1.4 - html-entities: 2.5.2 + html-entities: 2.6.0 optionalDependencies: react-refresh: 0.14.2 @@ -12157,7 +11873,7 @@ snapshots: tinypool: 1.1.1 unified: 11.0.5 unist-util-remove: 4.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 unist-util-visit-children: 3.0.0 transitivePeerDependencies: - '@module-federation/runtime-tools' @@ -12308,7 +12024,7 @@ snapshots: '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 entities: 4.5.0 '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))': @@ -12416,24 +12132,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 + '@babel/parser': 7.29.0 + '@babel/types': 7.29.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 + '@babel/parser': 7.29.0 + '@babel/types': 7.29.0 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 '@types/chai@5.2.3': dependencies: @@ -12537,16 +12253,16 @@ snapshots: dependencies: '@types/prop-types': 15.7.12 '@types/scheduler': 0.16.8 - csstype: 3.1.3 + csstype: 3.2.3 '@types/react@18.3.3': dependencies: '@types/prop-types': 15.7.12 - csstype: 3.1.3 + csstype: 3.2.3 - '@types/react@19.1.8': + '@types/react@19.2.14': dependencies: - csstype: 3.1.3 + csstype: 3.2.3 '@types/scheduler@0.16.8': {} @@ -12560,7 +12276,7 @@ snapshots: '@types/tapable@2.2.7': dependencies: - tapable: 2.2.1 + tapable: 2.3.0 '@types/tinycolor2@1.4.6': {} @@ -12604,13 +12320,13 @@ snapshots: chai: 6.2.2 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5))': + '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2))': dependencies: '@vitest/spy': 4.0.18 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5) + vite: 7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2) '@vitest/pretty-format@4.0.18': dependencies: @@ -12729,23 +12445,26 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-import-attributes@1.9.5(acorn@8.15.0): + accepts@2.0.0: dependencies: - acorn: 8.15.0 + mime-types: 3.0.2 + negotiator: 1.0.0 + + acorn-import-attributes@1.9.5(acorn@8.16.0): + dependencies: + acorn: 8.16.0 acorn-import-phases@1.0.4(acorn@8.16.0): dependencies: acorn: 8.16.0 - acorn-jsx@5.3.2(acorn@8.15.0): + acorn-jsx@5.3.2(acorn@8.16.0): dependencies: - acorn: 8.15.0 + acorn: 8.16.0 acorn-walk@8.3.4: dependencies: - acorn: 8.15.0 - - acorn@8.15.0: {} + acorn: 8.16.0 acorn@8.16.0: {} @@ -12848,14 +12567,14 @@ snapshots: atomic-sleep@1.0.0: {} - autoprefixer@10.4.20(postcss@8.5.1): + autoprefixer@10.4.20(postcss@8.5.6): dependencies: - browserslist: 4.24.4 + browserslist: 4.28.1 caniuse-lite: 1.0.30001774 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 - postcss: 8.5.1 + postcss: 8.5.6 postcss-value-parser: 4.2.0 avvio@9.2.0: @@ -12865,20 +12584,12 @@ snapshots: axios@1.13.5: dependencies: - follow-redirects: 1.15.11 + follow-redirects: 1.15.11(debug@4.4.3) form-data: 4.0.5 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - axios@1.8.4: - dependencies: - follow-redirects: 1.15.6(debug@4.4.0) - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - babel-jest@29.7.0(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 @@ -12896,7 +12607,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 find-cache-dir: 4.0.0 - schema-utils: 4.3.0 + schema-utils: 4.3.3 webpack: 5.105.3 babel-plugin-istanbul@6.1.1: @@ -12911,8 +12622,8 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.25.0 - '@babel/types': 7.25.6 + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 @@ -12952,9 +12663,9 @@ snapshots: dependencies: hermes-parser: 0.20.1 - babel-plugin-syntax-hermes-parser@0.29.1: + babel-plugin-syntax-hermes-parser@0.32.0: dependencies: - hermes-parser: 0.29.1 + hermes-parser: 0.32.0 babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.2): dependencies: @@ -13019,7 +12730,7 @@ snapshots: bytes: 3.1.2 content-type: 1.0.5 debug: 4.4.3 - http-errors: 2.0.0 + http-errors: 2.0.1 iconv-lite: 0.7.2 on-finished: 2.4.1 qs: 6.15.0 @@ -13063,13 +12774,6 @@ snapshots: dependencies: browserslist: 4.28.1 - browserslist@4.24.4: - dependencies: - caniuse-lite: 1.0.30001774 - electron-to-chromium: 1.5.96 - node-releases: 2.0.19 - update-browserslist-db: 1.1.2(browserslist@4.24.4) - browserslist@4.28.1: dependencies: baseline-browser-mapping: 2.10.0 @@ -13113,29 +12817,11 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 - call-bind@1.0.7: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.2 - call-bound@1.0.4: dependencies: call-bind-apply-helpers: 1.0.2 get-intrinsic: 1.3.0 - caller-callsite@2.0.0: - dependencies: - callsites: 2.0.0 - - caller-path@2.0.0: - dependencies: - caller-callsite: 2.0.0 - - callsites@2.0.0: {} - callsites@3.1.0: {} camelcase-css@2.0.1: {} @@ -13358,7 +13044,7 @@ snapshots: core-js-compat@3.38.1: dependencies: - browserslist: 4.24.4 + browserslist: 4.28.1 core-js@3.41.0: {} @@ -13371,13 +13057,6 @@ snapshots: corser@2.0.1: {} - cosmiconfig@5.2.1: - dependencies: - import-fresh: 2.0.0 - is-directory: 0.3.1 - js-yaml: 3.14.1 - parse-json: 4.0.0 - cosmiconfig@8.3.6(typescript@5.8.3): dependencies: import-fresh: 3.3.0 @@ -13426,7 +13105,7 @@ snapshots: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.2 nth-check: 2.1.1 css-tree@1.1.3: @@ -13452,7 +13131,7 @@ snapshots: dependencies: css-tree: 2.2.1 - csstype@3.1.3: {} + csstype@3.2.3: {} dataloader@1.4.0: {} @@ -13472,10 +13151,6 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.4.0: - dependencies: - ms: 2.1.3 - debug@4.4.3: dependencies: ms: 2.1.3 @@ -13511,12 +13186,6 @@ snapshots: dependencies: clone: 1.0.4 - define-data-property@1.1.4: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - gopd: 1.0.1 - define-lazy-prop@3.0.0: {} delayed-stream@1.0.0: {} @@ -13563,12 +13232,6 @@ snapshots: dependencies: domelementtype: 2.3.0 - domutils@3.1.0: - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils@3.2.2: dependencies: dom-serializer: 2.0.0 @@ -13598,8 +13261,6 @@ snapshots: electron-to-chromium@1.5.302: {} - electron-to-chromium@1.5.96: {} - emittery@0.13.1: {} emoji-regex@8.0.0: {} @@ -13631,12 +13292,7 @@ snapshots: enhanced-resolve@5.12.0: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.1 - - enhanced-resolve@5.18.1: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 + tapable: 2.3.0 enhanced-resolve@5.19.0: dependencies: @@ -13654,8 +13310,6 @@ snapshots: env-paths@2.2.1: {} - envinfo@7.14.0: {} - envinfo@7.21.0: {} error-ex@1.3.2: @@ -13671,10 +13325,6 @@ snapshots: accepts: 1.3.8 escape-html: 1.0.3 - es-define-property@1.0.0: - dependencies: - get-intrinsic: 1.2.4 - es-define-property@1.0.1: {} es-errors@1.3.0: {} @@ -13706,7 +13356,7 @@ snapshots: esast-util-from-js@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 - acorn: 8.15.0 + acorn: 8.16.0 esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 @@ -13841,7 +13491,7 @@ snapshots: dependencies: '@types/estree-jsx': 1.0.5 astring: 1.8.6 - source-map: 0.7.4 + source-map: 0.7.6 estree-util-visit@2.0.0: dependencies: @@ -13954,10 +13604,6 @@ snapshots: fast-xml-builder@1.0.0: {} - fast-xml-parser@4.5.0: - dependencies: - strnum: 1.0.5 - fast-xml-parser@5.4.1: dependencies: fast-xml-builder: 1.0.0 @@ -13984,13 +13630,15 @@ snapshots: process-warning: 5.0.0 rfdc: 1.4.1 secure-json-parse: 4.1.0 - semver: 7.7.2 + semver: 7.7.4 toad-cache: 3.7.0 fastq@1.17.1: dependencies: reusify: 1.0.4 + fb-dotslash@0.5.8: {} + fb-watchman@2.0.2: dependencies: bser: 2.1.1 @@ -14087,23 +13735,15 @@ snapshots: pirates: 3.0.2 vlq: 0.2.3 - follow-redirects@1.15.11: {} - - follow-redirects@1.15.6(debug@4.4.0): + follow-redirects@1.15.11(debug@4.4.3): optionalDependencies: - debug: 4.4.0 + debug: 4.4.3 foreground-child@3.3.0: dependencies: cross-spawn: 7.0.6 signal-exit: 4.1.0 - form-data@4.0.0: - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 - form-data@4.0.5: dependencies: asynckit: 0.4.0 @@ -14118,12 +13758,6 @@ snapshots: fresh@0.5.2: {} - fs-extra@11.2.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - fs-extra@11.3.0: dependencies: graceful-fs: 4.2.11 @@ -14162,14 +13796,6 @@ snapshots: get-caller-file@2.0.5: {} - get-intrinsic@1.2.4: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - get-intrinsic@1.3.0: dependencies: call-bind-apply-helpers: 1.0.2 @@ -14271,10 +13897,6 @@ snapshots: merge2: 1.4.1 slash: 4.0.0 - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.4 - gopd@1.2.0: {} graceful-fs@4.2.11: {} @@ -14300,19 +13922,11 @@ snapshots: has-own-prop@2.0.0: {} - has-property-descriptors@1.0.2: - dependencies: - es-define-property: 1.0.0 - - has-proto@1.0.3: {} - - has-symbols@1.0.3: {} - has-symbols@1.1.0: {} has-tostringtag@1.0.2: dependencies: - has-symbols: 1.0.3 + has-symbols: 1.1.0 hasown@2.0.2: dependencies: @@ -14352,7 +13966,7 @@ snapshots: mdast-util-to-hast: 13.2.0 parse5: 7.1.2 unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 vfile: 6.0.2 web-namespaces: 2.0.1 zwitch: 2.0.4 @@ -14440,10 +14054,16 @@ snapshots: he@1.2.0: {} + hermes-compiler@0.14.1: {} + hermes-estree@0.20.1: {} hermes-estree@0.29.1: {} + hermes-estree@0.32.0: {} + + hermes-estree@0.33.3: {} + hermes-parser@0.20.1: dependencies: hermes-estree: 0.20.1 @@ -14452,6 +14072,14 @@ snapshots: dependencies: hermes-estree: 0.29.1 + hermes-parser@0.32.0: + dependencies: + hermes-estree: 0.32.0 + + hermes-parser@0.33.3: + dependencies: + hermes-estree: 0.33.3 + homedir-polyfill@1.0.3: dependencies: parse-passwd: 1.0.0 @@ -14462,8 +14090,6 @@ snapshots: dependencies: whatwg-encoding: 2.0.0 - html-entities@2.5.2: {} - html-entities@2.6.0: {} html-escaper@2.0.2: {} @@ -14509,18 +14135,18 @@ snapshots: http-proxy-middleware@3.0.3: dependencies: '@types/http-proxy': 1.17.16 - debug: 4.4.0 - http-proxy: 1.18.1(debug@4.4.0) + debug: 4.4.3 + http-proxy: 1.18.1(debug@4.4.3) is-glob: 4.0.3 is-plain-object: 5.0.0 micromatch: 4.0.8 transitivePeerDependencies: - supports-color - http-proxy@1.18.1(debug@4.4.0): + http-proxy@1.18.1(debug@4.4.3): dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.6(debug@4.4.0) + follow-redirects: 1.15.11(debug@4.4.3) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -14532,7 +14158,7 @@ snapshots: corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1(debug@4.4.3) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 @@ -14547,7 +14173,7 @@ snapshots: https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.4 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -14581,11 +14207,6 @@ snapshots: dependencies: queue: 6.0.2 - import-fresh@2.0.0: - dependencies: - caller-path: 2.0.0 - resolve-from: 3.0.0 - import-fresh@3.3.0: dependencies: parent-module: 1.0.1 @@ -14636,8 +14257,6 @@ snapshots: is-decimal@2.0.1: {} - is-directory@0.3.1: {} - is-docker@2.2.1: {} is-docker@3.0.0: {} @@ -14721,7 +14340,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.25.2 - '@babel/parser': 7.25.6 + '@babel/parser': 7.29.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 @@ -14731,7 +14350,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.25.2 - '@babel/parser': 7.25.6 + '@babel/parser': 7.29.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.4 @@ -14746,7 +14365,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.4.0 + debug: 4.4.3 istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -14904,7 +14523,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.29.0 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -15001,10 +14620,10 @@ snapshots: jest-snapshot@29.7.0: dependencies: '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 + '@babel/generator': 7.29.1 '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2) - '@babel/types': 7.25.6 + '@babel/types': 7.29.0 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -15108,8 +14727,6 @@ snapshots: jsesc@0.5.0: {} - jsesc@2.5.2: {} - jsesc@3.1.0: {} json-parse-better-errors@1.0.2: {} @@ -15147,7 +14764,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.7.2 + semver: 7.7.4 jwa@2.0.1: dependencies: @@ -15210,7 +14827,7 @@ snapshots: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.4.0 + debug: 4.4.3 delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -15243,12 +14860,12 @@ snapshots: escape-html: 1.0.3 fresh: 0.5.2 http-assert: 1.5.0 - http-errors: 2.0.0 + http-errors: 2.0.1 koa-compose: 4.1.0 mime-types: 3.0.2 on-finished: 2.4.1 parseurl: 1.3.3 - statuses: 2.0.1 + statuses: 2.0.2 type-is: 2.0.1 vary: 1.1.2 @@ -15351,8 +14968,6 @@ snapshots: pify: 4.0.1 strip-bom: 3.0.0 - loader-runner@4.3.0: {} - loader-runner@4.3.1: {} locate-path@3.0.0: @@ -15609,7 +15224,7 @@ snapshots: micromark-util-sanitize-uri: 2.0.0 trim-lines: 3.0.1 unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 vfile: 6.0.2 mdast-util-to-markdown@2.1.0: @@ -15620,7 +15235,7 @@ snapshots: mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 micromark-util-decode-string: 2.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 zwitch: 2.0.4 mdast-util-to-string@4.0.0: @@ -15656,52 +15271,52 @@ snapshots: merge2@1.4.1: {} - metro-babel-transformer@0.83.1: + metro-babel-transformer@0.83.5: dependencies: '@babel/core': 7.25.2 flow-enums-runtime: 0.0.6 - hermes-parser: 0.29.1 + hermes-parser: 0.33.3 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - metro-cache-key@0.83.1: + metro-cache-key@0.83.5: dependencies: flow-enums-runtime: 0.0.6 - metro-cache@0.83.1: + metro-cache@0.83.5: dependencies: exponential-backoff: 3.1.1 flow-enums-runtime: 0.0.6 https-proxy-agent: 7.0.6 - metro-core: 0.83.1 + metro-core: 0.83.5 transitivePeerDependencies: - supports-color - metro-config@0.83.1: + metro-config@0.83.5: dependencies: connect: 3.7.0 - cosmiconfig: 5.2.1 flow-enums-runtime: 0.0.6 jest-validate: 29.7.0 - metro: 0.83.1 - metro-cache: 0.83.1 - metro-core: 0.83.1 - metro-runtime: 0.83.1 + metro: 0.83.5 + metro-cache: 0.83.5 + metro-core: 0.83.5 + metro-runtime: 0.83.5 + yaml: 2.8.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - metro-core@0.83.1: + metro-core@0.83.5: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 - metro-resolver: 0.83.1 + metro-resolver: 0.83.5 - metro-file-map@0.83.1: + metro-file-map@0.83.5: dependencies: - debug: 4.4.0 + debug: 4.4.3 fb-watchman: 2.0.2 flow-enums-runtime: 0.0.6 graceful-fs: 4.2.11 @@ -15713,113 +15328,112 @@ snapshots: transitivePeerDependencies: - supports-color - metro-minify-terser@0.83.1: + metro-minify-terser@0.83.5: dependencies: flow-enums-runtime: 0.0.6 terser: 5.31.3 - metro-resolver@0.83.1: + metro-resolver@0.83.5: dependencies: flow-enums-runtime: 0.0.6 - metro-runtime@0.83.1: + metro-runtime@0.83.5: dependencies: '@babel/runtime': 7.25.6 flow-enums-runtime: 0.0.6 - metro-source-map@0.83.1: + metro-source-map@0.83.5: dependencies: - '@babel/traverse': 7.25.6 - '@babel/traverse--for-generate-function-map': '@babel/traverse@7.29.0' - '@babel/types': 7.25.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-symbolicate: 0.83.1 + metro-symbolicate: 0.83.5 nullthrows: 1.1.1 - ob1: 0.83.1 + ob1: 0.83.5 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - metro-symbolicate@0.83.1: + metro-symbolicate@0.83.5: dependencies: flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-source-map: 0.83.1 + metro-source-map: 0.83.5 nullthrows: 1.1.1 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - metro-transform-plugins@0.83.1: + metro-transform-plugins@0.83.5: dependencies: '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 + '@babel/generator': 7.29.1 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 flow-enums-runtime: 0.0.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - metro-transform-worker@0.83.1: + metro-transform-worker@0.83.5: dependencies: '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.0 + '@babel/types': 7.29.0 flow-enums-runtime: 0.0.6 - metro: 0.83.1 - metro-babel-transformer: 0.83.1 - metro-cache: 0.83.1 - metro-cache-key: 0.83.1 - metro-minify-terser: 0.83.1 - metro-source-map: 0.83.1 - metro-transform-plugins: 0.83.1 + metro: 0.83.5 + metro-babel-transformer: 0.83.5 + metro-cache: 0.83.5 + metro-cache-key: 0.83.5 + metro-minify-terser: 0.83.5 + metro-source-map: 0.83.5 + metro-transform-plugins: 0.83.5 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - metro@0.83.1: + metro@0.83.5: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.29.0 '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 - accepts: 1.3.8 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.0 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + accepts: 2.0.0 chalk: 4.1.2 ci-info: 2.0.0 connect: 3.7.0 - debug: 4.4.0 + debug: 4.4.3 error-stack-parser: 2.1.4 flow-enums-runtime: 0.0.6 graceful-fs: 4.2.11 - hermes-parser: 0.29.1 + hermes-parser: 0.33.3 image-size: 1.1.1 invariant: 2.2.4 jest-worker: 29.7.0 jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.83.1 - metro-cache: 0.83.1 - metro-cache-key: 0.83.1 - metro-config: 0.83.1 - metro-core: 0.83.1 - metro-file-map: 0.83.1 - metro-resolver: 0.83.1 - metro-runtime: 0.83.1 - metro-source-map: 0.83.1 - metro-symbolicate: 0.83.1 - metro-transform-plugins: 0.83.1 - metro-transform-worker: 0.83.1 - mime-types: 2.1.35 + metro-babel-transformer: 0.83.5 + metro-cache: 0.83.5 + metro-cache-key: 0.83.5 + metro-config: 0.83.5 + metro-core: 0.83.5 + metro-file-map: 0.83.5 + metro-resolver: 0.83.5 + metro-runtime: 0.83.5 + metro-source-map: 0.83.5 + metro-symbolicate: 0.83.5 + metro-transform-plugins: 0.83.5 + metro-transform-worker: 0.83.5 + mime-types: 3.0.2 nullthrows: 1.1.1 serialize-error: 2.1.0 source-map: 0.5.7 @@ -15950,8 +15564,8 @@ snapshots: micromark-extension-mdxjs@3.0.0: dependencies: - acorn: 8.15.0 - acorn-jsx: 5.3.2(acorn@8.15.0) + acorn: 8.16.0 + acorn-jsx: 5.3.2(acorn@8.16.0) micromark-extension-mdx-expression: 3.0.1 micromark-extension-mdx-jsx: 3.0.2 micromark-extension-mdx-md: 2.0.0 @@ -16076,7 +15690,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.4.0 + debug: 4.4.3 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -16158,13 +15772,11 @@ snapshots: nanoid@3.3.11: {} - nanoid@3.3.8: {} - - nativewind@4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17): + nativewind@4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-svg@15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@3.4.17): dependencies: comment-json: 4.2.5 - debug: 4.4.0 - react-native-css-interop: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17) + debug: 4.4.3 + react-native-css-interop: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-svg@15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@3.4.17) tailwindcss: 3.4.17 transitivePeerDependencies: - react @@ -16174,11 +15786,11 @@ snapshots: - react-native-svg - supports-color - nativewind@4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17): + nativewind@4.1.23(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17): dependencies: comment-json: 4.2.5 - debug: 4.4.0 - react-native-css-interop: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17) + debug: 4.4.3 + react-native-css-interop: 0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17) tailwindcss: 3.4.17 transitivePeerDependencies: - react @@ -16192,6 +15804,8 @@ snapshots: negotiator@0.6.3: {} + negotiator@1.0.0: {} + neo-async@2.6.2: {} no-case@3.0.4: @@ -16209,8 +15823,6 @@ snapshots: node-modules-regexp@1.0.0: {} - node-releases@2.0.19: {} - node-releases@2.0.27: {} node-schedule@2.1.1: @@ -16242,7 +15854,7 @@ snapshots: nullthrows@1.1.1: {} - ob1@0.83.1: + ob1@0.83.5: dependencies: flow-enums-runtime: 0.0.6 @@ -16250,8 +15862,6 @@ snapshots: object-hash@3.0.0: {} - object-inspect@1.13.2: {} - object-inspect@1.13.4: {} obug@2.1.1: {} @@ -16377,14 +15987,9 @@ snapshots: is-decimal: 2.0.1 is-hexadecimal: 2.0.1 - parse-json@4.0.0: - dependencies: - error-ex: 1.3.2 - json-parse-better-errors: 1.0.2 - parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.29.0 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -16488,40 +16093,40 @@ snapshots: transitivePeerDependencies: - supports-color - postcss-import@15.1.0(postcss@8.5.1): + postcss-import@15.1.0(postcss@8.5.6): dependencies: - postcss: 8.5.1 + postcss: 8.5.6 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.5.1): + postcss-js@4.0.1(postcss@8.5.6): dependencies: camelcase-css: 2.0.1 - postcss: 8.5.1 + postcss: 8.5.6 - postcss-load-config@4.0.2(postcss@8.5.1): + postcss-load-config@4.0.2(postcss@8.5.6): dependencies: lilconfig: 3.1.3 - yaml: 2.4.5 + yaml: 2.8.2 optionalDependencies: - postcss: 8.5.1 + postcss: 8.5.6 - postcss-loader@8.1.1(@rspack/core@1.6.0(@swc/helpers@0.5.18))(postcss@8.5.1)(typescript@5.8.3)(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))): + postcss-loader@8.1.1(@rspack/core@1.6.0(@swc/helpers@0.5.18))(postcss@8.5.6)(typescript@5.8.3)(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))): dependencies: cosmiconfig: 9.0.0(typescript@5.8.3) jiti: 1.21.7 - postcss: 8.5.1 - semver: 7.7.2 + postcss: 8.5.6 + semver: 7.7.4 optionalDependencies: '@rspack/core': 1.6.0(@swc/helpers@0.5.18) webpack: 5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18)) transitivePeerDependencies: - typescript - postcss-nested@6.2.0(postcss@8.5.1): + postcss-nested@6.2.0(postcss@8.5.6): dependencies: - postcss: 8.5.1 + postcss: 8.5.6 postcss-selector-parser: 6.1.2 postcss-selector-parser@6.1.2: @@ -16531,12 +16136,6 @@ snapshots: postcss-value-parser@4.2.0: {} - postcss@8.5.1: - dependencies: - nanoid: 3.3.8 - picocolors: 1.1.1 - source-map-js: 1.2.1 - postcss@8.5.6: dependencies: nanoid: 3.3.11 @@ -16596,10 +16195,6 @@ snapshots: pure-rand@6.1.0: {} - qs@6.13.0: - dependencies: - side-channel: 1.0.6 - qs@6.15.0: dependencies: side-channel: 1.1.0 @@ -16644,9 +16239,9 @@ snapshots: - bufferutil - utf-8-validate - react-dom@19.2.4(react@19.1.0): + react-dom@19.2.4(react@19.2.0): dependencies: - react: 19.1.0 + react: 19.2.0 scheduler: 0.27.0 react-dom@19.2.4(react@19.2.4): @@ -16654,9 +16249,9 @@ snapshots: react: 19.2.4 scheduler: 0.27.0 - react-freeze@1.0.4(react@19.1.0): + react-freeze@1.0.4(react@19.2.0): dependencies: - react: 19.1.0 + react: 19.2.0 react-is@16.13.1: {} @@ -16666,107 +16261,107 @@ snapshots: react-lazy-with-preload@2.2.1: {} - react-native-css-interop@0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17): + react-native-css-interop@0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-svg@15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@3.4.17): dependencies: '@babel/helper-module-imports': 7.24.7 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 - debug: 4.4.0 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + debug: 4.4.3 lightningcss: 1.28.2 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) - react-native-reanimated: 4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - semver: 7.7.2 + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) + react-native-reanimated: 4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + semver: 7.7.4 tailwindcss: 3.4.17 optionalDependencies: - react-native-safe-area-context: 5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - react-native-svg: 15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + react-native-safe-area-context: 5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + react-native-svg: 15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) transitivePeerDependencies: - supports-color - react-native-css-interop@0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17): + react-native-css-interop@0.1.22(react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(tailwindcss@3.4.17): dependencies: '@babel/helper-module-imports': 7.24.7 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 - debug: 4.4.0 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + debug: 4.4.3 lightningcss: 1.28.2 react: 19.2.4 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4) - react-native-reanimated: 4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4) - semver: 7.7.2 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4) + react-native-reanimated: 4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4) + semver: 7.7.4 tailwindcss: 3.4.17 transitivePeerDependencies: - supports-color - react-native-is-edge-to-edge@1.2.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-is-edge-to-edge@1.2.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) - react-native-is-edge-to-edge@1.2.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4): + react-native-is-edge-to-edge@1.2.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4): dependencies: react: 19.2.4 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4) - react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: '@babel/core': 7.25.2 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) - react-native-is-edge-to-edge: 1.2.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) - react-native-worklets: 0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) + react-native-is-edge-to-edge: 1.2.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) + react-native-worklets: 0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) semver: 7.7.2 - react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4))(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4): + react-native-reanimated@4.0.0(@babel/core@7.25.2)(react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4): dependencies: '@babel/core': 7.25.2 react: 19.2.4 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4) - react-native-is-edge-to-edge: 1.2.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4) - react-native-worklets: 0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4) + react-native-is-edge-to-edge: 1.2.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4) + react-native-worklets: 0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4) semver: 7.7.2 - react-native-safe-area-context@5.5.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-safe-area-context@5.5.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) - react-native-safe-area-context@5.6.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-safe-area-context@5.6.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) - react-native-screens@4.15.4(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-screens@4.15.4(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: - react: 19.1.0 - react-freeze: 1.0.4(react@19.1.0) - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) - react-native-is-edge-to-edge: 1.2.1(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + react: 19.2.0 + react-freeze: 1.0.4(react@19.2.0) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) + react-native-is-edge-to-edge: 1.2.1(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) warn-once: 0.1.1 - react-native-svg@15.12.0(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-svg@15.12.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: css-select: 5.1.0 css-tree: 1.1.3 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) warn-once: 0.1.1 - react-native-test-app@4.4.7(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-test-app@5.1.0(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: - '@rnx-kit/react-native-host': 0.5.11(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0)) + '@rnx-kit/react-native-host': 0.5.16(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0)) '@rnx-kit/tools-react-native': 2.1.0 ajv: 8.17.1 cliui: 8.0.1 - fast-xml-parser: 4.5.0 + fast-xml-parser: 5.4.1 prompts: 2.4.2 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) - semver: 7.7.2 + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) + semver: 7.7.4 uuid: 11.1.0 - react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2) @@ -16779,12 +16374,12 @@ snapshots: '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2) '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2) convert-source-map: 2.0.0 - react: 19.1.0 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0) + react: 19.2.0 + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0) transitivePeerDependencies: - supports-color - react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4): + react-native-worklets@0.4.0(@babel/core@7.25.2)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4): dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2) @@ -16798,49 +16393,50 @@ snapshots: '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2) convert-source-map: 2.0.0 react: 19.2.4 - react-native: 0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4) + react-native: 0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4) transitivePeerDependencies: - supports-color - react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0): + react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native/assets-registry': 0.81.0 - '@react-native/codegen': 0.81.0(@babel/core@7.25.2) - '@react-native/community-cli-plugin': 0.81.0(@react-native-community/cli@20.1.2(typescript@5.8.3)) - '@react-native/gradle-plugin': 0.81.0 - '@react-native/js-polyfills': 0.81.0 - '@react-native/normalize-colors': 0.81.0 - '@react-native/virtualized-lists': 0.81.0(@types/react@19.1.8)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + '@react-native/assets-registry': 0.83.3 + '@react-native/codegen': 0.83.3(@babel/core@7.25.2) + '@react-native/community-cli-plugin': 0.83.3(@react-native-community/cli@20.1.2(typescript@5.8.3)) + '@react-native/gradle-plugin': 0.83.3 + '@react-native/js-polyfills': 0.83.3 + '@react-native/normalize-colors': 0.83.3 + '@react-native/virtualized-lists': 0.83.3(@types/react@19.2.14)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 babel-jest: 29.7.0(@babel/core@7.25.2) - babel-plugin-syntax-hermes-parser: 0.29.1 + babel-plugin-syntax-hermes-parser: 0.32.0 base64-js: 1.5.1 commander: 12.1.0 flow-enums-runtime: 0.0.6 glob: 7.2.3 + hermes-compiler: 0.14.1 invariant: 2.2.4 jest-environment-node: 29.7.0 memoize-one: 5.2.1 - metro-runtime: 0.83.1 - metro-source-map: 0.83.1 + metro-runtime: 0.83.5 + metro-source-map: 0.83.5 nullthrows: 1.1.1 pretty-format: 29.7.0 promise: 8.3.0 - react: 19.1.0 + react: 19.2.0 react-devtools-core: 6.1.5 react-refresh: 0.14.2 regenerator-runtime: 0.13.11 - scheduler: 0.26.0 - semver: 7.7.2 + scheduler: 0.27.0 + semver: 7.7.4 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 - ws: 6.2.3 + ws: 7.5.10 yargs: 17.7.2 optionalDependencies: - '@types/react': 19.1.8 + '@types/react': 19.2.14 transitivePeerDependencies: - '@babel/core' - '@react-native-community/cli' @@ -16849,30 +16445,31 @@ snapshots: - supports-color - utf-8-validate - react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4): + react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native/assets-registry': 0.81.0 - '@react-native/codegen': 0.81.0(@babel/core@7.25.2) - '@react-native/community-cli-plugin': 0.81.0(@react-native-community/cli@20.1.2(typescript@5.8.3)) - '@react-native/gradle-plugin': 0.81.0 - '@react-native/js-polyfills': 0.81.0 - '@react-native/normalize-colors': 0.81.0 - '@react-native/virtualized-lists': 0.81.0(@types/react@19.1.8)(react-native@0.81.0(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.1.8)(react@19.2.4))(react@19.2.4) + '@react-native/assets-registry': 0.83.3 + '@react-native/codegen': 0.83.3(@babel/core@7.25.2) + '@react-native/community-cli-plugin': 0.83.3(@react-native-community/cli@20.1.2(typescript@5.8.3)) + '@react-native/gradle-plugin': 0.83.3 + '@react-native/js-polyfills': 0.83.3 + '@react-native/normalize-colors': 0.83.3 + '@react-native/virtualized-lists': 0.83.3(@types/react@19.2.14)(react-native@0.83.3(@babel/core@7.25.2)(@react-native-community/cli@20.1.2(typescript@5.8.3))(@types/react@19.2.14)(react@19.2.4))(react@19.2.4) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 babel-jest: 29.7.0(@babel/core@7.25.2) - babel-plugin-syntax-hermes-parser: 0.29.1 + babel-plugin-syntax-hermes-parser: 0.32.0 base64-js: 1.5.1 commander: 12.1.0 flow-enums-runtime: 0.0.6 glob: 7.2.3 + hermes-compiler: 0.14.1 invariant: 2.2.4 jest-environment-node: 29.7.0 memoize-one: 5.2.1 - metro-runtime: 0.83.1 - metro-source-map: 0.83.1 + metro-runtime: 0.83.5 + metro-source-map: 0.83.5 nullthrows: 1.1.1 pretty-format: 29.7.0 promise: 8.3.0 @@ -16880,14 +16477,14 @@ snapshots: react-devtools-core: 6.1.5 react-refresh: 0.14.2 regenerator-runtime: 0.13.11 - scheduler: 0.26.0 - semver: 7.7.2 + scheduler: 0.27.0 + semver: 7.7.4 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 - ws: 6.2.3 + ws: 7.5.10 yargs: 17.7.2 optionalDependencies: - '@types/react': 19.1.8 + '@types/react': 19.2.14 transitivePeerDependencies: - '@babel/core' - '@react-native-community/cli' @@ -16919,7 +16516,7 @@ snapshots: optionalDependencies: react-dom: 19.2.4(react@19.2.4) - react@19.1.0: {} + react@19.2.0: {} react@19.2.4: {} @@ -16952,9 +16549,9 @@ snapshots: estree-util-build-jsx: 3.0.1 vfile: 6.0.2 - recma-jsx@1.0.0(acorn@8.15.0): + recma-jsx@1.0.0(acorn@8.16.0): dependencies: - acorn-jsx: 5.3.2(acorn@8.15.0) + acorn-jsx: 5.3.2(acorn@8.16.0) estree-util-to-js: 2.0.0 recma-parse: 1.0.0 recma-stringify: 1.0.0 @@ -17020,7 +16617,7 @@ snapshots: hast-util-is-element: 3.0.0 is-absolute-url: 4.0.1 space-separated-tokens: 2.0.2 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 rehype-raw@7.0.0: dependencies: @@ -17098,8 +16695,6 @@ snapshots: expand-tilde: 2.0.2 global-modules: 1.0.0 - resolve-from@3.0.0: {} - resolve-from@4.0.0: {} resolve-from@5.0.0: {} @@ -17173,13 +16768,11 @@ snapshots: optionalDependencies: '@rsbuild/core': 1.3.5 - rslog@1.2.3: {} - rslog@1.3.2: {} rspack-plugin-virtual-module@0.1.13: dependencies: - fs-extra: 11.2.0 + fs-extra: 11.3.0 run-applescript@7.0.0: {} @@ -17199,24 +16792,8 @@ snapshots: safer-buffer@2.1.2: {} - scheduler@0.26.0: {} - scheduler@0.27.0: {} - schema-utils@4.3.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.17.1 - ajv-formats: 2.1.1 - ajv-keywords: 5.1.0(ajv@8.17.1) - - schema-utils@4.3.2: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.17.1 - ajv-formats: 2.1.1 - ajv-keywords: 5.1.0(ajv@8.17.1) - schema-utils@4.3.3: dependencies: '@types/json-schema': 7.0.15 @@ -17284,15 +16861,6 @@ snapshots: set-cookie-parser@2.6.0: {} - set-function-length@1.2.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - setprototypeof@1.2.0: {} shallow-clone@3.0.1: @@ -17340,13 +16908,6 @@ snapshots: object-inspect: 1.13.4 side-channel-map: 1.0.1 - side-channel@1.0.6: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.2 - side-channel@1.1.0: dependencies: es-errors: 1.3.0 @@ -17438,8 +16999,6 @@ snapshots: source-map@0.6.1: {} - source-map@0.7.4: {} - source-map@0.7.6: {} space-separated-tokens@2.0.2: {} @@ -17539,8 +17098,6 @@ snapshots: strip-json-comments@3.1.1: {} - strnum@1.0.5: {} - strnum@2.1.2: {} style-to-js@1.1.16: @@ -17553,7 +17110,7 @@ snapshots: sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/gen-mapping': 0.3.13 commander: 4.1.1 glob: 10.4.5 lines-and-columns: 1.2.4 @@ -17601,45 +17158,23 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.1.1 - postcss: 8.5.1 - postcss-import: 15.1.0(postcss@8.5.1) - postcss-js: 4.0.1(postcss@8.5.1) - postcss-load-config: 4.0.2(postcss@8.5.1) - postcss-nested: 6.2.0(postcss@8.5.1) + postcss: 8.5.6 + postcss-import: 15.1.0(postcss@8.5.6) + postcss-js: 4.0.1(postcss@8.5.6) + postcss-load-config: 4.0.2(postcss@8.5.6) + postcss-nested: 6.2.0(postcss@8.5.6) postcss-selector-parser: 6.1.2 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: - ts-node - tapable@2.2.1: {} - tapable@2.2.3: {} tapable@2.3.0: {} term-size@2.2.1: {} - terser-webpack-plugin@5.3.14(@swc/core@1.13.3(@swc/helpers@0.5.18))(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))): - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1 - schema-utils: 4.3.2 - serialize-javascript: 6.0.2 - terser: 5.31.3 - webpack: 5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18)) - optionalDependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.18) - - terser-webpack-plugin@5.3.14(webpack@5.105.3): - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1 - schema-utils: 4.3.2 - serialize-javascript: 6.0.2 - terser: 5.31.3 - webpack: 5.105.3 - terser-webpack-plugin@5.3.16(@swc/core@1.13.3(@swc/helpers@0.5.18))(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))): dependencies: '@jridgewell/trace-mapping': 0.3.31 @@ -17663,7 +17198,7 @@ snapshots: terser@5.31.3: dependencies: '@jridgewell/source-map': 0.3.6 - acorn: 8.15.0 + acorn: 8.16.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -17688,9 +17223,9 @@ snapshots: thread-loader@4.0.4(webpack@5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18))): dependencies: json-parse-better-errors: 1.0.2 - loader-runner: 4.3.0 + loader-runner: 4.3.1 neo-async: 2.6.2 - schema-utils: 4.3.2 + schema-utils: 4.3.3 webpack: 5.105.3(@swc/core@1.13.3(@swc/helpers@0.5.18)) thread-stream@4.0.0: @@ -17727,8 +17262,6 @@ snapshots: tmpl@1.0.5: {} - to-fast-properties@2.0.0: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -17840,7 +17373,7 @@ snapshots: union@0.5.0: dependencies: - qs: 6.13.0 + qs: 6.15.0 unist-util-is@6.0.0: dependencies: @@ -17857,7 +17390,7 @@ snapshots: unist-util-remove-position@5.0.0: dependencies: '@types/unist': 3.0.3 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 unist-util-remove@4.0.0: dependencies: @@ -17878,12 +17411,6 @@ snapshots: '@types/unist': 3.0.3 unist-util-is: 6.0.0 - unist-util-visit@5.0.0: - dependencies: - '@types/unist': 3.0.3 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 - unist-util-visit@5.1.0: dependencies: '@types/unist': 3.0.3 @@ -17898,12 +17425,6 @@ snapshots: upath@2.0.1: {} - update-browserslist-db@1.1.2(browserslist@4.24.4): - dependencies: - browserslist: 4.24.4 - escalade: 3.2.0 - picocolors: 1.1.1 - update-browserslist-db@1.2.3(browserslist@4.28.1): dependencies: browserslist: 4.28.1 @@ -17912,9 +17433,9 @@ snapshots: url-join@4.0.1: {} - use-latest-callback@0.2.1(react@19.1.0): + use-latest-callback@0.2.1(react@19.2.0): dependencies: - react: 19.1.0 + react: 19.2.0 util-deprecate@1.0.2: {} @@ -17948,7 +17469,7 @@ snapshots: unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5): + vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2): dependencies: esbuild: 0.27.2 fdir: 6.5.0(picomatch@4.0.3) @@ -17962,12 +17483,12 @@ snapshots: jiti: 2.6.1 lightningcss: 1.28.2 terser: 5.31.3 - yaml: 2.4.5 + yaml: 2.8.2 - vitest@4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5): + vitest@4.0.18(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2): dependencies: '@vitest/expect': 4.0.18 - '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5)) + '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2)) '@vitest/pretty-format': 4.0.18 '@vitest/runner': 4.0.18 '@vitest/snapshot': 4.0.18 @@ -17984,7 +17505,7 @@ snapshots: tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.4.5) + vite: 7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.28.2)(terser@5.31.3)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 20.19.31 @@ -18167,8 +17688,6 @@ snapshots: ws@8.18.0: {} - ws@8.18.1: {} - ws@8.18.3: {} xcode@3.0.1: @@ -18184,7 +17703,7 @@ snapshots: yallist@3.1.1: {} - yaml@2.4.5: {} + yaml@2.8.2: {} yargs-parser@18.1.3: dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 4d115f2bb..b7a107226 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -12,16 +12,16 @@ catalog: "terser-webpack-plugin": ^5.3.14 "typescript": ^5.8.3 "webpack": ^5.104.1 - "react": "19.1.0" - "react-native": "0.81.0" + "react": "19.2.0" + "react-native": "0.83.3" "vitest": ^4.0.18 catalogs: testers: - "@types/react": ^19.1.0 - "react-native-test-app": 4.4.7 - "@react-native/babel-preset": "0.81.0" - "@react-native/typescript-config": "0.81.0" + "@types/react": ^19.2.0 + "react-native-test-app": 5.1.0 + "@react-native/babel-preset": "0.83.3" + "@react-native/typescript-config": "0.83.3" "@react-native-community/cli": "20.1.2" "@react-native-community/cli-platform-android": "20.1.2" "@react-native-community/cli-platform-ios": "20.1.2" diff --git a/skills-lock.json b/skills-lock.json new file mode 100644 index 000000000..d1f53b5a5 --- /dev/null +++ b/skills-lock.json @@ -0,0 +1,10 @@ +{ + "version": 1, + "skills": { + "upgrade-react-native": { + "source": "react-native-community/skills", + "sourceType": "github", + "computedHash": "f120c3e4c5e696b147c24a953c18b0fabbf1fe46d0c8ab68db4fdb146e54075a" + } + } +}