diff --git a/android/app/build.gradle b/android/app/build.gradle
index a678cd62e995..ea218e549d9e 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -285,7 +285,6 @@ dependencies {
androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation 'androidx.test:core-ktx:1.5.0'
- debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
} else {
diff --git a/android/gradle.properties b/android/gradle.properties
index a9960fce6228..8e4f059f7f76 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -22,8 +22,6 @@ org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
-android.disableAutomaticComponentCreation=true
-
# TODO: favour arch options here over cli options
# replace them
# Use this property to specify which architecture you want to build.
@@ -45,7 +43,7 @@ hermesEnabled=true
# TODO: explain following config options
# Some of these are depreceated in RN 0.72.15 but when removed the app won't build
android.disableResourceValidation=true
-android.enableDexingArtifactTransform.desugaring=false
+android.useFullClasspathForDexingTransform = true
# Use legacy packaging to compress native libraries in the resulting APK.
expo.useLegacyPackaging=false
\ No newline at end of file
diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar
index 94336fcae912..a4b76b9530d6 100644
Binary files a/android/gradle/wrapper/gradle-wrapper.jar and b/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/android/gradlew b/android/gradlew
index 5ebf99943025..c05593e7c65c 100755
--- a/android/gradlew
+++ b/android/gradlew
@@ -1,7 +1,7 @@
-#!/usr/bin/env sh
+#!/bin/sh
#
-# Copyright 2015 the original author or authors.
+# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -15,77 +15,116 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
+# SPDX-License-Identifier: Apache-2.0
+#
##############################################################################
-##
-## Gradle start up script for UN*X
-##
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
##############################################################################
# Attempt to set APP_HOME
+
# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
+APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
+' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
+MAX_FD=maximum
warn () {
echo "$*"
-}
+} >&2
die () {
echo
echo "$*"
echo
exit 1
-}
+} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
+ JAVACMD=$JAVA_HOME/jre/sh/java
else
- JAVACMD="$JAVA_HOME/bin/java"
+ JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@@ -94,7 +133,7 @@ Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
- JAVACMD="java"
+ JAVACMD=java
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -105,26 +144,36 @@ location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
fi
-
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\" \"-Xmx2048m\" \"-Xms256m\""
fi
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
@@ -170,20 +219,52 @@ if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
esac
fi
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=`save "$@"`
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Collect all arguments for the java command:
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
+# and any embedded shellness will be escaped.
+# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
+# treated as '${Hostname}' itself on the command line.
-exec "$JAVACMD" "$@"
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
-fi
\ No newline at end of file
+fi
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
+
+exec "$JAVACMD" "$@"
\ No newline at end of file
diff --git a/android/settings.gradle b/android/settings.gradle
index 452b78d18389..5312bdc122ce 100644
--- a/android/settings.gradle
+++ b/android/settings.gradle
@@ -33,5 +33,5 @@ project(':react-native-gesture-handler').projectDir = new File(rootProject.proje
include ':react-native-video'
project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android-exoplayer')
-apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), "../native_modules.gradle");
-useExpoModules()
\ No newline at end of file
+apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle")
+useExpoModules()
diff --git a/ios/MetaMask.xcodeproj/project.pbxproj b/ios/MetaMask.xcodeproj/project.pbxproj
index be96eb8fcceb..162656b2c242 100644
--- a/ios/MetaMask.xcodeproj/project.pbxproj
+++ b/ios/MetaMask.xcodeproj/project.pbxproj
@@ -1407,7 +1407,7 @@
"$(SRCROOT)/../node_modules/react-native-tcp/ios/**",
);
INFOPLIST_FILE = MetaMask/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.6;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -1473,7 +1473,7 @@
"$(SRCROOT)/../node_modules/react-native-tcp/ios/**",
);
INFOPLIST_FILE = MetaMask/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.6;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -1673,6 +1673,7 @@
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
USE_HERMES = false;
};
name = Debug;
diff --git a/ios/MetaMask/PrivacyInfo.xcprivacy b/ios/MetaMask/PrivacyInfo.xcprivacy
index 834d91eb0f07..31ff303335f8 100644
--- a/ios/MetaMask/PrivacyInfo.xcprivacy
+++ b/ios/MetaMask/PrivacyInfo.xcprivacy
@@ -19,27 +19,28 @@
NSPrivacyAccessedAPICategoryFileTimestamp
NSPrivacyAccessedAPITypeReasons
- C617.1
0A2A.1
+ 3B52.1
+ C617.1
DDA9.1
NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPICategoryDiskSpace
NSPrivacyAccessedAPITypeReasons
- 35F9.1
- 8FFB.1
+ E174.1
+ 85F4.1
NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryDiskSpace
+ NSPrivacyAccessedAPICategorySystemBootTime
NSPrivacyAccessedAPITypeReasons
- 85F4.1
- E174.1
+ 35F9.1
+ 8FFB.1
diff --git a/ios/Podfile b/ios/Podfile
index 03331e4c4e22..04c77025d9fd 100644
--- a/ios/Podfile
+++ b/ios/Podfile
@@ -2,7 +2,7 @@ require File.join(File.dirname(`node --print "require.resolve('expo/package.json
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
-platform :ios, '13.4'
+platform :ios, '15.6'
prepare_react_native_project!
# Ensures that versions from Gemfile is respected
ensure_bundler!
diff --git a/ios/Podfile.lock b/ios/Podfile.lock
index 9c9922de04b3..526e7e19b6b4 100644
--- a/ios/Podfile.lock
+++ b/ios/Podfile.lock
@@ -1,39 +1,56 @@
PODS:
- Base64 (1.1.2)
- BEMCheckBox (1.4.1)
- - boost (1.83.0)
+ - boost (1.84.0)
- Branch (1.43.2)
- BVLinearGradient (2.8.3):
- React-Core
- CocoaAsyncSocket (7.6.5)
- DoubleConversion (1.1.6)
- - EXConstants (15.4.6):
+ - EXConstants (17.0.4):
- ExpoModulesCore
- - EXFont (11.10.3):
+ - EXJSONUtils (0.14.0)
+ - EXManifests (0.15.5):
- ExpoModulesCore
- - EXJSONUtils (0.12.3)
- - EXManifests (0.13.2):
+ - Expo (52.0.27):
- ExpoModulesCore
- - Expo (50.0.21):
- - ExpoModulesCore
- - expo-dev-client (3.3.12):
+ - expo-dev-client (5.0.10):
- EXManifests
- expo-dev-launcher
- expo-dev-menu
- expo-dev-menu-interface
- EXUpdatesInterface
- - expo-dev-launcher (3.6.10):
+ - expo-dev-launcher (5.0.25):
+ - DoubleConversion
- EXManifests
- - expo-dev-launcher/Main (= 3.6.10)
+ - expo-dev-launcher/Main (= 5.0.25)
- expo-dev-menu
- expo-dev-menu-interface
- ExpoModulesCore
- EXUpdatesInterface
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
- React-RCTAppDelegate
- - expo-dev-launcher/Main (3.6.10):
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-launcher/Main (5.0.25):
+ - DoubleConversion
- EXManifests
- expo-dev-launcher/Unsafe
- expo-dev-menu
@@ -41,68 +58,203 @@ PODS:
- ExpoModulesCore
- EXUpdatesInterface
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
- React-RCTAppDelegate
- - expo-dev-launcher/Unsafe (3.6.10):
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-launcher/Unsafe (5.0.25):
+ - DoubleConversion
- EXManifests
- expo-dev-menu
- expo-dev-menu-interface
- ExpoModulesCore
- EXUpdatesInterface
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
- React-RCTAppDelegate
- - expo-dev-menu (4.5.8):
- - expo-dev-menu/Main (= 4.5.8)
- - expo-dev-menu/ReactNativeCompatibles (= 4.5.8)
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-menu (6.0.18):
+ - DoubleConversion
+ - expo-dev-menu/Main (= 6.0.18)
+ - expo-dev-menu/ReactNativeCompatibles (= 6.0.18)
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - expo-dev-menu-interface (1.7.2)
- - expo-dev-menu/Main (4.5.8):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-menu-interface (1.9.3)
+ - expo-dev-menu/Main (6.0.18):
+ - DoubleConversion
- EXManifests
- expo-dev-menu-interface
- expo-dev-menu/Vendored
- ExpoModulesCore
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - expo-dev-menu/ReactNativeCompatibles (4.5.8):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-menu/ReactNativeCompatibles (6.0.18):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - expo-dev-menu/SafeAreaView (4.5.8):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-menu/SafeAreaView (6.0.18):
+ - DoubleConversion
- ExpoModulesCore
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - expo-dev-menu/Vendored (4.5.8):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - expo-dev-menu/Vendored (6.0.18):
+ - DoubleConversion
- expo-dev-menu/SafeAreaView
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - ExpoFileSystem (16.0.9):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - ExpoAsset (11.0.2):
+ - ExpoModulesCore
+ - ExpoFileSystem (18.0.7):
- ExpoModulesCore
- - ExpoKeepAwake (12.8.2):
+ - ExpoFont (13.0.3):
- ExpoModulesCore
- - ExpoModulesCore (1.11.14):
+ - ExpoKeepAwake (14.0.2):
+ - ExpoModulesCore
+ - ExpoModulesCore (2.1.4):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsc
+ - React-jsi
- React-NativeModulesApple
- React-RCTAppDelegate
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - EXUpdatesInterface (0.15.3)
- - FBLazyVector (0.73.6)
- - FBReactNativeSpec (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
- - RCTRequired (= 0.73.6)
- - RCTTypeSafety (= 0.73.6)
- - React-Core (= 0.73.6)
- - React-jsi (= 0.73.6)
- - ReactCommon/turbomodule/core (= 0.73.6)
+ - Yoga
+ - EXUpdatesInterface (1.0.0):
+ - ExpoModulesCore
+ - FBLazyVector (0.76.6)
- Firebase (10.29.0):
- Firebase/Core (= 10.29.0)
- Firebase/Core (10.29.0):
@@ -153,63 +305,7 @@ PODS:
- GoogleUtilities/Reachability (~> 7.8)
- GoogleUtilities/UserDefaults (~> 7.8)
- nanopb (< 2.30911.0, >= 2.30908.0)
- - Flipper (0.201.0):
- - Flipper-Folly (~> 2.6)
- - Flipper-Boost-iOSX (1.76.0.1.11)
- - Flipper-DoubleConversion (3.2.0.1)
- - Flipper-Fmt (7.1.7)
- - Flipper-Folly (2.6.10):
- - Flipper-Boost-iOSX
- - Flipper-DoubleConversion
- - Flipper-Fmt (= 7.1.7)
- - Flipper-Glog
- - libevent (~> 2.1.12)
- - OpenSSL-Universal (= 1.1.1100)
- - Flipper-Glog (0.5.0.5)
- - Flipper-PeerTalk (0.0.4)
- - FlipperKit (0.201.0):
- - FlipperKit/Core (= 0.201.0)
- - FlipperKit/Core (0.201.0):
- - Flipper (~> 0.201.0)
- - FlipperKit/CppBridge
- - FlipperKit/FBCxxFollyDynamicConvert
- - FlipperKit/FBDefines
- - FlipperKit/FKPortForwarding
- - SocketRocket (~> 0.6.0)
- - FlipperKit/CppBridge (0.201.0):
- - Flipper (~> 0.201.0)
- - FlipperKit/FBCxxFollyDynamicConvert (0.201.0):
- - Flipper-Folly (~> 2.6)
- - FlipperKit/FBDefines (0.201.0)
- - FlipperKit/FKPortForwarding (0.201.0):
- - CocoaAsyncSocket (~> 7.6)
- - Flipper-PeerTalk (~> 0.0.4)
- - FlipperKit/FlipperKitHighlightOverlay (0.201.0)
- - FlipperKit/FlipperKitLayoutHelpers (0.201.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitHighlightOverlay
- - FlipperKit/FlipperKitLayoutTextSearchable
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.201.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitHighlightOverlay
- - FlipperKit/FlipperKitLayoutHelpers
- - FlipperKit/FlipperKitLayoutPlugin (0.201.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitHighlightOverlay
- - FlipperKit/FlipperKitLayoutHelpers
- - FlipperKit/FlipperKitLayoutIOSDescriptors
- - FlipperKit/FlipperKitLayoutTextSearchable
- - FlipperKit/FlipperKitLayoutTextSearchable (0.201.0)
- - FlipperKit/FlipperKitNetworkPlugin (0.201.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitReactPlugin (0.201.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.201.0):
- - FlipperKit/Core
- - FlipperKit/SKIOSNetworkPlugin (0.201.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitNetworkPlugin
- - fmt (6.2.1)
+ - fmt (9.1.0)
- glog (0.3.5)
- GoogleAppMeasurement (10.29.0):
- GoogleAppMeasurement/AdIdSupport (= 10.29.0)
@@ -281,324 +377,424 @@ PODS:
- GoogleUtilities/Privacy
- GZIP (1.3.2)
- GzipSwift (5.1.1)
- - libevent (2.1.12)
- lottie-ios (4.5.0)
- lottie-react-native (7.1.0):
+ - DoubleConversion
- glog
- lottie-ios (= 4.5.0)
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - MMKV (2.0.0):
- - MMKVCore (~> 2.0.0)
- - MMKVCore (2.0.0)
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - MMKV (2.0.2):
+ - MMKVCore (~> 2.0.2)
+ - MMKVCore (2.0.2)
- MultiplatformBleAdapter (0.2.0)
- nanopb (2.30910.0):
- nanopb/decode (= 2.30910.0)
- nanopb/encode (= 2.30910.0)
- nanopb/decode (2.30910.0)
- nanopb/encode (2.30910.0)
- - OpenSSL-Universal (1.1.1100)
+ - OpenSSL-Universal (3.3.2000)
- Permission-BluetoothPeripheral (3.10.1):
- RNPermissions
- PromisesObjC (2.4.0)
- - RCT-Folly (2022.05.16.00):
+ - RCT-Folly (2024.01.01.00):
- boost
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Default (= 2022.05.16.00)
- - RCT-Folly/Default (2022.05.16.00):
+ - RCT-Folly/Default (= 2024.01.01.00)
+ - RCT-Folly/Default (2024.01.01.00):
- boost
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (2022.05.16.00):
+ - RCT-Folly/Fabric (2024.01.01.00):
- boost
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCTRequired (0.73.6)
+ - RCTDeprecation (0.76.6)
+ - RCTRequired (0.76.6)
- RCTSearchApi (1.0.1):
- React
- React-RCTImage
- - RCTTypeSafety (0.73.6):
- - FBLazyVector (= 0.73.6)
- - RCTRequired (= 0.73.6)
- - React-Core (= 0.73.6)
- - React (0.73.6):
- - React-Core (= 0.73.6)
- - React-Core/DevSupport (= 0.73.6)
- - React-Core/RCTWebSocket (= 0.73.6)
- - React-RCTActionSheet (= 0.73.6)
- - React-RCTAnimation (= 0.73.6)
- - React-RCTBlob (= 0.73.6)
- - React-RCTImage (= 0.73.6)
- - React-RCTLinking (= 0.73.6)
- - React-RCTNetwork (= 0.73.6)
- - React-RCTSettings (= 0.73.6)
- - React-RCTText (= 0.73.6)
- - React-RCTVibration (= 0.73.6)
- - React-callinvoker (0.73.6)
- - React-Codegen (0.73.6):
- - DoubleConversion
- - FBReactNativeSpec
- - glog
- - RCT-Folly
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-jsc
- - React-jsi
- - React-jsiexecutor
- - React-NativeModulesApple
- - React-rncore
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - React-Core (0.73.6):
- - glog
- - RCT-Folly (= 2022.05.16.00)
- - React-Core/Default (= 0.73.6)
+ - RCTTypeSafety (0.76.6):
+ - FBLazyVector (= 0.76.6)
+ - RCTRequired (= 0.76.6)
+ - React-Core (= 0.76.6)
+ - React (0.76.6):
+ - React-Core (= 0.76.6)
+ - React-Core/DevSupport (= 0.76.6)
+ - React-Core/RCTWebSocket (= 0.76.6)
+ - React-RCTActionSheet (= 0.76.6)
+ - React-RCTAnimation (= 0.76.6)
+ - React-RCTBlob (= 0.76.6)
+ - React-RCTImage (= 0.76.6)
+ - React-RCTLinking (= 0.76.6)
+ - React-RCTNetwork (= 0.76.6)
+ - React-RCTSettings (= 0.76.6)
+ - React-RCTText (= 0.76.6)
+ - React-RCTVibration (= 0.76.6)
+ - React-callinvoker (0.76.6)
+ - React-Codegen (0.1.0)
+ - React-Core (0.76.6):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.76.6)
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/CoreModulesHeaders (0.73.6):
+ - React-Core/CoreModulesHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/Default (0.73.6):
+ - React-Core/Default (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/DevSupport (0.73.6):
+ - React-Core/DevSupport (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
- - React-Core/Default (= 0.73.6)
- - React-Core/RCTWebSocket (= 0.73.6)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.76.6)
+ - React-Core/RCTWebSocket (= 0.76.6)
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
- - React-jsinspector (= 0.73.6)
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTActionSheetHeaders (0.73.6):
+ - React-Core/RCTActionSheetHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTAnimationHeaders (0.73.6):
+ - React-Core/RCTAnimationHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTBlobHeaders (0.73.6):
+ - React-Core/RCTBlobHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTImageHeaders (0.73.6):
+ - React-Core/RCTImageHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTLinkingHeaders (0.73.6):
+ - React-Core/RCTLinkingHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTNetworkHeaders (0.73.6):
+ - React-Core/RCTNetworkHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTPushNotificationHeaders (0.73.6):
+ - React-Core/RCTPushNotificationHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTSettingsHeaders (0.73.6):
+ - React-Core/RCTSettingsHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTTextHeaders (0.73.6):
+ - React-Core/RCTTextHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTVibrationHeaders (0.73.6):
+ - React-Core/RCTVibrationHeaders (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
- React-Core/Default
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-Core/RCTWebSocket (0.73.6):
+ - React-Core/RCTWebSocket (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
- - React-Core/Default (= 0.73.6)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.76.6)
- React-cxxreact
+ - React-featureflags
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-jsinspector
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.6.1)
+ - SocketRocket (= 0.7.1)
- Yoga
- - React-CoreModules (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
- - RCTTypeSafety (= 0.73.6)
- - React-Codegen
- - React-Core/CoreModulesHeaders (= 0.73.6)
- - React-jsi (= 0.73.6)
+ - React-CoreModules (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety (= 0.76.6)
+ - React-Core/CoreModulesHeaders (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-jsinspector
- React-NativeModulesApple
- React-RCTBlob
- - React-RCTImage (= 0.73.6)
+ - React-RCTImage (= 0.76.6)
+ - ReactCodegen
- ReactCommon
- - SocketRocket (= 0.6.1)
- - React-cxxreact (0.73.6):
- - boost (= 1.83.0)
+ - SocketRocket (= 0.7.1)
+ - React-cxxreact (0.76.6):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.6)
+ - React-debug (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-jsinspector
+ - React-logger (= 0.76.6)
+ - React-perflogger (= 0.76.6)
+ - React-runtimeexecutor (= 0.76.6)
+ - React-timing (= 0.76.6)
+ - React-debug (0.76.6)
+ - React-defaultsnativemodule (0.76.6):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-domnativemodule
+ - React-Fabric
+ - React-featureflags
+ - React-featureflagsnativemodule
+ - React-graphics
+ - React-idlecallbacksnativemodule
+ - React-ImageManager
+ - React-jsi
+ - React-microtasksnativemodule
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-domnativemodule (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
- glog
- - RCT-Folly (= 2022.05.16.00)
- - React-callinvoker (= 0.73.6)
- - React-debug (= 0.73.6)
- - React-jsi (= 0.73.6)
- - React-jsinspector (= 0.73.6)
- - React-logger (= 0.73.6)
- - React-perflogger (= 0.73.6)
- - React-runtimeexecutor (= 0.73.6)
- - React-debug (0.73.6)
- - React-Fabric (0.73.6):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/animations (= 0.73.6)
- - React-Fabric/attributedstring (= 0.73.6)
- - React-Fabric/componentregistry (= 0.73.6)
- - React-Fabric/componentregistrynative (= 0.73.6)
- - React-Fabric/components (= 0.73.6)
- - React-Fabric/core (= 0.73.6)
- - React-Fabric/imagemanager (= 0.73.6)
- - React-Fabric/leakchecker (= 0.73.6)
- - React-Fabric/mounting (= 0.73.6)
- - React-Fabric/scheduler (= 0.73.6)
- - React-Fabric/telemetry (= 0.73.6)
- - React-Fabric/templateprocessor (= 0.73.6)
- - React-Fabric/textlayoutmanager (= 0.73.6)
- - React-Fabric/uimanager (= 0.73.6)
+ - React-Fabric/animations (= 0.76.6)
+ - React-Fabric/attributedstring (= 0.76.6)
+ - React-Fabric/componentregistry (= 0.76.6)
+ - React-Fabric/componentregistrynative (= 0.76.6)
+ - React-Fabric/components (= 0.76.6)
+ - React-Fabric/core (= 0.76.6)
+ - React-Fabric/dom (= 0.76.6)
+ - React-Fabric/imagemanager (= 0.76.6)
+ - React-Fabric/leakchecker (= 0.76.6)
+ - React-Fabric/mounting (= 0.76.6)
+ - React-Fabric/observers (= 0.76.6)
+ - React-Fabric/scheduler (= 0.76.6)
+ - React-Fabric/telemetry (= 0.76.6)
+ - React-Fabric/templateprocessor (= 0.76.6)
+ - React-Fabric/uimanager (= 0.76.6)
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -608,16 +804,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/animations (0.73.6):
+ - React-Fabric/animations (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -627,16 +824,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/attributedstring (0.73.6):
+ - React-Fabric/attributedstring (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -646,16 +844,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistry (0.73.6):
+ - React-Fabric/componentregistry (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -665,16 +864,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistrynative (0.73.6):
+ - React-Fabric/componentregistrynative (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -684,27 +884,20 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components (0.73.6):
+ - React-Fabric/components (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/components/inputaccessory (= 0.73.6)
- - React-Fabric/components/legacyviewmanagerinterop (= 0.73.6)
- - React-Fabric/components/modal (= 0.73.6)
- - React-Fabric/components/rncore (= 0.73.6)
- - React-Fabric/components/root (= 0.73.6)
- - React-Fabric/components/safeareaview (= 0.73.6)
- - React-Fabric/components/scrollview (= 0.73.6)
- - React-Fabric/components/text (= 0.73.6)
- - React-Fabric/components/textinput (= 0.73.6)
- - React-Fabric/components/unimplementedview (= 0.73.6)
- - React-Fabric/components/view (= 0.73.6)
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.76.6)
+ - React-Fabric/components/root (= 0.76.6)
+ - React-Fabric/components/view (= 0.76.6)
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -714,16 +907,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/inputaccessory (0.73.6):
+ - React-Fabric/components/legacyviewmanagerinterop (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -733,16 +927,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/legacyviewmanagerinterop (0.73.6):
+ - React-Fabric/components/root (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -752,16 +947,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/modal (0.73.6):
+ - React-Fabric/components/view (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -771,16 +967,18 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/rncore (0.73.6):
+ - Yoga
+ - React-Fabric/core (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -790,16 +988,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/root (0.73.6):
+ - React-Fabric/dom (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -809,16 +1008,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/safeareaview (0.73.6):
+ - React-Fabric/imagemanager (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -828,16 +1028,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/scrollview (0.73.6):
+ - React-Fabric/leakchecker (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -847,16 +1048,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/text (0.73.6):
+ - React-Fabric/mounting (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -866,16 +1068,18 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/textinput (0.73.6):
+ - React-Fabric/observers (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric/observers/events (= 0.76.6)
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -885,16 +1089,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/unimplementedview (0.73.6):
+ - React-Fabric/observers/events (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -904,36 +1109,39 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/view (0.73.6):
+ - React-Fabric/scheduler (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric/observers/events
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-performancetimeline
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - Yoga
- - React-Fabric/core (0.73.6):
+ - React-Fabric/telemetry (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -943,16 +1151,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/imagemanager (0.73.6):
+ - React-Fabric/templateprocessor (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -962,54 +1171,63 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/leakchecker (0.73.6):
+ - React-Fabric/uimanager (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric/uimanager/consistency (= 0.76.6)
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/mounting (0.73.6):
+ - React-Fabric/uimanager/consistency (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/scheduler (0.73.6):
+ - React-FabricComponents (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric
+ - React-FabricComponents/components (= 0.76.6)
+ - React-FabricComponents/textlayoutmanager (= 0.76.6)
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -1018,17 +1236,30 @@ PODS:
- React-rendererdebug
- React-runtimescheduler
- React-utils
+ - ReactCodegen
- ReactCommon/turbomodule/core
- - React-Fabric/telemetry (0.73.6):
+ - Yoga
+ - React-FabricComponents/components (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric
+ - React-FabricComponents/components/inputaccessory (= 0.76.6)
+ - React-FabricComponents/components/iostextinput (= 0.76.6)
+ - React-FabricComponents/components/modal (= 0.76.6)
+ - React-FabricComponents/components/rncore (= 0.76.6)
+ - React-FabricComponents/components/safeareaview (= 0.76.6)
+ - React-FabricComponents/components/scrollview (= 0.76.6)
+ - React-FabricComponents/components/text (= 0.76.6)
+ - React-FabricComponents/components/textinput (= 0.76.6)
+ - React-FabricComponents/components/unimplementedview (= 0.76.6)
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -1037,17 +1268,21 @@ PODS:
- React-rendererdebug
- React-runtimescheduler
- React-utils
+ - ReactCodegen
- ReactCommon/turbomodule/core
- - React-Fabric/templateprocessor (0.73.6):
+ - Yoga
+ - React-FabricComponents/components/inputaccessory (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -1056,18 +1291,21 @@ PODS:
- React-rendererdebug
- React-runtimescheduler
- React-utils
+ - ReactCodegen
- ReactCommon/turbomodule/core
- - React-Fabric/textlayoutmanager (0.73.6):
+ - Yoga
+ - React-FabricComponents/components/iostextinput (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/uimanager
+ - React-Fabric
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -1076,17 +1314,21 @@ PODS:
- React-rendererdebug
- React-runtimescheduler
- React-utils
+ - ReactCodegen
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager (0.73.6):
+ - Yoga
+ - React-FabricComponents/components/modal (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric
+ - React-featureflags
- React-graphics
- React-jsc
- React-jsi
@@ -1095,87 +1337,382 @@ PODS:
- React-rendererdebug
- React-runtimescheduler
- React-utils
+ - ReactCodegen
- ReactCommon/turbomodule/core
- - React-FabricImage (0.73.6):
+ - Yoga
+ - React-FabricComponents/components/rncore (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
- - RCTRequired (= 0.73.6)
- - RCTTypeSafety (= 0.73.6)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
- React-Fabric
+ - React-featureflags
- React-graphics
- - React-ImageManager
- React-jsc
- React-jsi
- - React-jsiexecutor (= 0.73.6)
+ - React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimescheduler
- React-utils
- - ReactCommon
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
- Yoga
- - React-graphics (0.73.6):
- - glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
- - React-Core/Default (= 0.73.6)
- - React-utils
- - React-ImageManager (0.73.6):
+ - React-FabricComponents/components/safeareaview (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Fabric
- - React-Core/Default
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
- React-debug
- React-Fabric
+ - React-featureflags
- React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
- React-rendererdebug
+ - React-runtimescheduler
- React-utils
- - React-jsc (0.73.6):
- - React-jsc/Fabric (= 0.73.6)
- - React-jsi (= 0.73.6)
- - React-jsc/Fabric (0.73.6):
- - React-jsi (= 0.73.6)
- - React-jserrorhandler (0.73.6):
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/scrollview (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
- React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsc
- React-jsi
- - React-Mapbuffer
- - React-jsi (0.73.6):
- - boost (= 1.83.0)
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/text (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly (= 2022.05.16.00)
- - React-jsiexecutor (0.73.6):
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/textinput (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/unimplementedview (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/textlayoutmanager (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricImage (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired (= 0.76.6)
+ - RCTTypeSafety (= 0.76.6)
+ - React-Fabric
+ - React-graphics
+ - React-ImageManager
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor (= 0.76.6)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-featureflags (0.76.6)
+ - React-featureflagsnativemodule (0.76.6):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-graphics (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-jsi
+ - React-jsiexecutor
+ - React-utils
+ - React-idlecallbacksnativemodule (0.76.6):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-ImageManager (0.76.6):
+ - glog
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jsc (0.76.6):
+ - React-jsc/Fabric (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-jsc/Fabric (0.76.6):
+ - React-jsi (= 0.76.6)
+ - React-jserrorhandler (0.76.6):
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-cxxreact
+ - React-debug
+ - React-jsi
+ - React-jsi (0.76.6):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-jsiexecutor (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-cxxreact (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-jsinspector
+ - React-perflogger (= 0.76.6)
+ - React-jsinspector (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
- glog
- - RCT-Folly (= 2022.05.16.00)
- - React-cxxreact (= 0.73.6)
- - React-jsi (= 0.73.6)
- - React-perflogger (= 0.73.6)
- - React-jsinspector (0.73.6)
- - React-logger (0.73.6):
+ - RCT-Folly (= 2024.01.01.00)
+ - React-featureflags
+ - React-jsi
+ - React-perflogger (= 0.76.6)
+ - React-runtimeexecutor (= 0.76.6)
+ - React-jsitracing (0.76.6):
+ - React-jsi
+ - React-logger (0.76.6):
- glog
- - React-Mapbuffer (0.73.6):
+ - React-Mapbuffer (0.76.6):
- glog
- React-debug
+ - React-microtasksnativemodule (0.76.6):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-aes (3.0.3):
- React-Core
- react-native-background-timer (2.1.1):
- React
- react-native-ble-plx (3.1.2):
+ - DoubleConversion
- glog
- MultiplatformBleAdapter (= 0.2.0)
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-blob-jsi-helper (0.3.1):
- React
- React-Core
- react-native-blob-util (0.19.9):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-blur (4.4.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-branch (5.6.2):
- Branch (= 1.43.2)
- React-Core
@@ -1188,21 +1725,43 @@ PODS:
- react-native-camera/RN (3.44.3):
- React-Core
- react-native-compat (2.15.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-cookies (6.2.1):
- React-Core
- react-native-fast-crypto (2.2.0):
- React
- react-native-flipper (0.263.0):
- React-Core
- - react-native-get-random-values (1.8.0):
+ - react-native-get-random-values (1.11.0):
- React-Core
- react-native-gzip (1.1.0):
- Base64
- GZIP
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Codegen
- React-Core
+ - ReactCommon/turbomodule/core
- react-native-in-app-review (4.3.3):
- React-Core
- react-native-launch-arguments (4.0.1):
@@ -1210,10 +1769,29 @@ PODS:
- react-native-mmkv (2.11.0):
- MMKV (>= 1.2.13)
- React-Core
- - react-native-netinfo (11.1.0):
+ - react-native-netinfo (11.4.1):
- React-Core
- react-native-performance (5.1.2):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-quick-base64 (2.0.8):
- React-Core
- react-native-quick-crypto (0.6.1):
@@ -1225,206 +1803,476 @@ PODS:
- React-Core
- react-native-render-html (6.3.4):
- React-Core
- - react-native-safe-area-context (4.8.2):
+ - react-native-safe-area-context (4.12.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - react-native-safe-area-context/common (= 4.12.0)
+ - react-native-safe-area-context/fabric (= 4.12.0)
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - react-native-safe-area-context/common (4.12.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - react-native-safe-area-context/fabric (4.12.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - react-native-safe-area-context/common
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-slider (4.5.5):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - react-native-slider/common (= 4.5.5)
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - react-native-slider/common (4.5.5):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-video (5.2.1):
- React-Core
- react-native-video/Video (= 5.2.1)
- react-native-video/Video (5.2.1):
- React-Core
- - react-native-view-shot (3.8.0):
+ - react-native-view-shot (4.0.3):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- react-native-webview-mm (14.0.4):
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Codegen
- React-Core
- - React-nativeconfig (0.73.6)
- - React-NativeModulesApple (0.73.6):
+ - React-RCTFabric
+ - ReactCommon/turbomodule/core
+ - React-nativeconfig (0.76.6)
+ - React-NativeModulesApple (0.76.6):
- glog
- React-callinvoker
- React-Core
- React-cxxreact
- React-jsc
- React-jsi
+ - React-jsinspector
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-perflogger (0.73.6)
- - React-RCTActionSheet (0.73.6):
- - React-Core/RCTActionSheetHeaders (= 0.73.6)
- - React-RCTAnimation (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
+ - React-perflogger (0.76.6):
+ - DoubleConversion
+ - RCT-Folly (= 2024.01.01.00)
+ - React-performancetimeline (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
+ - React-cxxreact
+ - React-timing
+ - React-RCTActionSheet (0.76.6):
+ - React-Core/RCTActionSheetHeaders (= 0.76.6)
+ - React-RCTAnimation (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
- RCTTypeSafety
- - React-Codegen
- React-Core/RCTAnimationHeaders
- React-jsi
- React-NativeModulesApple
+ - ReactCodegen
- ReactCommon
- - React-RCTAppDelegate (0.73.6):
- - RCT-Folly
+ - React-RCTAppDelegate (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- React-Core
- React-CoreModules
+ - React-debug
+ - React-defaultsnativemodule
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
- React-jsc
- React-nativeconfig
- React-NativeModulesApple
- React-RCTFabric
- React-RCTImage
- React-RCTNetwork
+ - React-rendererdebug
+ - React-RuntimeApple
+ - React-RuntimeCore
- React-runtimescheduler
+ - React-utils
+ - ReactCodegen
- ReactCommon
- - React-RCTBlob (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
- - React-Codegen
+ - React-RCTBlob (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
- React-Core/RCTBlobHeaders
- React-Core/RCTWebSocket
- React-jsi
+ - React-jsinspector
- React-NativeModulesApple
- React-RCTNetwork
+ - ReactCodegen
- ReactCommon
- - React-RCTFabric (0.73.6):
+ - React-RCTFabric (0.76.6):
- glog
- - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCT-Folly/Fabric (= 2024.01.01.00)
- React-Core
- React-debug
- React-Fabric
+ - React-FabricComponents
- React-FabricImage
+ - React-featureflags
- React-graphics
- React-ImageManager
- React-jsc
- React-jsi
+ - React-jsinspector
- React-nativeconfig
+ - React-performancetimeline
- React-RCTImage
- React-RCTText
+ - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- Yoga
- - React-RCTImage (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
+ - React-RCTImage (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
- RCTTypeSafety
- - React-Codegen
- React-Core/RCTImageHeaders
- React-jsi
- React-NativeModulesApple
- React-RCTNetwork
+ - ReactCodegen
- ReactCommon
- - React-RCTLinking (0.73.6):
- - React-Codegen
- - React-Core/RCTLinkingHeaders (= 0.73.6)
- - React-jsi (= 0.73.6)
+ - React-RCTLinking (0.76.6):
+ - React-Core/RCTLinkingHeaders (= 0.76.6)
+ - React-jsi (= 0.76.6)
- React-NativeModulesApple
+ - ReactCodegen
- ReactCommon
- - ReactCommon/turbomodule/core (= 0.73.6)
- - React-RCTNetwork (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
+ - ReactCommon/turbomodule/core (= 0.76.6)
+ - React-RCTNetwork (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
- RCTTypeSafety
- - React-Codegen
- React-Core/RCTNetworkHeaders
- React-jsi
- React-NativeModulesApple
+ - ReactCodegen
- ReactCommon
- - React-RCTPushNotification (0.73.6):
+ - React-RCTPushNotification (0.76.6):
- RCTTypeSafety
- - React-Codegen
- React-Core/RCTPushNotificationHeaders
- React-jsi
- React-NativeModulesApple
+ - ReactCodegen
- ReactCommon
- - React-RCTSettings (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
+ - React-RCTSettings (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
- RCTTypeSafety
- - React-Codegen
- React-Core/RCTSettingsHeaders
- React-jsi
- React-NativeModulesApple
+ - ReactCodegen
- ReactCommon
- - React-RCTText (0.73.6):
- - React-Core/RCTTextHeaders (= 0.73.6)
+ - React-RCTText (0.76.6):
+ - React-Core/RCTTextHeaders (= 0.76.6)
- Yoga
- - React-RCTVibration (0.73.6):
- - RCT-Folly (= 2022.05.16.00)
- - React-Codegen
+ - React-RCTVibration (0.76.6):
+ - RCT-Folly (= 2024.01.01.00)
- React-Core/RCTVibrationHeaders
- React-jsi
- React-NativeModulesApple
+ - ReactCodegen
- ReactCommon
- - React-rendererdebug (0.73.6):
+ - React-rendererconsistency (0.76.6)
+ - React-rendererdebug (0.76.6):
- DoubleConversion
- - fmt (~> 6.2.1)
- - RCT-Folly (= 2022.05.16.00)
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
- React-debug
- - React-rncore (0.73.6)
- - React-runtimeexecutor (0.73.6):
- - React-jsi (= 0.73.6)
- - React-runtimescheduler (0.73.6):
+ - React-rncore (0.76.6)
+ - React-RuntimeApple (0.76.6):
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-callinvoker
+ - React-Core/Default
+ - React-CoreModules
+ - React-cxxreact
+ - React-jsc
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-Mapbuffer
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - React-RuntimeCore (0.76.6):
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-performancetimeline
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - React-runtimeexecutor (0.76.6):
+ - React-jsi (= 0.76.6)
+ - React-runtimescheduler (0.76.6):
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
- React-callinvoker
- React-cxxreact
- React-debug
+ - React-featureflags
- React-jsc
- React-jsi
+ - React-performancetimeline
+ - React-rendererconsistency
- React-rendererdebug
- React-runtimeexecutor
+ - React-timing
+ - React-utils
+ - React-timing (0.76.6)
+ - React-utils (0.76.6):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-debug
+ - React-jsc
+ - React-jsi (= 0.76.6)
+ - ReactCodegen (0.76.6):
+ - DoubleConversion
+ - glog
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-NativeModulesApple
+ - React-rendererdebug
- React-utils
- - React-utils (0.73.6):
- - glog
- - RCT-Folly (= 2022.05.16.00)
- - React-debug
- - ReactCommon (0.73.6):
- - React-logger (= 0.73.6)
- - ReactCommon/turbomodule (= 0.73.6)
- - ReactCommon/turbomodule (0.73.6):
- - DoubleConversion
- - fmt (~> 6.2.1)
- - glog
- - RCT-Folly (= 2022.05.16.00)
- - React-callinvoker (= 0.73.6)
- - React-cxxreact (= 0.73.6)
- - React-jsi (= 0.73.6)
- - React-logger (= 0.73.6)
- - React-perflogger (= 0.73.6)
- - ReactCommon/turbomodule/bridging (= 0.73.6)
- - ReactCommon/turbomodule/core (= 0.73.6)
- - ReactCommon/turbomodule/bridging (0.73.6):
- - DoubleConversion
- - fmt (~> 6.2.1)
- - glog
- - RCT-Folly (= 2022.05.16.00)
- - React-callinvoker (= 0.73.6)
- - React-cxxreact (= 0.73.6)
- - React-jsi (= 0.73.6)
- - React-logger (= 0.73.6)
- - React-perflogger (= 0.73.6)
- - ReactCommon/turbomodule/core (0.73.6):
- - DoubleConversion
- - fmt (~> 6.2.1)
- - glog
- - RCT-Folly (= 2022.05.16.00)
- - React-callinvoker (= 0.73.6)
- - React-cxxreact (= 0.73.6)
- - React-jsi (= 0.73.6)
- - React-logger (= 0.73.6)
- - React-perflogger (= 0.73.6)
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - ReactCommon (0.76.6):
+ - ReactCommon/turbomodule (= 0.76.6)
+ - ReactCommon/turbomodule (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.6)
+ - React-cxxreact (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-logger (= 0.76.6)
+ - React-perflogger (= 0.76.6)
+ - ReactCommon/turbomodule/bridging (= 0.76.6)
+ - ReactCommon/turbomodule/core (= 0.76.6)
+ - ReactCommon/turbomodule/bridging (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.6)
+ - React-cxxreact (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-logger (= 0.76.6)
+ - React-perflogger (= 0.76.6)
+ - ReactCommon/turbomodule/core (0.76.6):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.6)
+ - React-cxxreact (= 0.76.6)
+ - React-debug (= 0.76.6)
+ - React-featureflags (= 0.76.6)
+ - React-jsi (= 0.76.6)
+ - React-logger (= 0.76.6)
+ - React-perflogger (= 0.76.6)
+ - React-utils (= 0.76.6)
- ReactNativePayments (2.0.0):
- React
- RNCAsyncStorage (1.24.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- RNCCheckbox (0.5.17):
- BEMCheckBox (~> 1.4)
- React-Core
- RNCClipboard (1.8.4):
- React-Core
- RNCMaskedView (0.3.2):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- RNDateTimePicker (8.2.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- RNDefaultPreference (1.4.3):
- React
- RNDeviceInfo (9.0.2):
@@ -1439,10 +2287,27 @@ PODS:
- RNFBApp
- RNFS (2.20.0):
- React-Core
- - RNGestureHandler (2.14.1):
+ - RNGestureHandler (2.20.2):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- RNI18n (2.0.15):
- React
- RNInAppBrowser (3.7.0):
@@ -1457,47 +2322,246 @@ PODS:
- RNOS (1.2.6):
- React
- RNPermissions (3.10.1):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNReanimated (3.16.7):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNReanimated/reanimated (= 3.16.7)
+ - RNReanimated/worklets (= 3.16.7)
+ - Yoga
+ - RNReanimated/reanimated (3.16.7):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNReanimated/reanimated/apple (= 3.16.7)
+ - Yoga
+ - RNReanimated/reanimated/apple (3.16.7):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNReanimated/worklets (3.16.7):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - RNReanimated (3.6.3):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNScreens (4.4.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTImage
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNScreens (3.29.0):
+ - RNScreens/common (= 4.4.0)
+ - Yoga
+ - RNScreens/common (4.4.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTImage
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- RNSensors (5.3.0):
- React
- RNSentry (5.36.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Sentry/HybridSDK (= 8.41.0)
+ - Yoga
- RNShare (7.3.7):
- React-Core
- - RNSVG (15.10.1):
+ - RNSVG (15.8.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNSVG/common (= 15.8.0)
+ - Yoga
+ - RNSVG/common (15.8.0):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
- RNVectorIcons (6.4.2):
- React
- segment-analytics-react-native (2.17.0):
- React-Core
- sovran-react-native
- Sentry/HybridSDK (8.41.0)
- - SocketRocket (0.6.1)
+ - SocketRocket (0.7.1)
- sovran-react-native (1.0.4):
- React-Core
- TcpSockets (4.0.0):
- CocoaAsyncSocket
- React
- - Yoga (1.14.0)
+ - Yoga (0.0.0)
DEPENDENCIES:
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
- BVLinearGradient (from `../node_modules/react-native-linear-gradient`)
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- EXConstants (from `../node_modules/expo-constants/ios`)
- - EXFont (from `../node_modules/expo-font/ios`)
- EXJSONUtils (from `../node_modules/expo-json-utils/ios`)
- EXManifests (from `../node_modules/expo-manifests/ios`)
- Expo (from `../node_modules/expo`)
@@ -1505,68 +2569,57 @@ DEPENDENCIES:
- expo-dev-launcher (from `../node_modules/expo-dev-launcher`)
- expo-dev-menu (from `../node_modules/expo-dev-menu`)
- expo-dev-menu-interface (from `../node_modules/expo-dev-menu-interface/ios`)
+ - ExpoAsset (from `../node_modules/expo-asset/ios`)
- ExpoFileSystem (from `../node_modules/expo-file-system/ios`)
+ - ExpoFont (from `../node_modules/expo-font/ios`)
- ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
- ExpoModulesCore (from `../node_modules/expo-modules-core`)
- EXUpdatesInterface (from `../node_modules/expo-updates-interface/ios`)
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
- - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
- Firebase
- FirebaseCore
- FirebaseCoreInternal
- - Flipper (= 0.201.0)
- - Flipper-Boost-iOSX (= 1.76.0.1.11)
- - Flipper-DoubleConversion (= 3.2.0.1)
- - Flipper-Fmt (= 7.1.7)
- - Flipper-Folly (= 2.6.10)
- - Flipper-Glog (= 0.5.0.5)
- - Flipper-PeerTalk (= 0.0.4)
- - FlipperKit (= 0.201.0)
- - FlipperKit/Core (= 0.201.0)
- - FlipperKit/CppBridge (= 0.201.0)
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.201.0)
- - FlipperKit/FBDefines (= 0.201.0)
- - FlipperKit/FKPortForwarding (= 0.201.0)
- - FlipperKit/FlipperKitHighlightOverlay (= 0.201.0)
- - FlipperKit/FlipperKitLayoutPlugin (= 0.201.0)
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.201.0)
- - FlipperKit/FlipperKitNetworkPlugin (= 0.201.0)
- - FlipperKit/FlipperKitReactPlugin (= 0.201.0)
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.201.0)
- - FlipperKit/SKIOSNetworkPlugin (= 0.201.0)
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- GoogleUtilities
- GzipSwift
- lottie-ios (from `../node_modules/lottie-ios`)
- lottie-react-native (from `../node_modules/lottie-react-native`)
- OpenSSL-Universal
- - OpenSSL-Universal (= 1.1.1100)
- Permission-BluetoothPeripheral (from `../node_modules/react-native-permissions/ios/BluetoothPeripheral`)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
- "RCTSearchApi (from `../node_modules/@metamask/react-native-search-api`)"
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`)
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
- - React-Codegen (from `build/generated/ios`)
- React-Core (from `../node_modules/react-native/`)
- - React-Core/DevSupport (from `../node_modules/react-native/`)
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
- React-Fabric (from `../node_modules/react-native/ReactCommon`)
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
- React-FabricImage (from `../node_modules/react-native/ReactCommon`)
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
- React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
- React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
- React-jsc (from `../node_modules/react-native/ReactCommon/jsc`)
+ - React-jsc/Fabric (from `../node_modules/react-native/ReactCommon/jsc`)
- 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`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
- react-native-aes (from `../node_modules/react-native-aes-crypto`)
- react-native-background-timer (from `../node_modules/react-native-background-timer`)
- react-native-ble-plx (from `../node_modules/react-native-ble-plx`)
@@ -1598,6 +2651,7 @@ DEPENDENCIES:
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
@@ -1610,11 +2664,16 @@ DEPENDENCIES:
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
- React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
- React-rncore (from `../node_modules/react-native/ReactCommon`)
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- 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`)
+ - ReactCodegen (from `build/generated/ios`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- "ReactNativePayments (from `../node_modules/@metamask/react-native-payments/lib/ios/`)"
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
@@ -1659,27 +2718,18 @@ SPEC REPOS:
- FirebaseCoreInternal
- FirebaseInstallations
- FirebaseMessaging
- - Flipper
- - Flipper-Boost-iOSX
- - Flipper-DoubleConversion
- - Flipper-Fmt
- - Flipper-Folly
- - Flipper-Glog
- - Flipper-PeerTalk
- - FlipperKit
- - fmt
- GoogleAppMeasurement
- GoogleDataTransport
- GoogleUtilities
- GZIP
- GzipSwift
- - libevent
- MMKV
- MMKVCore
- MultiplatformBleAdapter
- nanopb
- OpenSSL-Universal
- PromisesObjC
+ - React-Codegen
- Sentry
- SocketRocket
@@ -1692,8 +2742,6 @@ EXTERNAL SOURCES:
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
EXConstants:
:path: "../node_modules/expo-constants/ios"
- EXFont:
- :path: "../node_modules/expo-font/ios"
EXJSONUtils:
:path: "../node_modules/expo-json-utils/ios"
EXManifests:
@@ -1708,8 +2756,12 @@ EXTERNAL SOURCES:
:path: "../node_modules/expo-dev-menu"
expo-dev-menu-interface:
:path: "../node_modules/expo-dev-menu-interface/ios"
+ ExpoAsset:
+ :path: "../node_modules/expo-asset/ios"
ExpoFileSystem:
:path: "../node_modules/expo-file-system/ios"
+ ExpoFont:
+ :path: "../node_modules/expo-font/ios"
ExpoKeepAwake:
:path: "../node_modules/expo-keep-awake/ios"
ExpoModulesCore:
@@ -1718,8 +2770,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/expo-updates-interface/ios"
FBLazyVector:
:path: "../node_modules/react-native/Libraries/FBLazyVector"
- FBReactNativeSpec:
- :path: "../node_modules/react-native/React/FBReactNativeSpec"
+ fmt:
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
glog:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
lottie-ios:
@@ -1730,8 +2782,10 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-permissions/ios/BluetoothPeripheral"
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/RCTRequired"
+ :path: "../node_modules/react-native/Libraries/Required"
RCTSearchApi:
:path: "../node_modules/@metamask/react-native-search-api"
RCTTypeSafety:
@@ -1740,8 +2794,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/"
React-callinvoker:
:path: "../node_modules/react-native/ReactCommon/callinvoker"
- React-Codegen:
- :path: build/generated/ios
React-Core:
:path: "../node_modules/react-native/"
React-CoreModules:
@@ -1750,12 +2802,24 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/cxxreact"
React-debug:
:path: "../node_modules/react-native/ReactCommon/react/debug"
+ React-defaultsnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
+ React-domnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
React-Fabric:
:path: "../node_modules/react-native/ReactCommon"
+ React-FabricComponents:
+ :path: "../node_modules/react-native/ReactCommon"
React-FabricImage:
:path: "../node_modules/react-native/ReactCommon"
+ React-featureflags:
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
+ React-featureflagsnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
React-graphics:
:path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
+ React-idlecallbacksnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
React-ImageManager:
:path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
React-jsc:
@@ -1768,10 +2832,14 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
React-jsinspector:
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
+ React-jsitracing:
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
React-logger:
:path: "../node_modules/react-native/ReactCommon/logger"
React-Mapbuffer:
:path: "../node_modules/react-native/ReactCommon"
+ React-microtasksnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
react-native-aes:
:path: "../node_modules/react-native-aes-crypto"
react-native-background-timer:
@@ -1834,6 +2902,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
+ React-performancetimeline:
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
React-RCTActionSheet:
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
React-RCTAnimation:
@@ -1858,16 +2928,26 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/Text"
React-RCTVibration:
:path: "../node_modules/react-native/Libraries/Vibration"
+ React-rendererconsistency:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
React-rendererdebug:
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
React-rncore:
:path: "../node_modules/react-native/ReactCommon"
+ React-RuntimeApple:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
+ React-RuntimeCore:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
React-runtimeexecutor:
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
React-runtimescheduler:
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
+ React-timing:
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
React-utils:
:path: "../node_modules/react-native/ReactCommon/react/utils"
+ ReactCodegen:
+ :path: build/generated/ios
ReactCommon:
:path: "../node_modules/react-native/ReactCommon"
ReactNativePayments:
@@ -1932,26 +3012,26 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Base64: cecfb41a004124895a7bcee567a89bae5a89d49b
BEMCheckBox: 5ba6e37ade3d3657b36caecc35c8b75c6c2b1a4e
- boost: d3f49c53809116a5d38da093a8aa78bf551aed09
+ boost: 1dca942403ed9342f98334bf4c3621f011aa7946
Branch: 4ac024cb3c29b0ef628048694db3c4cfa679beb0
BVLinearGradient: cb006ba232a1f3e4f341bb62c42d1098c284da70
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
- DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
- EXConstants: c82ef9280044accc91fb6082047afdc9a408f61a
- EXFont: 64e653a110eee050ad80dfcd676c4bada0a1ff92
- EXJSONUtils: 5c42959e87be238b045ef37cc5268b16a6c0ad4a
- EXManifests: 429136cffa3ae82d1ba3b60b7243fb186615562e
- Expo: 1b33cb8ab60cff9abf805ed6020af3d1846e457c
- expo-dev-client: 775a683302570193a7ba71032d0b1b82f6ad1454
- expo-dev-launcher: 4b9190f0879290b57ed89cc5c24592d4ce981f85
- expo-dev-menu: efe7323e7f918e437a02f20063eb2b55c13dfe99
- expo-dev-menu-interface: 44e69ddff62bbc6c5418c200e657635720b5a480
- ExpoFileSystem: df58e1eb2a4d6f1006a1ca70bddfbbf63e52fa4f
- ExpoKeepAwake: 3b8cf8533b9212500565a1e41fb080fc5af29918
- ExpoModulesCore: 43ebd65adf2c0e6ffb0de24a41f8f7de12829331
- EXUpdatesInterface: 3e444e2093e25b7ca0999a7d8c16e8392dee70c3
- FBLazyVector: f64d1e2ea739b4d8f7e4740cde18089cd97fe864
- FBReactNativeSpec: 9f2b8b243131565335437dba74923a8d3015e780
+ DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
+ EXConstants: 6b8c5653492349b3c3fe6b905c556bc45b360405
+ EXJSONUtils: 01fc7492b66c234e395dcffdd5f53439c5c29c93
+ EXManifests: 15142dee1be3ea1cd0039feddef3888c3f0bb057
+ Expo: 296cbea8d4469eb60d61f09dbd4925f86d2b85da
+ expo-dev-client: 6166140e8a75696f3c965fe225a9542d39eeb652
+ expo-dev-launcher: 9a4f81a69ef07a83b4e9a882c7d0332e89349273
+ expo-dev-menu: 11ec83ae571ab00683ddf3ccb0bd13a598469291
+ expo-dev-menu-interface: 00dc42302a72722fdecec3fa048de84a9133bcc4
+ ExpoAsset: d2d2cbc6a4efadf51a3da27d85d589935abd0b98
+ ExpoFileSystem: 818e82dbb71175414d1ca310e926c48ff0d07348
+ ExpoFont: 38656978c2a4022fb7e0c43e4968d66340f5e2f3
+ ExpoKeepAwake: 62ff49bbc3bff90d8ee28329190f9ba371bf88e7
+ ExpoModulesCore: 100ddcab324cc0629d61058e16410851d415a241
+ EXUpdatesInterface: 7c977640bdd8b85833c19e3959ba46145c5719db
+ FBLazyVector: be509404b5de73a64a74284edcaf73a5d1e128b1
Firebase: cec914dab6fd7b1bd8ab56ea07ce4e03dd251c2d
FirebaseAnalytics: 23717de130b779aa506e757edb9713d24b6ffeda
FirebaseCore: 30e9c1cbe3d38f5f5e75f48bfcea87d7c358ec16
@@ -1959,134 +3039,140 @@ SPEC CHECKSUMS:
FirebaseCoreInternal: df84dd300b561c27d5571684f389bf60b0a5c934
FirebaseInstallations: 913cf60d0400ebd5d6b63a28b290372ab44590dd
FirebaseMessaging: 7b5d8033e183ab59eb5b852a53201559e976d366
- Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44
- Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
- Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
- Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
- Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
- Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
- Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
- FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f
- fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
- glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
+ fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
+ glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
GoogleAppMeasurement: f9de05ee17401e3355f68e8fc8b5064d429f5918
GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a
GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15
GZIP: 3c0abf794bfce8c7cb34ea05a1837752416c8868
GzipSwift: 893f3e48e597a1a4f62fafcb6514220fcf8287fa
- libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
lottie-ios: a881093fab623c467d3bce374367755c272bdd59
- lottie-react-native: b69a28b9c766ad03f0155daf19b7fee8217f29e0
- MMKV: f7d1d5945c8765f97f39c3d121f353d46735d801
- MMKVCore: c04b296010fcb1d1638f2c69405096aac12f6390
+ lottie-react-native: eadfc1910e46c0c27274517c2b1ff1d86cf6c28a
+ MMKV: 3eacda84cd1c4fc95cf848d3ecb69d85ed56006c
+ MMKVCore: 508b4d3a8ce031f1b5c8bd235f0517fb3f4c73a9
MultiplatformBleAdapter: b1fddd0d499b96b607e00f0faa8e60648343dc1d
nanopb: 438bc412db1928dac798aa6fd75726007be04262
- OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
+ OpenSSL-Universal: b60a3702c9fea8b3145549d421fdb018e53ab7b4
Permission-BluetoothPeripheral: 34ab829f159c6cf400c57bac05f5ba1b0af7a86e
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
- RCT-Folly: cd21f1661364f975ae76b3308167ad66b09f53f5
- RCTRequired: ca1d7414aba0b27efcfa2ccd37637edb1ab77d96
+ RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
+ RCTDeprecation: 063fc281b30b7dc944c98fe53a7e266dab1a8706
+ RCTRequired: 8eda2a5a745f6081157a4f34baac40b65fe02b31
RCTSearchApi: 5fc36140c598a74fd831dca924a28ed53bc7aa18
- RCTTypeSafety: 678e344fb976ff98343ca61dc62e151f3a042292
- React: e296bcebb489deaad87326067204eb74145934ab
- React-callinvoker: d0b7015973fa6ccb592bb0363f6bc2164238ab8c
- React-Codegen: 57b7015f480ed2bdae11cf85cd27f9ac2e15118a
- React-Core: e2063dcac870c9bbd3323b341fc2eff9d4c09899
- React-CoreModules: 069bdb1c6013215afe85fb9627569dc1f21b8f44
- React-cxxreact: d677917cb8523b2349565d7b3afc8a85f6fe8ed6
- React-debug: d444db402065cca460d9c5b072caab802a04f729
- React-Fabric: 2cc7c4989c057fdd71ec2bc1b064258cf9b7f74f
- React-FabricImage: c4c5bd8fc4068a1cba5404c7eafa1d0f5aab45d5
- React-graphics: 2d3bb1c23fb71e7dc0f25e1c13f9cd8a0f331166
- React-ImageManager: 37eeded59dc2bac8d76c9f78f421980c972215b6
- React-jsc: 423fa1db16947e4dffb83c72f6fe4248913b0e00
- React-jserrorhandler: 1ddd1e3e596bd3846ad81d2aa7ca3946c15b9ed0
- React-jsi: 8d0cdc7cc512abf937ff20b0ea2e33c99efdc852
- React-jsiexecutor: 662fe4c4fa897d42e67cf143c75341a5d747d12e
- React-jsinspector: 85583ef014ce53d731a98c66a0e24496f7a83066
- React-logger: 55764cd993880c6f887505854581c9faf68feff2
- React-Mapbuffer: 15dfcfeb4428d8799cce75e7fe85b18b706029e0
+ RCTTypeSafety: 0f96bf6c99efc33eb43352212703854933f22930
+ React: 1d3d5bada479030961d513fb11e42659b30e97ff
+ React-callinvoker: 682c610b9e9d3b93bd8d0075eacb2e6aa304d3e0
+ React-Codegen: 4b8b4817cea7a54b83851d4c1f91f79aa73de30a
+ React-Core: f6f6e02fe234b36f53dfcdad1b446ef59b6ba3f2
+ React-CoreModules: 91afb654834f0a1f48fb26dd1f4d1a1460c44def
+ React-cxxreact: 4812725a7d2e312a336196c7dfa236e407298c8e
+ React-debug: 4ae2e95c2d392cca29939a3a2f2b4320ddff3e59
+ React-defaultsnativemodule: 5b2297c20614134d41969d1719a1442d1f412091
+ React-domnativemodule: 33159b8fb024ce6dbeb9ce6aa46f9dc4bccf3e13
+ React-Fabric: fd92d1f92d369235d0919317c726a3133f74fd18
+ React-FabricComponents: b14879cdcbe5204e660fd50ba0015b15a9d42b31
+ React-FabricImage: aef9be2b461ace512834682a7ab96d181dec1556
+ React-featureflags: 5670e0dcdc17ba2515963d117dacc13d5b69c431
+ React-featureflagsnativemodule: 7de63a578e9b692ea78f3bf79c53c50cde355997
+ React-graphics: 659968f797257c0071ddff28a2d094c8e5c5899c
+ React-idlecallbacksnativemodule: cb56347070df6a212cc597f7845135be009ed2de
+ React-ImageManager: e3d0270c82bf39432da2aff2fcd60dd16b308689
+ React-jsc: bf4b959648e28bb034c59a64e25fcdca058f5ab0
+ React-jserrorhandler: 5674960dcb02d0be50cb1a5dfca8ff4222ba742a
+ React-jsi: 528a1b42394a3476d6b2b6a6736a4c66e17974b5
+ React-jsiexecutor: 3a8deedc1c54f90a22c9aeb5d91177120a7da6c3
+ React-jsinspector: d72b318d0f5f9ed11b1ac01ee211869e76bc6556
+ React-jsitracing: 810d0465c3455e352a71147c18332b1cba1d1410
+ React-logger: d42a53754a7252cc7a851315f0da2e46b450ea92
+ React-Mapbuffer: 89885d1518433a462fe64b68bf5e097997380090
+ React-microtasksnativemodule: 7cddcb124afcfc7e5232e267805719400ea8a783
react-native-aes: e8b2e113d532b0efb6449754492aee9c218dd502
react-native-background-timer: 007ff829f79644caf2ed013e22f0563560336f86
- react-native-ble-plx: 86e55ae20d01b7a1a04fa7a7f43cc299db835eed
+ react-native-ble-plx: 663129f502ceae88b0450713353b22e0ccfad5bc
react-native-blob-jsi-helper: bd7509e50b0f906044c53ad7ab767786054424c9
- react-native-blob-util: 6560d6fc4b940ec140f9c3ebe21c8669b1df789b
- react-native-blur: 6944bf4ce4a12af7a4021aec5864bcbddd6269a3
+ react-native-blob-util: 9b96fe478a42463489c5c49e82f0e3538dbaf13a
+ react-native-blur: 1ad6e9178922e3fad3d22bcbf54e4d963a269153
react-native-branch: 76e1f947b40597727e6faa5cba5824d7ecf6c6b0
react-native-camera: 1e6fefa515d3af8b4aeaca3a8bffa2925252c4ea
- react-native-compat: b2acf4874e97bb1462b57cfa9d3ace8170e762a7
+ react-native-compat: 2864fcdb093dabd011d04e46d7951f9c8e271316
react-native-cookies: d648ab7025833b977c0b19e142503034f5f29411
react-native-fast-crypto: 6b448866f5310cf203714a21147ef67f735bea8e
react-native-flipper: ca4382a2b6cfd319b6e212539bc1fe7aafe36879
- react-native-get-random-values: 0fd2b6a3129988d701d10e30f0622d5f039531bc
- react-native-gzip: 8d602277c2564591f04dd1cec4043acc8350dcc3
+ react-native-get-random-values: d16467cf726c618e9c7a8c3c39c31faa2244bbba
+ react-native-gzip: 794e0e964a0d9e1dfd1773fee938adb4d4310e26
react-native-in-app-review: b3d1eed3d1596ebf6539804778272c4c65e4a400
react-native-launch-arguments: 7eb321ed3f3ef19b3ec4a2eca71c4f9baee76b41
react-native-mmkv: 5a46c73e3e12aa872c4485ae0e4414b4040af79a
- react-native-netinfo: 5364263f903da576bdef9c84a76fe243ab06812c
- react-native-performance: 125a96c145e29918b55b45ce25cbba54f1e24dcd
+ react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
+ react-native-performance: 1b7f418b6bcce9dc239d568fd653e7bda95037fd
react-native-quick-base64: daf67f19ee076b77f0755bf4056f3425f164e1d8
react-native-quick-crypto: eff065b704d3f1c6e336cfc612dce63228ab3482
react-native-randombytes: 3c8f3e89d12487fd03a2f966c288d495415fc116
react-native-render-html: 5afc4751f1a98621b3009432ef84c47019dcb2bd
- react-native-safe-area-context: bf9d9d58f0f6726d4a6257088044c2595017579d
- react-native-slider: 0a443835d3a9ad69975eaa75a046ddf743ce3d2f
+ react-native-safe-area-context: 2b12eb32e1faf3d212f8f93e55738de45ae78752
+ react-native-slider: b133c0ca0414af140b57359eac0fcf7473678162
react-native-video: 2aad0d963bf3952bd9ebb2f53fab799338e8e202
- react-native-view-shot: d1a701eb0719c6dccbd20b4bb43b1069f304cb70
- react-native-webview-mm: d5f16bf95d45db97b53851ab87c79b2e1d964a13
- React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f
- React-NativeModulesApple: d785436758436f4e02f8035ff4d1b6a8d1da178b
- React-perflogger: 5f49905de275bac07ac7ea7f575a70611fa988f2
- React-RCTActionSheet: 37edf35aeb8e4f30e76c82aab61f12d1b75c04ec
- React-RCTAnimation: b49b2e3beffa553e2120ef0767ce99b4591893c4
- React-RCTAppDelegate: cff731ef87fc4920fcc2a9cb771be6def2237a57
- React-RCTBlob: 186e9c39277767ed6e99c3fe834b91d3fe760e90
- React-RCTFabric: 66dcd442567903ae3ef71f2a4e8dc18ad7bae95b
- React-RCTImage: 665aaf80481423b2e896dcc67afa72e5993a2a4c
- React-RCTLinking: a9321777212cf50b396983b4f3b3190fbfe53aa8
- React-RCTNetwork: 4726e738c784679902d8425bd02c78f7e69d2ebf
- React-RCTPushNotification: 08bda10d81c7e877a4eee13a41983d367371db35
- React-RCTSettings: 4831390d89a911f10f154d5c440f6312f8aebe3d
- React-RCTText: 7b1451059ba1d2c40f057c58211864c5e81e90a4
- React-RCTVibration: d23654befc1d9eda8b69b0e9d4127800abcae76f
- React-rendererdebug: ec22f2e3e545bd0ad15abc6e5710595ccfe45c94
- React-rncore: b0a8e1d14dabb7115c7a5b4ec8b9b74d1727d382
- React-runtimeexecutor: bb328dbe2865f3a550df0240df8e2d8c3aaa4c57
- React-runtimescheduler: d56a0860f964bd86756b89bc9883179f055f31ba
- React-utils: 288c9cb9a73bb150c273c84df7c2f8546f28e23f
- ReactCommon: 53a7c32268a2ec0779faa89d7af0392f4d8e8dca
+ react-native-view-shot: 785ab3085c7927801c30136ecc77e7f2aa63fa67
+ react-native-webview-mm: f821def18e6d8787ad7325734850334c647eacb5
+ React-nativeconfig: 539ff4de6ce3b694e8e751080568c281c84903ce
+ React-NativeModulesApple: a7d6f427e0c4de4f02bc5a9cce29baa24746376e
+ React-perflogger: f260e2de95f9dbd002035251559c13bf1f0643d4
+ React-performancetimeline: 957075cead70fe9536a327eb4f842b3d8982f2ec
+ React-RCTActionSheet: ed5a845eae98fe455b9a1d71f057d626e2f3f1c5
+ React-RCTAnimation: a49bd2c28c3f32b1d01ff1163603aee3d420ce42
+ React-RCTAppDelegate: a7a4525819d84736832f46239abe60e8c69a576b
+ React-RCTBlob: cf9b97da027d98845dc8f04e93150a2edcab560d
+ React-RCTFabric: e6fd78fce5a5b37ba9da9417d6541063d9cbda3d
+ React-RCTImage: 077a25f3a9a6b79938a01c2cfae05ea5f07fc584
+ React-RCTLinking: 0c8415c600942454d663c4c4dc0d3b00aa7ba5e5
+ React-RCTNetwork: 42a3c6fb5318dcc9f8796f43de081799fb905021
+ React-RCTPushNotification: e38f32ca776c86921161d2aabdadcc6572fa2aba
+ React-RCTSettings: 1028522e45192515bd8c5308752d3270ee95fd66
+ React-RCTText: 29ef786d78f69ec5b571634ef2ddd6ec177c958a
+ React-RCTVibration: 97859ed50816369f4830f623dfac8dc9877f3c5c
+ React-rendererconsistency: ccd50d5ee6544b26cd11fff5ad1112c5058a0064
+ React-rendererdebug: 2092a1207a0023ac30877f4f730b403bfaf5ccbe
+ React-rncore: bfe554cb773978e8b94898866964c9579cb0c70c
+ React-RuntimeApple: 821cd3be918e70072980f9bae3a56b24f203f8e4
+ React-RuntimeCore: 81a07c594c592dc2f960b14fbebe65c94967a074
+ React-runtimeexecutor: 26a9d14619ec1359470df391be9abb7c80a21b2b
+ React-runtimescheduler: 3777c7a2dece87002e62a9961ac488aa4e8a333f
+ React-timing: c9c7c0fe2fdfc433ef208889b6191dfb45457d68
+ React-utils: ca8195b8b6da1142e93c64d872e5f2e563c917fd
+ ReactCodegen: b95bdd8716016cb9a831cfd3f23d9b9de4dc5d8e
+ ReactCommon: 316f528c058ca9bc3a0c430ce46a85bbd69aa2a0
ReactNativePayments: 47056cd9f1dc32dbdd716974de5df700c44f12db
- RNCAsyncStorage: b6410dead2732b5c72a7fdb1ecb5651bbcf4674b
+ RNCAsyncStorage: b8f150a77f5c531ad336d20f8c8b6304fbd6b0af
RNCCheckbox: 450ce156f3e29e25efa0315c96cfbabe5a39ded1
RNCClipboard: ba13782f62310ffd4377332497241a1051f6870b
- RNCMaskedView: 3f3c27b339db863b1fd5f39cc9660484ecfd46ee
- RNDateTimePicker: 818460dc31b0dc5ec58289003e27dd8d022fb79c
+ RNCMaskedView: 3ba1daa87b4eabf96e84dfc15c0c76a3b27e6b27
+ RNDateTimePicker: 32b56bd881bf89fefd075363f15453d2c2e7ba42
RNDefaultPreference: 36fe31684af1f2d14e0664aa9a816d0ec6149cc1
RNDeviceInfo: e5219d380b51ddb7f97e650ab99a518476b90203
RNFBApp: 0e66b9f844efdf2ac3fa2b30e64c9db41a263b3d
RNFBMessaging: 70b12c9f22c7c9d5011ac9b12ac2bafbfb081267
RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8
- RNGestureHandler: dd5543af5c344cb2bdd8de81a8ec85adb5ec4b4b
+ RNGestureHandler: 3723d599b0a4efb4460631dcaf12ac6f055800f0
RNI18n: 11ec5086508673ef71b5b567da3e8bcca8a926e1
RNInAppBrowser: 6d3eb68d471b9834335c664704719b8be1bfdb20
RNKeychain: 3194f1c9d8599f39e570b4b5ecbcdd8cd610e771
RNNotifee: 5165d37aaf980031837be3caece2eae5a6d73ae8
RNOS: d07e5090b5060c6f2b83116d740a32cfdb33afe3
- RNPermissions: bd0d9ca7969ff7b999aa605ee2e5919c12522bfe
- RNReanimated: 8adb252a83153bb04b99abf93a09b47d4cac8f92
- RNScreens: 59f615aa0782077560c8eea46c2daec3a716dba9
+ RNPermissions: e9b81ba46cf8070a7337256c4cc3e1db6c69a4c1
+ RNReanimated: 3bd56723e3efdd523b0088d2b137060989108a97
+ RNScreens: 42d6b4950cda8fb99dab11c9d74e8e8e44237b7a
RNSensors: 4690be00931bc60be7c7bd457701edefaff965e3
- RNSentry: d303e85f79cfff6c754c195d39839d9e5c805758
+ RNSentry: d053018e85189f6e95e17b434719abf6ef023495
RNShare: d03cdc71e750246a48b81dcd62bd792bf57a758e
- RNSVG: 3421710ac15f4f2dc47e5c122f2c2e4282116830
+ RNSVG: 47b4cea3924979cc761910dc3f4c23361640f7ac
RNVectorIcons: 24be0b504ce32d5bea38bde6c645f08b9c736392
segment-analytics-react-native: 885c1703579dc7964b97e7ae11d857669aa9b015
Sentry: 54d0fe6c0df448497c8ed4cce66ccf7027e1823e
- SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
sovran-react-native: e4721a564ee6ef5b5a0d901bc677018cf371ea01
TcpSockets: 48866ffcb39d7114741919d21069fc90189e474a
- Yoga: 805bf71192903b20fc14babe48080582fee65a80
+ Yoga: be6f55a028e86c83ae066f018e9b5d24ffc45436
-PODFILE CHECKSUM: ee8427e033cd978f682bed0d13cc37aafe5aef35
+PODFILE CHECKSUM: cdd053e716c96437e313699722e47b936b2eb8da
COCOAPODS: 1.16.2
diff --git a/package.json b/package.json
index c85b27f16ae3..49417ed82f07 100644
--- a/package.json
+++ b/package.json
@@ -114,11 +114,11 @@
"@metamask/react-native-payments/validator": "^13.7.0",
"**/@metamask/utils": "^10.0.0",
"**/minimist": "1.2.6",
- "d3-color": "3.1.0",
+ "d3-color": "1",
"tough-cookie": "4.1.3",
"crypto-js": "4.2.0",
"axios": "^1.7.4",
- "react-native-ble-plx": "3.1.2",
+ "react-native-ble-plx": "3.2.1",
"**/babel-runtime/regenerator-runtime": "^0.13.8",
"redux-persist-filesystem-storage/react-native-blob-util": "^0.19.9",
"xmldom": "npm:@xmldom/xmldom@0.7.13",
@@ -134,9 +134,9 @@
"micromatch": "4.0.8",
"send": "0.19.0",
"ethereumjs-util/**/secp256k1": "3.8.1",
- "**/secp256k1": "4.0.4",
- "**/@metamask/rpc-errors": "7.0.1",
- "**/@expo/image-utils/semver": "7.5.2",
+ "**/secp256k1": "5.0.",
+ "**/@metamask/rpc-errors": "7.0.2",
+ "**/@expo/image-utils/semver": "7.6.0",
"base58-js": "1.0.0",
"bech32": "2.0.0",
"sha256-uint8array": "0.10.3",
@@ -192,7 +192,7 @@
"@metamask/react-native-search-api": "1.0.1",
"@metamask/react-native-webview": "^14.0.4",
"@metamask/remote-feature-flag-controller": "^1.0.0",
- "@metamask/rpc-errors": "^7.0.1",
+ "@metamask/rpc-errors": "^7.0.2",
"@metamask/scure-bip39": "^2.1.0",
"@metamask/sdk-communication-layer": "0.29.0-wallet",
"@metamask/selected-network-controller": "^19.0.0",
@@ -216,7 +216,7 @@
"@react-native-community/blur": "^4.4.0",
"@react-native-community/checkbox": "^0.5.17",
"@react-native-community/datetimepicker": "^8.0.0",
- "@react-native-community/netinfo": "11.1.0",
+ "@react-native-community/netinfo": "11.4.1",
"@react-native-community/slider": "^4.4.3",
"@react-native-cookies/cookies": "^6.2.1",
"@react-native-firebase/app": "^20.5.0",
@@ -266,9 +266,9 @@
"ethjs-ens": "2.0.1",
"eventemitter2": "^6.4.9",
"events": "3.0.0",
- "expo": "^50.0.0",
- "expo-build-properties": "~0.11.1",
- "expo-dev-client": "~3.3.12",
+ "expo": "^52.0.0",
+ "expo-build-properties": "~0.13.2",
+ "expo-dev-client": "~5.0.9",
"fuse.js": "3.4.4",
"https-browserify": "0.0.1",
"human-standard-token-abi": "^2.0.0",
@@ -312,8 +312,8 @@
"react-native-fade-in-image": "1.4.1",
"react-native-fast-crypto": "^2.2.0",
"react-native-fs": "^2.20.0",
- "react-native-gesture-handler": "~2.14.0",
- "react-native-get-random-values": "^1.8.0",
+ "react-native-gesture-handler": "~2.20.2",
+ "react-native-get-random-values": "~1.11.0",
"react-native-gzip": "^1.1.0",
"react-native-i18n": "2.0.15",
"react-native-in-app-review": "^4.3.3",
@@ -333,24 +333,24 @@
"react-native-quick-base64": "^2.0.8",
"react-native-quick-crypto": "^0.6.1",
"react-native-randombytes": "^3.5.3",
- "react-native-reanimated": "~3.6.2",
+ "react-native-reanimated": "~3.16.1",
"react-native-render-html": "^6.3.4",
- "react-native-safe-area-context": "4.8.2",
- "react-native-screens": "~3.29.0",
+ "react-native-safe-area-context": "4.12.0",
+ "react-native-screens": "~4.4.0",
"react-native-scrollable-tab-view": "^1.0.0",
"react-native-sensors": "5.3.0",
"react-native-share": "7.3.7",
"react-native-size-matters": "0.4.0",
"react-native-skeleton-placeholder": "^5.0.0",
"react-native-step-indicator": "^1.0.3",
- "react-native-svg": "^15.3.0",
+ "react-native-svg": "15.8.0",
"react-native-svg-charts": "^5.4.0",
"react-native-swipe-gestures": "1.0.3",
"react-native-tcp": "aprock/react-native-tcp#98fbc801f0586297f16730b2f4c75eef15dfabcd",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "6.4.2",
"react-native-video": "5.2.1",
- "react-native-view-shot": "3.8.0",
+ "react-native-view-shot": "4.0.3",
"react-native-webview-invoke": "^0.6.2",
"react-redux": "^8.1.3",
"readable-stream": "2.3.7",
@@ -380,9 +380,6 @@
"@babel/preset-env": "^7.25.3",
"@babel/register": "^7.24.6",
"@babel/runtime": "^7.25.0",
- "@react-native-community/cli": "15.0.1",
- "@react-native-community/cli-platform-android": "15.0.1",
- "@react-native-community/cli-platform-ios": "15.0.1",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^22.0.0",
"@ethersproject/contracts": "^5.7.0",
@@ -401,6 +398,9 @@
"@open-rpc/mock-server": "^1.7.5",
"@open-rpc/schema-utils-js": "^1.16.2",
"@open-rpc/test-coverage": "^2.2.2",
+ "@react-native-community/cli": "15.0.1",
+ "@react-native-community/cli-platform-android": "15.0.1",
+ "@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/metro-config": "^0.72.12",
"@rpii/wdio-html-reporter": "^7.7.1",
"@sentry/types": "^7.117.0",
@@ -425,7 +425,7 @@
"@types/lodash": "^4.14.184",
"@types/node": "^20.12.8",
"@types/qs": "^6.9.15",
- "@types/react": "~18.2.45",
+ "@types/react": "~18.3.12",
"@types/react-native": "^0.64.10",
"@types/react-native-background-timer": "^2.0.0",
"@types/react-native-elevated-view": "^0.0.4",
@@ -492,8 +492,7 @@
"portfinder": "^1.0.32",
"prettier": "^2.2.1",
"prettier-plugin-gherkin": "^1.1.1",
- "react-dom": "18.2.0",
- "react-native-flipper": "^0.263.0",
+ "react-dom": "18.3.1",
"react-native-launch-arguments": "^4.0.1",
"react-native-performance": "^5.1.2",
"react-native-storybook-loader": "^2.0.4",
@@ -603,7 +602,9 @@
"@react-native-firebase/app>firebase>@firebase/firestore>@grpc/proto-loader>protobufjs": false,
"appium": false,
"appium>@appium/support>sharp": false,
- "@metamask/eth-ledger-bridge-keyring>@ledgerhq/hw-app-eth>@ledgerhq/domain-service>eip55>keccak": false
+ "@metamask/eth-ledger-bridge-keyring>@ledgerhq/hw-app-eth>@ledgerhq/domain-service>eip55>keccak": false,
+ "@keystonehq/bc-ur-registry-eth>hdkey>secp256k1": false,
+ "@storybook/builder-webpack5>@storybook/core-common>esbuild": false
}
},
"packageManager": "yarn@1.22.22"
diff --git a/patches/react-native-aes-crypto-forked+1.2.1.patch b/patches/react-native-aes-crypto-forked+1.2.1.patch
index a295002833ca..fd2adea916b9 100644
--- a/patches/react-native-aes-crypto-forked+1.2.1.patch
+++ b/patches/react-native-aes-crypto-forked+1.2.1.patch
@@ -1,24 +1,7 @@
diff --git a/node_modules/react-native-aes-crypto-forked/android/build.gradle b/node_modules/react-native-aes-crypto-forked/android/build.gradle
-index e717caf..8eb29c8 100644
+index e717caf..a892a0e 100644
--- a/node_modules/react-native-aes-crypto-forked/android/build.gradle
+++ b/node_modules/react-native-aes-crypto-forked/android/build.gradle
-@@ -1,12 +1,12 @@
- apply plugin: 'com.android.library'
-
- android {
-- compileSdkVersion 26
-- buildToolsVersion "26.0.1"
-+ compileSdkVersion 33
-+ buildToolsVersion "33.0.0"
-
- defaultConfig {
-- minSdkVersion 19
-- targetSdkVersion 22
-+ minSdkVersion 21
-+ targetSdkVersion 33
- versionCode 1
- versionName "1.0"
- }
@@ -19,10 +19,10 @@ android {
}
@@ -36,51 +19,3 @@ index e717caf..8eb29c8 100644
+ implementation 'com.madgag.spongycastle:pkix:1.54.0.0'
+ implementation 'com.madgag.spongycastle:pg:1.54.0.0'
}
-diff --git a/node_modules/react-native-aes-crypto-forked/android/build.gradle.orig b/node_modules/react-native-aes-crypto-forked/android/build.gradle.orig
-new file mode 100644
-index 0000000..e717caf
---- /dev/null
-+++ b/node_modules/react-native-aes-crypto-forked/android/build.gradle.orig
-@@ -0,0 +1,28 @@
-+apply plugin: 'com.android.library'
-+
-+android {
-+ compileSdkVersion 33
-+ buildToolsVersion "33.0.0"
-+
-+ defaultConfig {
-+ minSdkVersion 21
-+ targetSdkVersion 33
-+ versionCode 1
-+ versionName "1.0"
-+ }
-+ buildTypes {
-+ release {
-+ minifyEnabled false
-+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
-+ }
-+ }
-+}
-+
-+dependencies {
-+ compile 'com.android.support:appcompat-v7:23.0.1'
-+ compile 'com.facebook.react:react-native:+'
-+ compile 'com.madgag.spongycastle:core:1.58.0.0'
-+ compile 'com.madgag.spongycastle:prov:1.54.0.0'
-+ compile 'com.madgag.spongycastle:pkix:1.54.0.0'
-+ compile 'com.madgag.spongycastle:pg:1.54.0.0'
-+}
-diff --git a/node_modules/react-native-aes-crypto-forked/android/build.gradle.rej b/node_modules/react-native-aes-crypto-forked/android/build.gradle.rej
-new file mode 100644
-index 0000000..2ce2e4e
---- /dev/null
-+++ b/node_modules/react-native-aes-crypto-forked/android/build.gradle.rej
-@@ -0,0 +1,8 @@
-+@@ -1,5 +1,5 @@
-+ apply plugin: 'com.android.library'
-+
-+ android {
-+- compileSdkVersion 26
-+- buildToolsVersion "26.0.1"
-++ compileSdkVersion 33
-++ buildToolsVersion "33.0.0"
diff --git a/patches/react-native-i18n+2.0.15.patch b/patches/react-native-i18n+2.0.15.patch
index c197d67d24ad..2061de52eabe 100644
--- a/patches/react-native-i18n+2.0.15.patch
+++ b/patches/react-native-i18n+2.0.15.patch
@@ -1,22 +1,11 @@
diff --git a/node_modules/react-native-i18n/android/build.gradle b/node_modules/react-native-i18n/android/build.gradle
-index 2614c62..12cbda7 100644
+index 2614c62..746b873 100644
--- a/node_modules/react-native-i18n/android/build.gradle
+++ b/node_modules/react-native-i18n/android/build.gradle
@@ -22,5 +22,5 @@ android {
}
-
+
dependencies {
- compile "com.facebook.react:react-native:+" // From node_modules
-+ api "com.facebook.react:react-native:+" // From node_modules
++ implementation "com.facebook.react:react-native:+" // From node_modules
}
-diff --git a/node_modules/react-native-i18n/android/src/main/AndroidManifest.xml b/node_modules/react-native-i18n/android/src/main/AndroidManifest.xml
-index 818651f..f746bbd 100644
---- a/node_modules/react-native-i18n/android/src/main/AndroidManifest.xml
-+++ b/node_modules/react-native-i18n/android/src/main/AndroidManifest.xml
-@@ -1,5 +1,5 @@
-
-
--
-+
-
diff --git a/scripts/build.sh b/scripts/build.sh
index 4ec8a341fd2f..a4ec79f83758 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -226,7 +226,7 @@ buildAndroidRun(){
remapEnvVariableLocal
prebuild_android
#react-native run-android --port=$WATCHER_PORT --mode=prodDebug --active-arch-only
- npx expo run:android --no-install --port $WATCHER_PORT --mode 'prodDebug' --device
+ npx expo run:android --no-install --port $WATCHER_PORT --variant 'prodDebug' --device
}
buildAndroidDevBuild(){
diff --git a/yarn.lock b/yarn.lock
index f4476426c1d7..56459fad8c8c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7,6 +7,11 @@
resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.11.tgz#035cbc6523af43358b81993f10b13e8d7a79c816"
integrity sha512-xuSJ9WXwTmtngWkbdEoopMo6F8NLtjy84UNAMsAr5C3/2SgAL/dEU10TMqTIsipqPQ8HA/7WzeqQ9DEQxSvPPA==
+"@0no-co/graphql.web@^1.0.8":
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.13.tgz#978f4d3a869240f2d487fa1c1009028b34bc33b5"
+ integrity sha512-jqYxOevheVTU1S36ZdzAkJIdvRp2m3OYIG5SEoKDw5NI8eVwkoI0D/Q3DYNGmXCxkA6CQuoa7zvMiDPTLqUNuw==
+
"@ampproject/remapping@^2.2.0":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
@@ -470,6 +475,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46"
integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==
+"@babel/helper-plugin-utils@^7.26.5":
+ version "7.26.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz#18580d00c9934117ad719392c4f6585c9333cc35"
+ integrity sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==
+
"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92"
@@ -875,7 +885,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.25.9":
+"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.0.0-0", "@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845"
integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==
@@ -914,7 +924,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-class-properties@^7.25.4", "@babel/plugin-transform-class-properties@^7.25.9":
+"@babel/plugin-transform-class-properties@^7.0.0-0", "@babel/plugin-transform-class-properties@^7.25.4", "@babel/plugin-transform-class-properties@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz#a8ce84fedb9ad512549984101fa84080a9f5f51f"
integrity sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==
@@ -930,7 +940,7 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.25.4", "@babel/plugin-transform-classes@^7.25.9":
+"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.0.0-0", "@babel/plugin-transform-classes@^7.25.4", "@babel/plugin-transform-classes@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52"
integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==
@@ -1121,6 +1131,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
+"@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0":
+ version "7.26.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.5.tgz#b0e8943a8a4689c55e91eac573b1fe6bc105026a"
+ integrity sha512-OHqczNm4NTQlW1ghrVY43FPoiRzbmzNVbcgVnMKZN/RQYezHUSdjACjaX50CD3B7UIAjv39+MlsrVDb3v741FA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.26.5"
+
"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz#bcb1b0d9e948168102d5f7104375ca21c3266949"
@@ -1135,13 +1152,6 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-object-assign@^7.16.7":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.24.1.tgz#46a70169e56970aafd13a6ae677d5b497fc227e7"
- integrity sha512-I1kctor9iKtupb7jv7FyjApHCuKLBKCblVAeHVK9PB6FW7GI0ac6RtobC3MwwJy8CZ1JxuhQmnbrsqI5G8hAIg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.0"
-
"@babel/plugin-transform-object-rest-spread@^7.12.13", "@babel/plugin-transform-object-rest-spread@^7.24.7", "@babel/plugin-transform-object-rest-spread@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18"
@@ -1166,7 +1176,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.25.9":
+"@babel/plugin-transform-optional-chaining@^7.0.0-0", "@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd"
integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==
@@ -1181,7 +1191,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-private-methods@^7.22.5", "@babel/plugin-transform-private-methods@^7.24.7", "@babel/plugin-transform-private-methods@^7.25.9":
+"@babel/plugin-transform-private-methods@^7.24.7", "@babel/plugin-transform-private-methods@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz#847f4139263577526455d7d3223cd8bda51e3b57"
integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==
@@ -1189,7 +1199,7 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-private-property-in-object@^7.22.11", "@babel/plugin-transform-private-property-in-object@^7.24.7", "@babel/plugin-transform-private-property-in-object@^7.25.9":
+"@babel/plugin-transform-private-property-in-object@^7.24.7", "@babel/plugin-transform-private-property-in-object@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz#9c8b73e64e6cc3cbb2743633885a7dd2c385fe33"
integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==
@@ -1320,7 +1330,7 @@
babel-plugin-polyfill-regenerator "^0.6.1"
semver "^6.3.1"
-"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.25.9":
+"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.0.0-0", "@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2"
integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==
@@ -1342,7 +1352,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.25.9":
+"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.0.0-0", "@babel/plugin-transform-template-literals@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1"
integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==
@@ -1377,6 +1387,17 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
"@babel/plugin-syntax-typescript" "^7.25.9"
+"@babel/plugin-transform-typescript@^7.25.9":
+ version "7.26.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.5.tgz#6d9b48e8ee40a45a3ed12ebc013449fdf261714c"
+ integrity sha512-GJhPO0y8SD5EYVCy2Zr+9dSZcEgaSmq5BLR0Oc25TOEhC+ba49vUAGZFjy8v79z9E1mdldq4x9d1xgh4L1d5dQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.25.9"
+ "@babel/helper-create-class-features-plugin" "^7.25.9"
+ "@babel/helper-plugin-utils" "^7.26.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
+ "@babel/plugin-syntax-typescript" "^7.25.9"
+
"@babel/plugin-transform-unicode-escapes@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz#a75ef3947ce15363fccaa38e2dd9bc70b2788b82"
@@ -1392,7 +1413,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.25.9":
+"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.0.0-0", "@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1"
integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==
@@ -1408,7 +1429,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/preset-env@^7.20.0", "@babel/preset-env@^7.25.3":
+"@babel/preset-env@^7.25.3":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.26.0.tgz#30e5c6bc1bcc54865bff0c5a30f6d4ccdc7fa8b1"
integrity sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==
@@ -1524,6 +1545,17 @@
"@babel/plugin-transform-modules-commonjs" "^7.24.1"
"@babel/plugin-transform-typescript" "^7.24.1"
+"@babel/preset-typescript@^7.23.0":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz#4a570f1b8d104a242d923957ffa1eaff142a106d"
+ integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.25.9"
+ "@babel/helper-validator-option" "^7.25.9"
+ "@babel/plugin-syntax-jsx" "^7.25.9"
+ "@babel/plugin-transform-modules-commonjs" "^7.25.9"
+ "@babel/plugin-transform-typescript" "^7.25.9"
+
"@babel/register@^7.13.16", "@babel/register@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.24.6.tgz#59e21dcc79e1d04eed5377633b0f88029a6bef9e"
@@ -2575,66 +2607,61 @@
dependencies:
uuid "^8.0.0"
-"@expo/cli@0.17.13":
- version "0.17.13"
- resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.17.13.tgz#ab6acbd1b15a25a0fcc86a6c4f4ed7e60cfda457"
- integrity sha512-n13yxOmI3I0JidzMdFCH68tYKGDtK4XlDFk1vysZX7AIRKeDVRsSbHhma5jCla2bDt25RKmJBHA9KtzielwzAA==
+"@expo/cli@0.22.9":
+ version "0.22.9"
+ resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.22.9.tgz#add1465a0946ecbc8ef4d09236fa8a6e9760bcb5"
+ integrity sha512-GFW1+InbgTz0+10qWfoo5fyBU2DhhPuJkL4TUnG7GTq8lDlim88JLghJVbq0uAX/xDLcd326QnI0XONsUGSWrw==
dependencies:
+ "@0no-co/graphql.web" "^1.0.8"
"@babel/runtime" "^7.20.0"
- "@expo/code-signing-certificates" "0.0.5"
- "@expo/config" "~8.5.0"
- "@expo/config-plugins" "~7.9.0"
- "@expo/devcert" "^1.0.0"
- "@expo/env" "~0.2.2"
- "@expo/image-utils" "^0.4.0"
- "@expo/json-file" "^8.2.37"
- "@expo/metro-config" "0.17.8"
- "@expo/osascript" "^2.0.31"
- "@expo/package-manager" "^1.1.1"
- "@expo/plist" "^0.1.0"
- "@expo/prebuild-config" "6.8.1"
- "@expo/rudder-sdk-node" "1.1.1"
- "@expo/spawn-async" "1.5.0"
+ "@expo/code-signing-certificates" "^0.0.5"
+ "@expo/config" "~10.0.8"
+ "@expo/config-plugins" "~9.0.14"
+ "@expo/devcert" "^1.1.2"
+ "@expo/env" "~0.4.1"
+ "@expo/image-utils" "^0.6.4"
+ "@expo/json-file" "^9.0.1"
+ "@expo/metro-config" "~0.19.9"
+ "@expo/osascript" "^2.1.5"
+ "@expo/package-manager" "^1.7.1"
+ "@expo/plist" "^0.2.1"
+ "@expo/prebuild-config" "^8.0.25"
+ "@expo/rudder-sdk-node" "^1.1.1"
+ "@expo/spawn-async" "^1.7.2"
"@expo/xcpretty" "^4.3.0"
- "@react-native/dev-middleware" "^0.73.6"
- "@urql/core" "2.3.6"
- "@urql/exchange-retry" "0.3.0"
+ "@react-native/dev-middleware" "0.76.6"
+ "@urql/core" "^5.0.6"
+ "@urql/exchange-retry" "^1.3.0"
accepts "^1.3.8"
- arg "5.0.2"
+ arg "^5.0.2"
better-opn "~3.0.2"
+ bplist-creator "0.0.7"
bplist-parser "^0.3.1"
- cacache "^15.3.0"
+ cacache "^18.0.2"
chalk "^4.0.0"
ci-info "^3.3.0"
+ compression "^1.7.4"
connect "^3.7.0"
debug "^4.3.4"
env-editor "^0.4.1"
- find-yarn-workspace-root "~2.0.0"
+ fast-glob "^3.3.2"
form-data "^3.0.1"
- freeport-async "2.0.0"
+ freeport-async "^2.0.0"
fs-extra "~8.1.0"
getenv "^1.0.0"
- glob "^7.1.7"
- graphql "15.8.0"
- graphql-tag "^2.10.1"
- https-proxy-agent "^5.0.1"
- internal-ip "4.3.0"
+ glob "^10.4.2"
+ internal-ip "^4.3.0"
is-docker "^2.0.0"
is-wsl "^2.1.1"
- js-yaml "^3.13.1"
- json-schema-deref-sync "^0.13.0"
lodash.debounce "^4.0.8"
- md5hex "^1.0.0"
minimatch "^3.0.4"
- minipass "3.3.6"
- node-fetch "^2.6.7"
node-forge "^1.3.1"
- npm-package-arg "^7.0.0"
- open "^8.3.0"
- ora "3.4.0"
+ npm-package-arg "^11.0.0"
+ ora "^3.4.0"
picomatch "^3.0.1"
- pretty-bytes "5.6.0"
- progress "2.0.3"
+ pretty-bytes "^5.6.0"
+ pretty-format "^29.7.0"
+ progress "^2.0.3"
prompts "^2.3.2"
qrcode-terminal "0.11.0"
require-from-string "^2.0.2"
@@ -2642,22 +2669,22 @@
resolve "^1.22.2"
resolve-from "^5.0.0"
resolve.exports "^2.0.2"
- semver "^7.5.3"
- send "^0.18.0"
+ semver "^7.6.0"
+ send "^0.19.0"
slugify "^1.3.4"
source-map-support "~0.5.21"
stacktrace-parser "^0.1.10"
structured-headers "^0.4.1"
- tar "^6.0.5"
+ tar "^6.2.1"
temp-dir "^2.0.0"
tempy "^0.7.1"
terminal-link "^2.1.1"
- text-table "^0.2.0"
- url-join "4.0.0"
+ undici "^6.18.2"
+ unique-string "~2.0.0"
wrap-ansi "^7.0.0"
ws "^8.12.1"
-"@expo/code-signing-certificates@0.0.5":
+"@expo/code-signing-certificates@^0.0.5":
version "0.0.5"
resolved "https://registry.yarnpkg.com/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz#a693ff684fb20c4725dade4b88a6a9f96b02496c"
integrity sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==
@@ -2665,15 +2692,14 @@
node-forge "^1.2.1"
nullthrows "^1.1.1"
-"@expo/config-plugins@7.9.2", "@expo/config-plugins@~7.9.0":
- version "7.9.2"
- resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-7.9.2.tgz#fc18e84761067ce670742d735b888613c06fbea8"
- integrity sha512-sRU/OAp7kJxrCUiCTUZqvPMKPdiN1oTmNfnbkG4oPdfWQTpid3jyCH7ZxJEN5SI6jrY/ZsK5B/JPgjDUhuWLBQ==
+"@expo/config-plugins@^7.2.5":
+ version "7.2.5"
+ resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-7.2.5.tgz#b15f22878975fdc4ddcfa8cdc971937ddc4c0249"
+ integrity sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==
dependencies:
- "@expo/config-types" "^50.0.0-alpha.1"
- "@expo/fingerprint" "^0.6.0"
- "@expo/json-file" "~8.3.0"
- "@expo/plist" "^0.1.0"
+ "@expo/config-types" "^49.0.0-alpha.1"
+ "@expo/json-file" "~8.2.37"
+ "@expo/plist" "^0.0.20"
"@expo/sdk-runtime-versions" "^1.0.0"
"@react-native/normalize-color" "^2.0.0"
chalk "^4.1.2"
@@ -2684,28 +2710,26 @@
resolve-from "^5.0.0"
semver "^7.5.3"
slash "^3.0.0"
- slugify "^1.6.6"
xcode "^3.0.1"
xml2js "0.6.0"
-"@expo/config-plugins@^7.2.5":
- version "7.2.5"
- resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-7.2.5.tgz#b15f22878975fdc4ddcfa8cdc971937ddc4c0249"
- integrity sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==
+"@expo/config-plugins@~9.0.14":
+ version "9.0.14"
+ resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-9.0.14.tgz#c57cc86c238b276823ff66d96e4722366d57b12c"
+ integrity sha512-Lx1ebV95rTFKKQmbu4wMPLz65rKn7mqSpfANdCx+KwRxuLY2JQls8V4h3lQjG6dW8NWf9qV5QaEFAgNB6VMyOQ==
dependencies:
- "@expo/config-types" "^49.0.0-alpha.1"
- "@expo/json-file" "~8.2.37"
- "@expo/plist" "^0.0.20"
+ "@expo/config-types" "^52.0.3"
+ "@expo/json-file" "~9.0.1"
+ "@expo/plist" "^0.2.1"
"@expo/sdk-runtime-versions" "^1.0.0"
- "@react-native/normalize-color" "^2.0.0"
chalk "^4.1.2"
- debug "^4.3.1"
- find-up "~5.0.0"
+ debug "^4.3.5"
getenv "^1.0.0"
- glob "7.1.6"
+ glob "^10.4.2"
resolve-from "^5.0.0"
- semver "^7.5.3"
+ semver "^7.5.4"
slash "^3.0.0"
+ slugify "^1.6.6"
xcode "^3.0.1"
xml2js "0.6.0"
@@ -2714,29 +2738,31 @@
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-49.0.0.tgz#15ffef715285c06703f6fb7ec0cda853f645cc09"
integrity sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==
-"@expo/config-types@^50.0.0", "@expo/config-types@^50.0.0-alpha.1":
- version "50.0.1"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-50.0.1.tgz#12d889214dedf64fbf2322c9d9e75c9d5ca7f695"
- integrity sha512-EZHMgzkWRB9SMHO1e9m8s+OMahf92XYTnsCFjxhSfcDrcEoSdFPyJWDJVloHZPMGhxns7Fi2+A+bEVN/hD4NKA==
+"@expo/config-types@^52.0.3":
+ version "52.0.3"
+ resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-52.0.3.tgz#511f2f868172c93abeac7183beeb921dc72d6e1e"
+ integrity sha512-muxvuARmbysH5OGaiBRlh1Y6vfdmL56JtpXxB+y2Hfhu0ezG1U4FjZYBIacthckZPvnDCcP3xIu1R+eTo7/QFA==
-"@expo/config@8.5.6", "@expo/config@~8.5.0":
- version "8.5.6"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-8.5.6.tgz#e37ba437a1718ed4629e1dd130a7aace25312b89"
- integrity sha512-wF5awSg6MNn1cb1lIgjnhOn5ov2TEUTnkAVCsOl0QqDwcP+YIerteSFwjn9V52UZvg58L+LKxpCuGbw5IHavbg==
+"@expo/config@~10.0.8":
+ version "10.0.8"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-10.0.8.tgz#c94cf98328d2ec38c9da80ec68d252539cd6eb2d"
+ integrity sha512-RaKwi8e6PbkMilRexdsxObLMdQwxhY6mlgel+l/eW+IfIw8HEydSU0ERlzYUjlGJxHLHUXe4rC2vw8FEvaowyQ==
dependencies:
"@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~7.9.0"
- "@expo/config-types" "^50.0.0"
- "@expo/json-file" "^8.2.37"
+ "@expo/config-plugins" "~9.0.14"
+ "@expo/config-types" "^52.0.3"
+ "@expo/json-file" "^9.0.1"
+ deepmerge "^4.3.1"
getenv "^1.0.0"
- glob "7.1.6"
+ glob "^10.4.2"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
- semver "7.5.3"
+ resolve-workspace-root "^2.0.0"
+ semver "^7.6.0"
slugify "^1.3.4"
- sucrase "3.34.0"
+ sucrase "3.35.0"
-"@expo/devcert@^1.0.0":
+"@expo/devcert@^1.1.2":
version "1.1.4"
resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.1.4.tgz#d98807802a541847cc42791a606bfdc26e641277"
integrity sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==
@@ -2754,10 +2780,10 @@
tmp "^0.0.33"
tslib "^2.4.0"
-"@expo/env@~0.2.2":
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.2.3.tgz#59ffe29ffe58f8ee9ee99581a6cb6e003831d469"
- integrity sha512-a+uJ/e6MAVxPVVN/HbXU5qxzdqrqDwNQYxCfxtAufgmd5VZj54e5f3TJA3LEEUW3pTSZR8xK0H0EtVN297AZnw==
+"@expo/env@~0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.4.1.tgz#8691f6c7df08e66af767ff607e1eac2010487fdc"
+ integrity sha512-oDtbO3i9yXD1nx93acWiPTWGljJ3vABn35x1NAbqtQ2JL6mFOcRcArt1dwi4imZyLnG4VCcjabT9irj+LgYntw==
dependencies:
chalk "^4.0.0"
debug "^4.3.4"
@@ -2765,48 +2791,42 @@
dotenv-expand "~11.0.6"
getenv "^1.0.0"
-"@expo/fingerprint@^0.6.0":
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.6.1.tgz#763ae79b06f60e10853596bfa2bd730bfb13f2b0"
- integrity sha512-ggLn6unI6qowlA1FihdQwPpLn16VJulYkvYAEL50gaqVahfNEglRQMSH2giZzjD0d6xq2/EQuUdFyHaJfyJwOQ==
+"@expo/fingerprint@0.11.7":
+ version "0.11.7"
+ resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.11.7.tgz#cd326b48e18f979b4428e75c84a4c3a66a0cd985"
+ integrity sha512-2rfYVS4nqWmOPQk+AL5GPfPSawbqqmI5mL++bxAhWADt+d+fjoQYfIrGtjZxQ30f9o/a1PrRPVSuh2j09+diVg==
dependencies:
- "@expo/spawn-async" "^1.5.0"
+ "@expo/spawn-async" "^1.7.2"
+ arg "^5.0.2"
chalk "^4.1.2"
debug "^4.3.4"
find-up "^5.0.0"
+ getenv "^1.0.0"
minimatch "^3.0.4"
p-limit "^3.1.0"
resolve-from "^5.0.0"
+ semver "^7.6.0"
-"@expo/image-utils@^0.4.0":
- version "0.4.2"
- resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.4.2.tgz#84beabbe50d7e1c2ad78f1b44be6ec49a9dbc0da"
- integrity sha512-CxP+1QXgRXsNnmv2FAUA2RWwK6kNBFg4QEmVXn2K9iLoEAI+i+1IQXcUgc+J7nTJl9pO7FIu2gIiEYGYffjLWQ==
+"@expo/image-utils@^0.6.4":
+ version "0.6.4"
+ resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.6.4.tgz#fc0c18de576c2bb0328d0ff9d067c5ba68c83d28"
+ integrity sha512-L++1PBzSvf5iYc6UHJ8Db8GcYNkfLDw+a+zqEFBQ3xqRXP/muxb/O7wuiMFlXrj/cfkx4e0U+z1a4ceV0A7S7Q==
dependencies:
- "@expo/spawn-async" "1.5.0"
+ "@expo/spawn-async" "^1.7.2"
chalk "^4.0.0"
fs-extra "9.0.0"
getenv "^1.0.0"
jimp-compact "0.16.1"
- node-fetch "^2.6.0"
parse-png "^2.1.0"
resolve-from "^5.0.0"
- semver "7.3.2"
- tempy "0.3.0"
-
-"@expo/json-file@^8.2.37", "@expo/json-file@~8.3.0":
- version "8.3.3"
- resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.3.3.tgz#7926e3592f76030ce63d6b1308ac8f5d4d9341f4"
- integrity sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==
- dependencies:
- "@babel/code-frame" "~7.10.4"
- json5 "^2.2.2"
- write-file-atomic "^2.3.0"
+ semver "^7.6.0"
+ temp-dir "~2.0.0"
+ unique-string "~2.0.0"
-"@expo/json-file@^9.0.0":
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.0.0.tgz#e3688c9b108cfd7e819f1354a9458ba6e93fc943"
- integrity sha512-M+55xFVrFzDcgMDf+52lPDLjKB5xwRfStWlv/b/Vu2OLgxGZLWpxoPYjlRoHqxjPbCQIi2ZCbobK+0KuNhsELg==
+"@expo/json-file@^9.0.1", "@expo/json-file@~9.0.1":
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.0.1.tgz#ff60654caf1fa3c33f9b17dcd1e9691eb854a318"
+ integrity sha512-ZVPhbbEBEwafPCJ0+kI25O2Iivt3XKHEKAADCml1q2cmOIbQnKgLyn8DpOJXqWEyRQr/VWS+hflBh8DU2YFSqg==
dependencies:
"@babel/code-frame" "~7.10.4"
json5 "^2.2.3"
@@ -2821,46 +2841,44 @@
json5 "^2.2.2"
write-file-atomic "^2.3.0"
-"@expo/metro-config@0.17.8":
- version "0.17.8"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.17.8.tgz#8a5b46af0bef3397eac17607fc249670fdbbab9a"
- integrity sha512-XNjI5Q5bW3k2ieNtQBSX9BnIysRxG4UyNsaWcysv3AzY+rahay6fAp5xzJey8xBOlzs9u7H4AdMoeJsUje3lcQ==
+"@expo/metro-config@0.19.9", "@expo/metro-config@~0.19.9":
+ version "0.19.9"
+ resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.19.9.tgz#f020a2523cecf90e4f2a833386a88e07f6d004f8"
+ integrity sha512-JAsLWhFQqwLH0KsI4OMbPXsKFji5KJEmsi+/02Sz1GCT17YrjRmv1fZ91regUS/FUH2Y/PDAE/+2ulrTgMeG7A==
dependencies:
"@babel/core" "^7.20.0"
"@babel/generator" "^7.20.5"
"@babel/parser" "^7.20.0"
"@babel/types" "^7.20.0"
- "@expo/config" "~8.5.0"
- "@expo/env" "~0.2.2"
- "@expo/json-file" "~8.3.0"
+ "@expo/config" "~10.0.8"
+ "@expo/env" "~0.4.1"
+ "@expo/json-file" "~9.0.1"
"@expo/spawn-async" "^1.7.2"
- babel-preset-fbjs "^3.4.0"
chalk "^4.1.0"
debug "^4.3.2"
- find-yarn-workspace-root "~2.0.0"
fs-extra "^9.1.0"
getenv "^1.0.0"
- glob "^7.2.3"
+ glob "^10.4.2"
jsc-safe-url "^0.2.4"
- lightningcss "~1.19.0"
+ lightningcss "~1.27.0"
+ minimatch "^3.0.4"
postcss "~8.4.32"
resolve-from "^5.0.0"
- sucrase "3.34.0"
-"@expo/osascript@^2.0.31":
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.1.3.tgz#912b74825cb83f3b958cad81034df9e19f1f2808"
- integrity sha512-aOEkhPzDsaAfolSswObGiYW0Pf0ROfR9J2NBRLQACdQ6uJlyAMiPF45DVEVknAU9juKh0y8ZyvC9LXqLEJYohA==
+"@expo/osascript@^2.1.5":
+ version "2.1.5"
+ resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.1.5.tgz#655c3913e592efbb5db41273b76920911c60809e"
+ integrity sha512-Cp7YF7msGiTAIbFdzNovwHBfecdMLVL5XzSqq4xQz72ALFCQ3uSIUXRph1QV2r61ugH7Yem0gY8yi7RcDlI4qg==
dependencies:
"@expo/spawn-async" "^1.7.2"
exec-async "^2.2.0"
-"@expo/package-manager@^1.1.1":
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.6.1.tgz#ab845238dec10bb48bca2b90e060dfe8c1525602"
- integrity sha512-4rT46wP/94Ll+CWXtFKok1Lbo9XncSUtErFOo/9/3FVughGbIfdG4SKZOAWIpr9wxwEfkyhHfAP9q71ONlWODw==
+"@expo/package-manager@^1.7.1":
+ version "1.7.1"
+ resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.7.1.tgz#13eb686bc949a395d992fb2575f8a1930a6aebf3"
+ integrity sha512-DKbELrTOdl7U3KT0C07Aka9P+sUP3LL+1UTKf1KmLx2x2gPH1IC+c68N7iQlwNt+yA37qIw6/vKoqyTGu5EL9g==
dependencies:
- "@expo/json-file" "^9.0.0"
+ "@expo/json-file" "^9.0.1"
"@expo/spawn-async" "^1.7.2"
ansi-regex "^5.0.0"
chalk "^4.0.0"
@@ -2882,32 +2900,33 @@
base64-js "^1.2.3"
xmlbuilder "^14.0.0"
-"@expo/plist@^0.1.0":
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.1.3.tgz#b4fbee2c4f7a88512a4853d85319f4d95713c529"
- integrity sha512-GW/7hVlAylYg1tUrEASclw1MMk9FP4ZwyFAY/SUTJIhPDQHtfOlXREyWV3hhrHdX/K+pS73GNgdfT6E/e+kBbg==
+"@expo/plist@^0.2.1":
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.2.1.tgz#a315e1964ee9eece5c56040d460db5de7af85889"
+ integrity sha512-9TaXGuNxa0LQwHQn4rYiU6YaERv6dPnQgsdKWq2rKKTr6LWOtGNQCi/yOk/HBLeZSxBm59APT5/6x60uRvr0Mg==
dependencies:
"@xmldom/xmldom" "~0.7.7"
base64-js "^1.2.3"
xmlbuilder "^14.0.0"
-"@expo/prebuild-config@6.8.1":
- version "6.8.1"
- resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-6.8.1.tgz#5d562b1d6b2e5e4727a3c61acf1a4ed6117b94d8"
- integrity sha512-ptK9e0dcj1eYlAWV+fG+QkuAWcLAT1AmtEbj++tn7ZjEj8+LkXRM73LCOEGaF0Er8i8ZWNnaVsgGW4vjgP5ZsA==
- dependencies:
- "@expo/config" "~8.5.0"
- "@expo/config-plugins" "~7.9.0"
- "@expo/config-types" "^50.0.0-alpha.1"
- "@expo/image-utils" "^0.4.0"
- "@expo/json-file" "^8.2.37"
+"@expo/prebuild-config@^8.0.25":
+ version "8.0.25"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-8.0.25.tgz#c802303030377e73b6c405ef3200a8c751f7631a"
+ integrity sha512-xYHV8eiydZEDedf2AGaOFRFwcGlaSzrqQH94dwX42urNCU03FO0RUb7yPp4nkb7WNFg5Ov6PDsV7ES+YwzNgYQ==
+ dependencies:
+ "@expo/config" "~10.0.8"
+ "@expo/config-plugins" "~9.0.14"
+ "@expo/config-types" "^52.0.3"
+ "@expo/image-utils" "^0.6.4"
+ "@expo/json-file" "^9.0.1"
+ "@react-native/normalize-colors" "0.76.6"
debug "^4.3.1"
fs-extra "^9.0.0"
resolve-from "^5.0.0"
- semver "7.5.3"
+ semver "^7.6.0"
xml2js "0.6.0"
-"@expo/rudder-sdk-node@1.1.1":
+"@expo/rudder-sdk-node@^1.1.1":
version "1.1.1"
resolved "https://registry.yarnpkg.com/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz#6aa575f346833eb6290282118766d4919c808c6a"
integrity sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==
@@ -2925,14 +2944,7 @@
resolved "https://registry.yarnpkg.com/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz#d7ebd21b19f1c6b0395e50d78da4416941c57f7c"
integrity sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==
-"@expo/spawn-async@1.5.0":
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/@expo/spawn-async/-/spawn-async-1.5.0.tgz#799827edd8c10ef07eb1a2ff9dcfe081d596a395"
- integrity sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==
- dependencies:
- cross-spawn "^6.0.5"
-
-"@expo/spawn-async@^1.5.0", "@expo/spawn-async@^1.7.2":
+"@expo/spawn-async@^1.7.2":
version "1.7.2"
resolved "https://registry.yarnpkg.com/@expo/spawn-async/-/spawn-async-1.7.2.tgz#fcfe66c3e387245e72154b1a7eae8cada6a47f58"
integrity sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==
@@ -3698,11 +3710,6 @@
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.1.tgz#16308cea045f0fc777b6ff20a9f25474dd8293d2"
integrity sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==
-"@gar/promisify@^1.0.1":
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
- integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
-
"@graphql-tools/merge@8.3.1":
version "8.3.1"
resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.3.1.tgz#06121942ad28982a14635dbc87b5d488a041d722"
@@ -3735,11 +3742,6 @@
dependencies:
tslib "^2.4.0"
-"@graphql-typed-document-node/core@^3.1.0":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861"
- integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
-
"@grpc/grpc-js@~1.9.0":
version "1.9.15"
resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.9.15.tgz#433d7ac19b1754af690ea650ab72190bd700739b"
@@ -5794,14 +5796,6 @@
lru-cache "^10.0.1"
socks-proxy-agent "^8.0.3"
-"@npmcli/fs@^1.0.0":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257"
- integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==
- dependencies:
- "@gar/promisify" "^1.0.1"
- semver "^7.3.5"
-
"@npmcli/fs@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e"
@@ -5823,14 +5817,6 @@
semver "^7.3.5"
which "^4.0.0"
-"@npmcli/move-file@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
- integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
- dependencies:
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
"@npmcli/node-gyp@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a"
@@ -6715,10 +6701,10 @@
dependencies:
invariant "^2.2.4"
-"@react-native-community/netinfo@11.1.0":
- version "11.1.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-11.1.0.tgz#b3b2ab741a5d935e445685ade8a53d48775e082b"
- integrity sha512-pIbCuqgrY7SkngAcjUs9fMzNh1h4soQMVw1IeGp1HN5//wox3fUVOuvyIubTscUbdLFKiltJAiuQek7Nhx1bqA==
+"@react-native-community/netinfo@11.4.1":
+ version "11.4.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-11.4.1.tgz#a3c247aceab35f75dd0aa4bfa85d2be5a4508688"
+ integrity sha512-B0BYAkghz3Q2V09BF88RA601XursIEA111tnc2JOaN7axJWmNefmfjZqw/KdSxKZp7CZUuPpjBmz/WCR9uaHYg==
"@react-native-community/slider@^4.4.3":
version "4.5.5"
@@ -6760,18 +6746,6 @@
resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.76.6.tgz#649af8a19cbabcea321dbcfb1a1ae04bb298d958"
integrity sha512-YI8HoReYiIwdFQs+k9Q9qpFTnsyYikZxgs/UVtVbhKixXDQF6F9LLvj2naOx4cfV+RGybNKxwmDl1vUok/dRFQ==
-"@react-native/assets-registry@~0.73.1":
- version "0.73.1"
- resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.73.1.tgz#e2a6b73b16c183a270f338dc69c36039b3946e85"
- integrity sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==
-
-"@react-native/babel-plugin-codegen@0.73.4":
- version "0.73.4"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.4.tgz#8a2037d5585b41877611498ae66adbf1dddfec1b"
- integrity sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==
- dependencies:
- "@react-native/codegen" "0.73.3"
-
"@react-native/babel-plugin-codegen@0.76.5":
version "0.76.5"
resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.76.5.tgz#a7c32274351e51db9c0a7849ce8059940448c087"
@@ -6888,67 +6862,6 @@
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
-"@react-native/babel-preset@^0.73.18":
- version "0.73.21"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.73.21.tgz#174c16493fa4e311b2f5f0c58d4f3c6a5a68bbea"
- integrity sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==
- dependencies:
- "@babel/core" "^7.20.0"
- "@babel/plugin-proposal-async-generator-functions" "^7.0.0"
- "@babel/plugin-proposal-class-properties" "^7.18.0"
- "@babel/plugin-proposal-export-default-from" "^7.0.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0"
- "@babel/plugin-proposal-numeric-separator" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.20.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.20.0"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
- "@babel/plugin-syntax-export-default-from" "^7.0.0"
- "@babel/plugin-syntax-flow" "^7.18.0"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-syntax-optional-chaining" "^7.0.0"
- "@babel/plugin-transform-arrow-functions" "^7.0.0"
- "@babel/plugin-transform-async-to-generator" "^7.20.0"
- "@babel/plugin-transform-block-scoping" "^7.0.0"
- "@babel/plugin-transform-classes" "^7.0.0"
- "@babel/plugin-transform-computed-properties" "^7.0.0"
- "@babel/plugin-transform-destructuring" "^7.20.0"
- "@babel/plugin-transform-flow-strip-types" "^7.20.0"
- "@babel/plugin-transform-function-name" "^7.0.0"
- "@babel/plugin-transform-literals" "^7.0.0"
- "@babel/plugin-transform-modules-commonjs" "^7.0.0"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0"
- "@babel/plugin-transform-parameters" "^7.0.0"
- "@babel/plugin-transform-private-methods" "^7.22.5"
- "@babel/plugin-transform-private-property-in-object" "^7.22.11"
- "@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.0.0"
- "@babel/plugin-transform-react-jsx-self" "^7.0.0"
- "@babel/plugin-transform-react-jsx-source" "^7.0.0"
- "@babel/plugin-transform-runtime" "^7.0.0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0"
- "@babel/plugin-transform-spread" "^7.0.0"
- "@babel/plugin-transform-sticky-regex" "^7.0.0"
- "@babel/plugin-transform-typescript" "^7.5.0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0"
- "@babel/template" "^7.0.0"
- "@react-native/babel-plugin-codegen" "0.73.4"
- babel-plugin-transform-flow-enums "^0.0.2"
- react-refresh "^0.14.0"
-
-"@react-native/codegen@0.73.3":
- version "0.73.3"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.73.3.tgz#cc984a8b17334d986cc600254a0d4b7fa7d68a94"
- integrity sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==
- dependencies:
- "@babel/parser" "^7.20.0"
- flow-parser "^0.206.0"
- glob "^7.1.1"
- invariant "^2.2.4"
- jscodeshift "^0.14.0"
- mkdirp "^0.5.1"
- nullthrows "^1.1.1"
-
"@react-native/codegen@0.76.5":
version "0.76.5"
resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.76.5.tgz#4d89ec14a023d6946dbc44537c39b03bd006db7b"
@@ -6994,11 +6907,6 @@
readline "^1.3.0"
semver "^7.1.3"
-"@react-native/debugger-frontend@0.73.3":
- version "0.73.3"
- resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz#033757614d2ada994c68a1deae78c1dd2ad33c2b"
- integrity sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==
-
"@react-native/debugger-frontend@0.76.6":
version "0.76.6"
resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.76.6.tgz#e8eae252f9a3d4b2a811748cf2a504242de2ce0f"
@@ -7021,23 +6929,6 @@
serve-static "^1.13.1"
ws "^6.2.3"
-"@react-native/dev-middleware@^0.73.6":
- version "0.73.8"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.73.8.tgz#2e43722a00c7b8db753f747f40267cbad6caba4d"
- integrity sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==
- dependencies:
- "@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "0.73.3"
- chrome-launcher "^0.15.2"
- chromium-edge-launcher "^1.0.0"
- connect "^3.6.5"
- debug "^2.2.0"
- node-fetch "^2.2.0"
- open "^7.0.3"
- serve-static "^1.13.1"
- temp-dir "^2.0.0"
- ws "^6.2.2"
-
"@react-native/eslint-config@^0.76.6":
version "0.76.6"
resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.76.6.tgz#96b8fb555ef95ecc1dfe0d020de3d91df0736349"
@@ -10485,10 +10376,10 @@
"@types/scheduler" "*"
csstype "^3.0.2"
-"@types/react@~18.2.45":
- version "18.2.79"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.79.tgz#c40efb4f255711f554d47b449f796d1c7756d865"
- integrity sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==
+"@types/react@~18.3.12":
+ version "18.3.18"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.18.tgz#9b382c4cd32e13e463f97df07c2ee3bbcd26904b"
+ integrity sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==
dependencies:
"@types/prop-types" "*"
csstype "^3.0.2"
@@ -10912,29 +10803,21 @@
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
-"@urql/core@2.3.6":
- version "2.3.6"
- resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.3.6.tgz#ee0a6f8fde02251e9560c5f17dce5cd90f948552"
- integrity sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==
- dependencies:
- "@graphql-typed-document-node/core" "^3.1.0"
- wonka "^4.0.14"
-
-"@urql/core@>=2.3.1":
- version "5.0.8"
- resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.0.8.tgz#eba39eaa2bf9a0a963383e87a65cba7a9ca794bd"
- integrity sha512-1GOnUw7/a9bzkcM0+U8U5MmxW2A7FE5YquuEmcJzTtW5tIs2EoS4F2ITpuKBjRBbyRjZgO860nWFPo1m4JImGA==
+"@urql/core@^5.0.0", "@urql/core@^5.0.6":
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.1.0.tgz#7f4b81f1aba1ca34ae6354763abeb87ff9af84ff"
+ integrity sha512-yC3sw8yqjbX45GbXxfiBY8GLYCiyW/hLBbQF9l3TJrv4ro00Y0ChkKaD9I2KntRxAVm9IYBqh0awX8fwWAe/Yw==
dependencies:
"@0no-co/graphql.web" "^1.0.5"
wonka "^6.3.2"
-"@urql/exchange-retry@0.3.0":
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz#13252108b5a111aab45f9982f4db18d1a286e423"
- integrity sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==
+"@urql/exchange-retry@^1.3.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@urql/exchange-retry/-/exchange-retry-1.3.0.tgz#c46abdf74aee612645ff47562e6c6868ad1731dd"
+ integrity sha512-FLt+d81gP4oiHah4hWFDApimc+/xABWMU1AMYsZ1PVB0L0YPtrMCjbOp9WMM7hBzy4gbTDrG24sio0dCfSh/HQ==
dependencies:
- "@urql/core" ">=2.3.1"
- wonka "^4.0.14"
+ "@urql/core" "^5.0.0"
+ wonka "^6.3.2"
"@vercel/stega@^0.1.2":
version "0.1.2"
@@ -12393,16 +12276,16 @@ are-we-there-yet@^4.0.0:
delegates "^1.0.0"
readable-stream "^4.1.0"
-arg@5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
- integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
-
arg@^4.1.0:
version "4.1.3"
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
+arg@^5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
+ integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
+
argparse@2.0.1, argparse@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
@@ -12941,10 +12824,10 @@ babel-plugin-polyfill-regenerator@^0.6.1:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.6.2"
-babel-plugin-react-native-web@~0.18.10:
- version "0.18.12"
- resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.12.tgz#3e9764484492ea612a16b40135b07c2d05b7969d"
- integrity sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==
+babel-plugin-react-native-web@~0.19.13:
+ version "0.19.13"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz#bf919bd6f18c4689dd1a528a82bda507363b953d"
+ integrity sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==
babel-plugin-syntax-hermes-parser@^0.23.1:
version "0.23.1"
@@ -13005,20 +12888,20 @@ babel-preset-current-node-syntax@^1.0.0:
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-top-level-await" "^7.8.3"
-babel-preset-expo@~10.0.2:
- version "10.0.2"
- resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-10.0.2.tgz#5aae992b8c85dce6cf98334c9991d3052c567950"
- integrity sha512-hg06qdSTK7MjKmFXSiq6cFoIbI3n3uT8a3NI2EZoISWhu+tedCj4DQduwi+3adFuRuYvAwECI0IYn/5iGh5zWQ==
+babel-preset-expo@~12.0.6:
+ version "12.0.6"
+ resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-12.0.6.tgz#2f39fe421d5ba9a0ce74dcd918a458c62c6601da"
+ integrity sha512-az3H7gDVo0wxNBAFES8h5vLLWE8NPGkD9g5P962hDEOqZUdyPacb9MOzicypeLmcq9zQWr6E3iVtEHoNagCTTQ==
dependencies:
"@babel/plugin-proposal-decorators" "^7.12.9"
"@babel/plugin-transform-export-namespace-from" "^7.22.11"
"@babel/plugin-transform-object-rest-spread" "^7.12.13"
"@babel/plugin-transform-parameters" "^7.22.15"
- "@babel/preset-env" "^7.20.0"
"@babel/preset-react" "^7.22.15"
- "@react-native/babel-preset" "^0.73.18"
- babel-plugin-react-native-web "~0.18.10"
- react-refresh "0.14.0"
+ "@babel/preset-typescript" "^7.23.0"
+ "@react-native/babel-preset" "0.76.6"
+ babel-plugin-react-native-web "~0.19.13"
+ react-refresh "^0.14.2"
babel-preset-fbjs@^3.2.0, babel-preset-fbjs@^3.4.0:
version "3.4.0"
@@ -13246,11 +13129,6 @@ bluebird@3.7.2, bluebird@^3.4.7, bluebird@^3.5.0, bluebird@^3.5.1, bluebird@^3.5
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
-blueimp-md5@^2.10.0:
- version "2.19.0"
- resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0"
- integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==
-
bn.js@4.11.6:
version "4.11.6"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
@@ -13294,6 +13172,13 @@ boolbase@^1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+bplist-creator@0.0.7:
+ version "0.0.7"
+ resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45"
+ integrity sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==
+ dependencies:
+ stream-buffers "~2.2.0"
+
bplist-creator@0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e"
@@ -13565,11 +13450,6 @@ builtin-modules@^3.3.0:
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
-builtins@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
- integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==
-
builtins@^5.0.0, builtins@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9"
@@ -13639,30 +13519,6 @@ cac@^3.0.3:
suffix "^0.1.0"
text-table "^0.2.0"
-cacache@^15.3.0:
- version "15.3.0"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
- integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
- dependencies:
- "@npmcli/fs" "^1.0.0"
- "@npmcli/move-file" "^1.0.1"
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- glob "^7.1.4"
- infer-owner "^1.0.4"
- lru-cache "^6.0.0"
- minipass "^3.1.1"
- minipass-collect "^1.0.2"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.2"
- mkdirp "^1.0.3"
- p-map "^4.0.0"
- promise-inflight "^1.0.1"
- rimraf "^3.0.2"
- ssri "^8.0.1"
- tar "^6.0.2"
- unique-filename "^1.1.1"
-
cacache@^18.0.0:
version "18.0.3"
resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.3.tgz#864e2c18414e1e141ae8763f31e46c2cb96d1b21"
@@ -13681,6 +13537,24 @@ cacache@^18.0.0:
tar "^6.1.11"
unique-filename "^3.0.0"
+cacache@^18.0.2:
+ version "18.0.4"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.4.tgz#4601d7578dadb59c66044e157d02a3314682d6a5"
+ integrity sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==
+ dependencies:
+ "@npmcli/fs" "^3.1.0"
+ fs-minipass "^3.0.0"
+ glob "^10.2.2"
+ lru-cache "^10.0.1"
+ minipass "^7.0.3"
+ minipass-collect "^2.0.1"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.4"
+ p-map "^4.0.0"
+ ssri "^10.0.0"
+ tar "^6.1.11"
+ unique-filename "^3.0.0"
+
cache-content-type@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c"
@@ -13905,7 +13779,7 @@ chardet@^0.7.0:
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
-charenc@0.0.2, charenc@~0.0.1:
+charenc@0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==
@@ -14019,18 +13893,6 @@ chromium-edge-launcher@^0.2.0:
mkdirp "^1.0.4"
rimraf "^3.0.2"
-chromium-edge-launcher@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz#0443083074715a13c669530b35df7bfea33b1509"
- integrity sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==
- dependencies:
- "@types/node" "*"
- escape-string-regexp "^4.0.0"
- is-wsl "^2.2.0"
- lighthouse-logger "^1.0.0"
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
ci-info@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
@@ -14240,11 +14102,6 @@ clone@^1.0.2:
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
-clone@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
- integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==
-
clone@~0.1.9:
version "0.1.19"
resolved "https://registry.yarnpkg.com/clone/-/clone-0.1.19.tgz#613fb68639b26a494ac53253e15b1a6bd88ada85"
@@ -14500,7 +14357,7 @@ compress-commons@^6.0.2:
normalize-path "^3.0.0"
readable-stream "^4.0.0"
-compressible@~2.0.16:
+compressible@~2.0.16, compressible@~2.0.18:
version "2.0.18"
resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
@@ -14520,6 +14377,19 @@ compression@^1.7.1:
safe-buffer "5.1.2"
vary "~1.1.2"
+compression@^1.7.4:
+ version "1.7.5"
+ resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93"
+ integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==
+ dependencies:
+ bytes "3.1.2"
+ compressible "~2.0.18"
+ debug "2.6.9"
+ negotiator "~0.6.4"
+ on-headers "~1.0.2"
+ safe-buffer "5.2.1"
+ vary "~1.1.2"
+
concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
@@ -14915,7 +14785,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
-crypt@0.0.2, crypt@~0.0.1:
+crypt@0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==
@@ -14942,11 +14812,6 @@ crypto-js@4.2.0, crypto-js@^4.2.0:
resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.2.0.tgz#4d931639ecdfd12ff80e8186dba6af2c2e856631"
integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==
-crypto-random-string@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
- integrity sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==
-
crypto-random-string@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
@@ -15174,11 +15039,6 @@ d@1, d@^1.0.1:
es5-ext "^0.10.50"
type "^1.0.1"
-dag-map@~1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/dag-map/-/dag-map-1.0.2.tgz#e8379f041000ed561fc515475c1ed2c85eece8d7"
- integrity sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==
-
dashdash@^1.12.0:
version "1.14.1"
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
@@ -15382,7 +15242,7 @@ deep-object-diff@^1.1.0:
resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==
-deepmerge@^4.0.0, deepmerge@^4.2.2, deepmerge@^4.3.0:
+deepmerge@^4.0.0, deepmerge@^4.2.2, deepmerge@^4.3.0, deepmerge@^4.3.1:
version "4.3.1"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
@@ -17371,26 +17231,16 @@ expect@^29.0.0, expect@^29.7.0:
jest-message-util "^29.7.0"
jest-util "^29.7.0"
-expo-asset@~9.0.2:
- version "9.0.2"
- resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-9.0.2.tgz#e8a6b6da356d5fc97955599d2fa49af78c7f0bfd"
- integrity sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==
+expo-asset@~11.0.2:
+ version "11.0.2"
+ resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-11.0.2.tgz#17d956ab65079e2e205500b6a1ca92c7bb422e5c"
+ integrity sha512-We3Td5WsNsNQyXoheLnuwic6JCOt/pqXqIIyWaZ3z/PeHrA+SwoQdI18MjDhkudLK08tbIVyDSUW8IJHXa04eg==
dependencies:
- "@react-native/assets-registry" "~0.73.1"
- blueimp-md5 "^2.10.0"
- expo-constants "~15.4.0"
- expo-file-system "~16.0.0"
+ "@expo/image-utils" "^0.6.4"
+ expo-constants "~17.0.4"
invariant "^2.2.4"
md5-file "^3.2.3"
-expo-build-properties@~0.11.1:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.11.1.tgz#dc9ab9fb1ac989b97da500b3ec75139c961d8b26"
- integrity sha512-m4j4aEjFaDuBE6KWYMxDhWgLzzSmpE7uHKAwtvXyNmRK+6JKF0gjiXi0sXgI5ngNppDQpsyPFMvqG7uQpRuCuw==
- dependencies:
- ajv "^8.11.0"
- semver "^7.5.3"
-
expo-build-properties@~0.12.1:
version "0.12.5"
resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.12.5.tgz#4d6232389f00c846ba37ca5df2c0b5527c2d94ca"
@@ -17399,121 +17249,135 @@ expo-build-properties@~0.12.1:
ajv "^8.11.0"
semver "^7.6.0"
-expo-constants@~15.4.0:
- version "15.4.6"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-15.4.6.tgz#d4e9b21b70c5602457962700f2e90a75356b487b"
- integrity sha512-vizE69dww2Vl0PTWWvDmK0Jo2/J+WzdcMZlA05YEnEYofQuhKxTVsiuipf79mSOmFavt4UQYC1UnzptzKyfmiQ==
+expo-build-properties@~0.13.2:
+ version "0.13.2"
+ resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.13.2.tgz#c9cef927fc8236551d940da4fd8dc1332e2d052d"
+ integrity sha512-ML2GwBgn0Bo4yPgnSGb7h3XVxCigS/KFdid3xPC2HldEioTP3UewB/2Qa4WBsam9Fb7lAuRyVHAfRoA3swpDzg==
+ dependencies:
+ ajv "^8.11.0"
+ semver "^7.6.0"
+
+expo-constants@~17.0.4:
+ version "17.0.4"
+ resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-17.0.4.tgz#d0b653dc9a36fc0b25887c99a46d9806bdfe462d"
+ integrity sha512-5c0VlZycmDyQUCMCr3Na3cpHAsVJJ+5o6KkkD4rmATQZ0++Xp/S2gpnjWyEo2riRmO91vxoyHwmAySXuktJddQ==
dependencies:
- "@expo/config" "~8.5.0"
+ "@expo/config" "~10.0.8"
+ "@expo/env" "~0.4.1"
-expo-dev-client@~3.3.12:
- version "3.3.12"
- resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-3.3.12.tgz#b6f4995daeb19046f3f03934765ccb0b7b9d72cb"
- integrity sha512-v1CxlxPlt5SY+CVg+vn/EULAtZj7gP3GJji8UldxKTnTQHXggBLNYDIZFIbVkXHNOqtHGDjEsi36jBGqCynA8Q==
+expo-dev-client@~5.0.9:
+ version "5.0.9"
+ resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-5.0.9.tgz#258ceb69d5649e6a1588ccbed5a8bde24aeb2e7a"
+ integrity sha512-8+A5pQFx6A00XXFLpoqkJ1z2QzuLmKsPsnFMktjtl+U+HYhluN8FciaJk4e00pFzeF6YxUdZkS2B3SXjc13JpQ==
dependencies:
- expo-dev-launcher "3.6.10"
- expo-dev-menu "4.5.8"
- expo-dev-menu-interface "1.7.2"
- expo-manifests "~0.13.0"
- expo-updates-interface "~0.15.1"
+ expo-dev-launcher "5.0.23"
+ expo-dev-menu "6.0.16"
+ expo-dev-menu-interface "1.9.2"
+ expo-manifests "~0.15.5"
+ expo-updates-interface "~1.0.0"
-expo-dev-launcher@3.6.10:
- version "3.6.10"
- resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-3.6.10.tgz#e445ba38676630b82a52f06d1f97700ffab666c7"
- integrity sha512-7sbatYHpORxNmc3vnOHdU51gP7vcRhSu25E4SpCZ/T+ijjWN5/0hZzGqLJyUy8cDs1xuA3G1tHQQwvT/1/WaHA==
+expo-dev-launcher@5.0.23:
+ version "5.0.23"
+ resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-5.0.23.tgz#745c1d758a91737b71b17840d7d871794f0d4f46"
+ integrity sha512-5pZeZgn1zOtmH1UHARHilH6Uy9jV12gz0Pdg/E6neTX24DoohIWtqO/RffDDH/m1hfV61am5tLN+Tt5bf2mUNA==
dependencies:
ajv "8.11.0"
- expo-dev-menu "4.5.8"
- expo-manifests "~0.13.0"
+ expo-dev-menu "6.0.16"
+ expo-manifests "~0.15.5"
resolve-from "^5.0.0"
- semver "^7.5.3"
-expo-dev-menu-interface@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.7.2.tgz#772fb97c6b0a44c27965cdfcfa078f316b0930ca"
- integrity sha512-V/geSB9rW0IPTR+d7E5CcvkV0uVUCE7SMHZqE/J0/dH06Wo8AahB16fimXeh5/hTL2Qztq8CQ41xpFUBoA9TEw==
+expo-dev-menu-interface@1.9.2:
+ version "1.9.2"
+ resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.9.2.tgz#3515d1365df965f1ad56607cddd133a3c764e23d"
+ integrity sha512-9piGiHZYnNjoO9oQFWlVsndQ1jhTdGCKf81WfCMHbQBamna/zucC1A+jbGpyzE4icXZZ29CpsSd4uVR+tB2Rfw==
-expo-dev-menu@4.5.8:
- version "4.5.8"
- resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-4.5.8.tgz#21940385124c7d2745066bbcb42185ebd35f66bc"
- integrity sha512-GXfI0CmYlqjOqyFjtplXO9PSoJQoy89+50lbUSNZykDsGyvzCPzl4txdQcdHHSglKYr7lWV7aeMVeehuSct60w==
+expo-dev-menu@6.0.16:
+ version "6.0.16"
+ resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-6.0.16.tgz#33bbda551a57e373c8e67966c498a1989724013d"
+ integrity sha512-V9+V6dY7sudT0fq5Uq9hnjuTr1qRgu+8ri37TQFBM+ucY2h8x1F7WfJ45pddNXO2zLj4yQRv3q24m7/YueTheQ==
dependencies:
- expo-dev-menu-interface "1.7.2"
- semver "^7.5.3"
+ expo-dev-menu-interface "1.9.2"
-expo-file-system@~16.0.0, expo-file-system@~16.0.9:
- version "16.0.9"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-16.0.9.tgz#cbd6c4b228b60a6b6c71fd1b91fe57299fb24da7"
- integrity sha512-3gRPvKVv7/Y7AdD9eHMIdfg5YbUn2zbwKofjsloTI5sEC57SLUFJtbLvUCz9Pk63DaSQ7WIE1JM0EASyvuPbuw==
+expo-file-system@~18.0.7:
+ version "18.0.7"
+ resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-18.0.7.tgz#218792dc0aeb7e0976a7f8f412a5d7de09b39610"
+ integrity sha512-6PpbQfogMXdzOsJzlJayy5qf40IfIHhudtAOzr32RlRYL4Hkmk3YcR9jG0PWQ0rklJfAhbAdP63yOcN+wDgzaA==
+ dependencies:
+ web-streams-polyfill "^3.3.2"
-expo-font@~11.10.3:
- version "11.10.3"
- resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-11.10.3.tgz#a3115ebda8e09bd7cb8052619a4bbe606f0c17f4"
- integrity sha512-q1Td2zUvmLbCA9GV4OG4nLPw5gJuNY1VrPycsnemN1m8XWTzzs8nyECQQqrcBhgulCgcKZZJJ6U0kC2iuSoQHQ==
+expo-font@~13.0.3:
+ version "13.0.3"
+ resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-13.0.3.tgz#7660ec4e3f5df0782bfa563fea7170c7ce2865ab"
+ integrity sha512-9IdYz+A+b3KvuCYP7DUUXF4VMZjPU+IsvAnLSVJ2TfP6zUD2JjZFx3jeo/cxWRkYk/aLj5+53Te7elTAScNl4Q==
dependencies:
fontfaceobserver "^2.1.0"
-expo-json-utils@~0.12.0:
- version "0.12.3"
- resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.12.3.tgz#cabb704a344d6d75f225cf4032c64479e442a2a9"
- integrity sha512-4pypQdinpNc6XY9wsZk56njvzDh+B/9mISr7FPP3CVk1QGB1nSLh883/BCDSgnsephATZkC5HG+cdE60kCAR6A==
+expo-json-utils@~0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.14.0.tgz#ad3cbbcb4fb22e4d23bf9fb19b611e36758861d2"
+ integrity sha512-xjGfK9dL0B1wLnOqNkX0jM9p48Y0I5xEPzHude28LY67UmamUyAACkqhZGaPClyPNfdzczk7Ej6WaRMT3HfXvw==
-expo-keep-awake@~12.8.2:
- version "12.8.2"
- resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-12.8.2.tgz#6cfdf8ad02b5fa130f99d4a1eb98e459d5b4332e"
- integrity sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==
+expo-keep-awake@~14.0.2:
+ version "14.0.2"
+ resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-14.0.2.tgz#124a729df43c87994631f51d5b1b5093d58e6c80"
+ integrity sha512-71XAMnoWjKZrN8J7Q3+u0l9Ytp4OfhNAYz8BCWF1/9aFUw09J3I7Z5DuI3MUsVMa/KWi+XhG+eDUFP8cVA19Uw==
-expo-manifests@~0.13.0:
- version "0.13.2"
- resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.13.2.tgz#02b28bb2fb002ef93a03faf1ede9ecaa43e5d6c0"
- integrity sha512-l0Sia1WmLULx8V41K8RzGLsFoTe4qqthPRGpHjItsYn8ZB6lRrdTBM9OYp2McIflgqN1HAimUCQMFIwJyH+UmA==
+expo-manifests@~0.15.5:
+ version "0.15.5"
+ resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.15.5.tgz#18a1788d3c6c8dd8aa6ff6c585821224435d5018"
+ integrity sha512-3X3eQomnTa4G0Y9GoJeyewHPTscuzWMrTB3x4CknqOyXpGOJjOuCKjhzvccHxXZAt0XswqBI94iTbqIofo9Uqw==
dependencies:
- "@expo/config" "~8.5.0"
- expo-json-utils "~0.12.0"
+ "@expo/config" "~10.0.8"
+ expo-json-utils "~0.14.0"
-expo-modules-autolinking@1.10.3:
- version "1.10.3"
- resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-1.10.3.tgz#19f349884a90f3f27ec9d64e8f2fa6be609558c5"
- integrity sha512-pn4n2Dl4iRh/zUeiChjRIe1C7EqOw1qhccr85viQV7W6l5vgRpY0osE51ij5LKg/kJmGRcJfs12+PwbdTplbKw==
+expo-modules-autolinking@2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-2.0.5.tgz#0e32a50b674cb722aeeeb48d7c1500a3768c06d4"
+ integrity sha512-z1aAa7OtnAXZRFwn/CSgr9qSclW0mepGRJzcjZjyHL49u3VWmAHaPLl6S5vVGSX3sTYsFjKJ7ioCCye3tNdeUg==
dependencies:
- "@expo/config" "~8.5.0"
+ "@expo/spawn-async" "^1.7.2"
chalk "^4.1.0"
commander "^7.2.0"
fast-glob "^3.2.5"
find-up "^5.0.0"
fs-extra "^9.1.0"
+ require-from-string "^2.0.2"
+ resolve-from "^5.0.0"
-expo-modules-core@1.11.14:
- version "1.11.14"
- resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.11.14.tgz#e1291661f2b73040382bd9f57c0dd73a98e4f757"
- integrity sha512-+W+A/jYJdWzA43KEAixhoArEb0EzTsS6T3tObYkZ1EHk8LaBT3hnFant52CnFTeVY4pqv4mgutBua2UQQMAWFA==
+expo-modules-core@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-2.1.3.tgz#b8b8d4f5128a4f59c1093cfdddfc6936af2ddbc9"
+ integrity sha512-DkSEr7q/SobjmCAo70833+xl0liShEFDHuC/YzXmHoDRxYHJaZCNc9uVBqjMeRfPVWp+4Rj9hF/gNvfad7vy0g==
dependencies:
invariant "^2.2.4"
-expo-updates-interface@~0.15.1:
- version "0.15.3"
- resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.15.3.tgz#cdee536dea0a8692833a4d074005bf9c6bbbdd99"
- integrity sha512-uLvsbaCmUsXgJqeen8rYH/jPr874ZUCXEvWpKHxrCv5/XATPlYEaDuecbNSGQ+cu78i6MdtB4BHOwZmoH2d47A==
+expo-updates-interface@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-1.0.0.tgz#b98c66b800d29561c62409556948b2af3d5316e5"
+ integrity sha512-93oWtvULJOj+Pp+N/lpTcFfuREX1wNeHtp7Lwn8EbzYYmdn37MvZU3TPW2tYYCZuhzmKEXnUblYcruYoDu7IrQ==
-expo@^50.0.0:
- version "50.0.21"
- resolved "https://registry.yarnpkg.com/expo/-/expo-50.0.21.tgz#bcfc4c73264cc96b82ef7cb6875e05e1089b2cba"
- integrity sha512-lY+HJdQcsTUbEtPhgT3Y2+WwKZdJiYN0Zq5yAOT9293N1TbdLbHCNkOUtFfTmK0JjwgSKbbH4kRlue7a4MJflg==
+expo@^52.0.0:
+ version "52.0.25"
+ resolved "https://registry.yarnpkg.com/expo/-/expo-52.0.25.tgz#06f074b92c8d3f7a005c088c0debd1d227849991"
+ integrity sha512-BWHveMyDSST7vuGNn8zbrSGboJdvXDE9auUEkFa14ETAWRtsghYnZ0KmjOEQNxNmrBHzct/JgZ8efh5sJGd0xA==
dependencies:
"@babel/runtime" "^7.20.0"
- "@expo/cli" "0.17.13"
- "@expo/config" "8.5.6"
- "@expo/config-plugins" "7.9.2"
- "@expo/metro-config" "0.17.8"
+ "@expo/cli" "0.22.9"
+ "@expo/config" "~10.0.8"
+ "@expo/config-plugins" "~9.0.14"
+ "@expo/fingerprint" "0.11.7"
+ "@expo/metro-config" "0.19.9"
"@expo/vector-icons" "^14.0.0"
- babel-preset-expo "~10.0.2"
- expo-asset "~9.0.2"
- expo-file-system "~16.0.9"
- expo-font "~11.10.3"
- expo-keep-awake "~12.8.2"
- expo-modules-autolinking "1.10.3"
- expo-modules-core "1.11.14"
+ babel-preset-expo "~12.0.6"
+ expo-asset "~11.0.2"
+ expo-constants "~17.0.4"
+ expo-file-system "~18.0.7"
+ expo-font "~13.0.3"
+ expo-keep-awake "~14.0.2"
+ expo-modules-autolinking "2.0.5"
+ expo-modules-core "2.1.3"
fbemitter "^3.0.0"
+ web-streams-polyfill "^3.3.2"
whatwg-url-without-unicode "8.0.0-3"
exponential-backoff@^3.1.1:
@@ -17965,7 +17829,7 @@ find-up@^6.3.0:
locate-path "^7.1.0"
path-exists "^5.0.0"
-find-yarn-workspace-root@^2.0.0, find-yarn-workspace-root@~2.0.0:
+find-yarn-workspace-root@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd"
integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==
@@ -18083,7 +17947,7 @@ flow-enums-runtime@^0.0.6:
resolved "https://registry.yarnpkg.com/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz#5bb0cd1b0a3e471330f4d109039b7eba5cb3e787"
integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==
-flow-parser@0.*, flow-parser@^0.206.0:
+flow-parser@0.*:
version "0.206.0"
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef"
integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==
@@ -18229,7 +18093,7 @@ forwarded@0.2.0:
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
-freeport-async@2.0.0:
+freeport-async@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/freeport-async/-/freeport-async-2.0.0.tgz#6adf2ec0c629d11abff92836acd04b399135bab4"
integrity sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==
@@ -18684,7 +18548,7 @@ glob@^6.0.1:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7, glob@^7.2.3:
+glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -18873,18 +18737,13 @@ graphql-subscriptions@^1.1.0:
dependencies:
iterall "^1.3.0"
-graphql-tag@^2.10.1, graphql-tag@^2.12.6:
+graphql-tag@^2.12.6:
version "2.12.6"
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1"
integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==
dependencies:
tslib "^2.1.0"
-graphql@15.8.0:
- version "15.8.0"
- resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38"
- integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==
-
"graphql@^14.0.2 || ^15.5":
version "15.9.0"
resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.9.0.tgz#4e8ca830cfd30b03d44d3edd9cac2b0690304b53"
@@ -19159,13 +19018,6 @@ hosted-git-info@^2.1.4:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-hosted-git-info@^3.0.2:
- version "3.0.8"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d"
- integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==
- dependencies:
- lru-cache "^6.0.0"
-
hosted-git-info@^7.0.0:
version "7.0.2"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.2.tgz#9b751acac097757667f30114607ef7b661ff4f17"
@@ -19561,11 +19413,6 @@ indexof@~0.0.1:
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=
-infer-owner@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
inflight@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
@@ -19620,7 +19467,7 @@ inquirer@8.2.4:
through "^2.3.6"
wrap-ansi "^7.0.0"
-internal-ip@4.3.0:
+internal-ip@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
@@ -19763,7 +19610,7 @@ is-buffer@^2.0.5:
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
-is-buffer@~1.1.1, is-buffer@~1.1.6:
+is-buffer@~1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
@@ -19828,11 +19675,6 @@ is-extendable@^0.1.1:
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
-is-extglob@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
- integrity sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==
-
is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
@@ -19889,13 +19731,6 @@ is-generator-function@^1.0.10, is-generator-function@^1.0.7:
dependencies:
has-tostringtag "^1.0.0"
-is-glob@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
- integrity sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==
- dependencies:
- is-extglob "^1.0.0"
-
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
@@ -19926,13 +19761,6 @@ is-interactive@^1.0.0:
resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
-is-invalid-path@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/is-invalid-path/-/is-invalid-path-0.1.0.tgz#307a855b3cf1a938b44ea70d2c61106053714f34"
- integrity sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==
- dependencies:
- is-glob "^2.0.0"
-
is-lambda@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
@@ -20101,13 +19929,6 @@ is-utf8@^0.2.0:
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
-is-valid-path@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-valid-path/-/is-valid-path-0.1.1.tgz#110f9ff74c37f663e1ec7915eb451f2db93ac9df"
- integrity sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==
- dependencies:
- is-invalid-path "^0.1.0"
-
is-weakmap@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2"
@@ -21029,20 +20850,6 @@ json-rpc-random-id@^1.0.0, json-rpc-random-id@^1.0.1:
resolved "https://registry.yarnpkg.com/json-rpc-random-id/-/json-rpc-random-id-1.0.1.tgz#ba49d96aded1444dbb8da3d203748acbbcdec8c8"
integrity sha1-uknZat7RRE27jaPSA3SKy7zeyMg=
-json-schema-deref-sync@^0.13.0:
- version "0.13.0"
- resolved "https://registry.yarnpkg.com/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz#cb08b4ff435a48b5a149652d7750fdd071009823"
- integrity sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==
- dependencies:
- clone "^2.1.2"
- dag-map "~1.0.0"
- is-valid-path "^0.1.1"
- lodash "^4.17.13"
- md5 "~2.2.0"
- memory-cache "~0.2.0"
- traverse "~0.6.6"
- valid-url "~1.0.9"
-
json-schema-faker@^0.5.0-rcv.26, json-schema-faker@^0.5.0-rcv.29:
version "0.5.6"
resolved "https://registry.yarnpkg.com/json-schema-faker/-/json-schema-faker-0.5.6.tgz#731e5a8616bf2b4b53206a6ae18578a5fccc43a5"
@@ -21473,61 +21280,73 @@ lighthouse-logger@^1.0.0:
debug "^2.6.9"
marky "^1.2.2"
-lightningcss-darwin-arm64@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz#56ab071e932f845dbb7667f44f5b78441175a343"
- integrity sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==
-
-lightningcss-darwin-x64@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.19.0.tgz#c867308b88859ba61a2c46c82b1ca52ff73a1bd0"
- integrity sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==
-
-lightningcss-linux-arm-gnueabihf@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.19.0.tgz#0f921dc45f2e5c3aea70fab98844ac0e5f2f81be"
- integrity sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==
-
-lightningcss-linux-arm64-gnu@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.19.0.tgz#027f9df9c7f4ffa127c37a71726245a5794d7ba2"
- integrity sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==
-
-lightningcss-linux-arm64-musl@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.19.0.tgz#85ea987da868524eac6db94f8e1eaa23d0b688a3"
- integrity sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==
-
-lightningcss-linux-x64-gnu@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.19.0.tgz#02bec89579ab4153dccc0def755d1fd9e3ee7f3c"
- integrity sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==
-
-lightningcss-linux-x64-musl@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.19.0.tgz#e36a5df8193ae961d22974635e4c100a1823bb8c"
- integrity sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==
-
-lightningcss-win32-x64-msvc@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.19.0.tgz#0854dbd153035eca1396e2227c708ad43655a61c"
- integrity sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==
-
-lightningcss@~1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.19.0.tgz#fbbad0975de66252e38d96b5bdd2a62f2dd0ffbf"
- integrity sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==
+lightningcss-darwin-arm64@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz#565bd610533941cba648a70e105987578d82f996"
+ integrity sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==
+
+lightningcss-darwin-x64@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz#c906a267237b1c7fe08bff6c5ac032c099bc9482"
+ integrity sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==
+
+lightningcss-freebsd-x64@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz#a7c3c4d6ee18dffeb8fa69f14f8f9267f7dc0c34"
+ integrity sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==
+
+lightningcss-linux-arm-gnueabihf@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz#c7c16432a571ec877bf734fe500e4a43d48c2814"
+ integrity sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==
+
+lightningcss-linux-arm64-gnu@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz#cfd9e18df1cd65131da286ddacfa3aee6862a752"
+ integrity sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==
+
+lightningcss-linux-arm64-musl@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz#6682ff6b9165acef9a6796bd9127a8e1247bb0ed"
+ integrity sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==
+
+lightningcss-linux-x64-gnu@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz#714221212ad184ddfe974bbb7dbe9300dfde4bc0"
+ integrity sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==
+
+lightningcss-linux-x64-musl@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz#247958daf622a030a6dc2285afa16b7184bdf21e"
+ integrity sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==
+
+lightningcss-win32-arm64-msvc@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz#64cfe473c264ef5dc275a4d57a516d77fcac6bc9"
+ integrity sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==
+
+lightningcss-win32-x64-msvc@1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz#237d0dc87d9cdc9cf82536bcbc07426fa9f3f422"
+ integrity sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==
+
+lightningcss@~1.27.0:
+ version "1.27.0"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.27.0.tgz#d4608e63044343836dd9769f6c8b5d607867649a"
+ integrity sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==
dependencies:
detect-libc "^1.0.3"
optionalDependencies:
- lightningcss-darwin-arm64 "1.19.0"
- lightningcss-darwin-x64 "1.19.0"
- lightningcss-linux-arm-gnueabihf "1.19.0"
- lightningcss-linux-arm64-gnu "1.19.0"
- lightningcss-linux-arm64-musl "1.19.0"
- lightningcss-linux-x64-gnu "1.19.0"
- lightningcss-linux-x64-musl "1.19.0"
- lightningcss-win32-x64-msvc "1.19.0"
+ lightningcss-darwin-arm64 "1.27.0"
+ lightningcss-darwin-x64 "1.27.0"
+ lightningcss-freebsd-x64 "1.27.0"
+ lightningcss-linux-arm-gnueabihf "1.27.0"
+ lightningcss-linux-arm64-gnu "1.27.0"
+ lightningcss-linux-arm64-musl "1.27.0"
+ lightningcss-linux-x64-gnu "1.27.0"
+ lightningcss-linux-x64-musl "1.27.0"
+ lightningcss-win32-arm64-msvc "1.27.0"
+ lightningcss-win32-x64-msvc "1.27.0"
lilconfig@3.1.2:
version "3.1.2"
@@ -21796,7 +21615,7 @@ lodash.zip@^4.2.0:
resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020"
integrity sha512-C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg==
-lodash@4.17.21, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.16.4, lodash@^4.16.6, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4:
+lodash@4.17.21, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.16.4, lodash@^4.16.6, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -22087,20 +21906,6 @@ md5@^2.2.1:
crypt "0.0.2"
is-buffer "~1.1.6"
-md5@~2.2.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9"
- integrity sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==
- dependencies:
- charenc "~0.0.1"
- crypt "~0.0.1"
- is-buffer "~1.1.1"
-
-md5hex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/md5hex/-/md5hex-1.0.0.tgz#ed74b477a2ee9369f75efee2f08d5915e52a42e8"
- integrity sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==
-
mdn-data@2.0.14:
version "2.0.14"
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
@@ -22130,11 +21935,6 @@ memoizerific@^1.11.3:
dependencies:
map-or-similar "^1.5.0"
-memory-cache@~0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/memory-cache/-/memory-cache-0.2.0.tgz#7890b01d52c00c8ebc9d533e1f8eb17e3034871a"
- integrity sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==
-
merge-descriptors@1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5"
@@ -22798,13 +22598,6 @@ minimist@1.2.6, minimist@^1.1.2, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
-minipass-collect@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
- integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
- dependencies:
- minipass "^3.0.0"
-
minipass-collect@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863"
@@ -22830,7 +22623,7 @@ minipass-flush@^1.0.5:
dependencies:
minipass "^3.0.0"
-minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4:
+minipass-pipeline@^1.2.4:
version "1.2.4"
resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
@@ -22844,7 +22637,7 @@ minipass-sized@^1.0.3:
dependencies:
minipass "^3.0.0"
-minipass@3.3.6, minipass@^3.0.0, minipass@^3.1.1:
+minipass@^3.0.0:
version "3.3.6"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
@@ -23201,6 +22994,11 @@ negotiator@0.6.3, negotiator@^0.6.3:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+negotiator@~0.6.4:
+ version "0.6.4"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7"
+ integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==
+
neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
@@ -23450,16 +23248,6 @@ npm-package-arg@^11.0.0:
semver "^7.3.5"
validate-npm-package-name "^5.0.0"
-npm-package-arg@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-7.0.0.tgz#52cdf08b491c0c59df687c4c925a89102ef794a5"
- integrity sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==
- dependencies:
- hosted-git-info "^3.0.2"
- osenv "^0.1.5"
- semver "^5.6.0"
- validate-npm-package-name "^3.0.0"
-
npm-pick-manifest@^9.0.0:
version "9.0.1"
resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz#c90658bd726fe5bca9d2869f3e99359b8fcda046"
@@ -23788,7 +23576,7 @@ open@^7.0.3, open@^7.4.2:
is-docker "^2.0.0"
is-wsl "^2.1.1"
-open@^8.0.4, open@^8.2.0, open@^8.3.0, open@^8.4.0, open@^8.4.2:
+open@^8.0.4, open@^8.2.0, open@^8.4.0, open@^8.4.2:
version "8.4.2"
resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
@@ -23819,18 +23607,6 @@ optionator@^0.9.3:
type-check "^0.4.0"
word-wrap "^1.2.5"
-ora@3.4.0, ora@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
- integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
- dependencies:
- chalk "^2.4.2"
- cli-cursor "^2.1.0"
- cli-spinners "^2.0.0"
- log-symbols "^2.2.0"
- strip-ansi "^5.2.0"
- wcwidth "^1.0.1"
-
ora@5.4.1, ora@^5.4.1:
version "5.4.1"
resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18"
@@ -23846,24 +23622,23 @@ ora@5.4.1, ora@^5.4.1:
strip-ansi "^6.0.0"
wcwidth "^1.0.1"
-os-homedir@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
- integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==
+ora@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
+ integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
+ dependencies:
+ chalk "^2.4.2"
+ cli-cursor "^2.1.0"
+ cli-spinners "^2.0.0"
+ log-symbols "^2.2.0"
+ strip-ansi "^5.2.0"
+ wcwidth "^1.0.1"
-os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
+os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-osenv@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
- integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
- dependencies:
- os-homedir "^1.0.0"
- os-tmpdir "^1.0.0"
-
p-cancelable@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf"
@@ -24630,7 +24405,7 @@ prettier@^2.0.5, prettier@^2.2.1, prettier@^2.4.1, prettier@^2.7.1:
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
-pretty-bytes@5.6.0:
+pretty-bytes@^5.6.0:
version "5.6.0"
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
@@ -25258,13 +25033,13 @@ react-devtools-core@^5.3.1:
shell-quote "^1.6.1"
ws "^7"
-react-dom@18.2.0, react-dom@^18.2.0:
- version "18.2.0"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
- integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
+react-dom@18.3.1:
+ version "18.3.1"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4"
+ integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==
dependencies:
loose-envify "^1.1.0"
- scheduler "^0.23.0"
+ scheduler "^0.23.2"
react-dom@^16.8.3:
version "16.14.0"
@@ -25276,6 +25051,14 @@ react-dom@^16.8.3:
prop-types "^15.6.2"
scheduler "^0.19.1"
+react-dom@^18.2.0:
+ version "18.2.0"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
+ integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
+ dependencies:
+ loose-envify "^1.1.0"
+ scheduler "^0.23.0"
+
react-error-boundary@^3.1.0:
version "3.1.4"
resolved "https://registry.yarnpkg.com/react-error-boundary/-/react-error-boundary-3.1.4.tgz#255db92b23197108757a888b01e5b729919abde0"
@@ -25496,21 +25279,20 @@ react-native-fs@^2.20.0:
base-64 "^0.1.0"
utf8 "^3.0.0"
-react-native-gesture-handler@~2.14.0:
- version "2.14.1"
- resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.14.1.tgz#930640231024b7921435ab476aa501dd4a6b2e01"
- integrity sha512-YiM1BApV4aKeuwsM6O4C2ufwewYEKk6VMXOt0YqEZFMwABBFWhXLySFZYjBSNRU2USGppJbfHP1q1DfFQpKhdA==
+react-native-gesture-handler@~2.20.2:
+ version "2.20.2"
+ resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.20.2.tgz#73844c8e9c417459c2f2981bc4d8f66ba8a5ee66"
+ integrity sha512-HqzFpFczV4qCnwKlvSAvpzEXisL+Z9fsR08YV5LfJDkzuArMhBu2sOoSPUF/K62PCoAb+ObGlTC83TKHfUd0vg==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
invariant "^2.2.4"
- lodash "^4.17.21"
prop-types "^15.7.2"
-react-native-get-random-values@^1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/react-native-get-random-values/-/react-native-get-random-values-1.8.0.tgz#1cb4bd4bd3966a356e59697b8f372999fe97cb16"
- integrity sha512-H/zghhun0T+UIJLmig3+ZuBCvF66rdbiWUfRSNS6kv5oDSpa1ZiVyvRWtuPesQpT8dXj+Bv7WJRQOUP+5TB1sA==
+react-native-get-random-values@~1.11.0:
+ version "1.11.0"
+ resolved "https://registry.yarnpkg.com/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz#1ca70d1271f4b08af92958803b89dccbda78728d"
+ integrity sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==
dependencies:
fast-base64-decode "^1.0.0"
@@ -25691,12 +25473,19 @@ react-native-randombytes@^3.5.3:
buffer "^4.9.1"
sjcl "^1.0.3"
-react-native-reanimated@~3.6.2:
- version "3.6.3"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.6.3.tgz#859cf2320e37c80e3a21e19db24f82c34d6d3ded"
- integrity sha512-2KkkPozoIvDbJcHuf8qeyoLROXQxizSi+2CTCkuNVkVZOxxY4B0Omvgq61aOQhSZUh/649x1YHoAaTyGMGDJUw==
- dependencies:
- "@babel/plugin-transform-object-assign" "^7.16.7"
+react-native-reanimated@~3.16.1:
+ version "3.16.7"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.16.7.tgz#6c7fa516f62c6743c24d955dada00e3c5323d50d"
+ integrity sha512-qoUUQOwE1pHlmQ9cXTJ2MX9FQ9eHllopCLiWOkDkp6CER95ZWeXhJCP4cSm6AD4jigL5jHcZf/SkWrg8ttZUsw==
+ dependencies:
+ "@babel/plugin-transform-arrow-functions" "^7.0.0-0"
+ "@babel/plugin-transform-class-properties" "^7.0.0-0"
+ "@babel/plugin-transform-classes" "^7.0.0-0"
+ "@babel/plugin-transform-nullish-coalescing-operator" "^7.0.0-0"
+ "@babel/plugin-transform-optional-chaining" "^7.0.0-0"
+ "@babel/plugin-transform-shorthand-properties" "^7.0.0-0"
+ "@babel/plugin-transform-template-literals" "^7.0.0-0"
+ "@babel/plugin-transform-unicode-regex" "^7.0.0-0"
"@babel/preset-typescript" "^7.16.7"
convert-source-map "^2.0.0"
invariant "^2.2.4"
@@ -25716,15 +25505,15 @@ react-native-render-html@^6.3.4:
stringify-entities "^3.1.0"
urijs "^1.19.6"
-react-native-safe-area-context@4.8.2:
- version "4.8.2"
- resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.8.2.tgz#e6b3d8acf3c6afcb4b5db03a97f9c37df7668f65"
- integrity sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==
+react-native-safe-area-context@4.12.0:
+ version "4.12.0"
+ resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.12.0.tgz#17868522a55bbc6757418c94a1b4abdda6b045d9"
+ integrity sha512-ukk5PxcF4p3yu6qMZcmeiZgowhb5AsKRnil54YFUUAXVIS7PJcMHGGC+q44fCiBg44/1AJk5njGMez1m9H0BVQ==
-react-native-screens@~3.29.0:
- version "3.29.0"
- resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.29.0.tgz#1dee0326defbc1d4ef4e68287abb32a8e6b76b29"
- integrity sha512-yB1GoAMamFAcYf4ku94uBPn0/ani9QG7NdI98beJ5cet2YFESYYzuEIuU+kt+CNRcO8qqKeugxlfgAa3HyTqlg==
+react-native-screens@~4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-4.4.0.tgz#3fcbcdf1bbb1be2736b10d43edc3d4e69c37b5aa"
+ integrity sha512-c7zc7Zwjty6/pGyuuvh9gK3YBYqHPOxrhXfG1lF4gHlojQSmIx2piNbNaV+Uykj+RDTmFXK0e/hA+fucw/Qozg==
dependencies:
react-freeze "^1.0.0"
warn-once "^0.1.0"
@@ -25804,10 +25593,10 @@ react-native-svg-transformer@^1.0.0:
"@svgr/plugin-svgo" "^6.1.2"
path-dirname "^1.0.2"
-react-native-svg@^15.3.0:
- version "15.10.1"
- resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-15.10.1.tgz#5df51fca80cb1912648d058b67903f05eac0b8a6"
- integrity sha512-Hqz/doQciVFK/Df2v+wsW96oY5jxlta7rZ31KQYo78dlgvAHEaGr6paEOAMvlIruw7EHNQ0Vc1ZmJPJF2kfIPQ==
+react-native-svg@15.8.0:
+ version "15.8.0"
+ resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-15.8.0.tgz#9b5fd4f5cf5675197b3f4cbfcc77c215de2b9502"
+ integrity sha512-KHJzKpgOjwj1qeZzsBjxNdoIgv2zNCO9fVcoq2TEhTRsVV5DGTZ9JzUZwybd7q4giT/H3RdtqC3u44dWdO0Ffw==
dependencies:
css-select "^5.1.0"
css-tree "^1.1.3"
@@ -25876,10 +25665,10 @@ react-native-video@5.2.1:
prop-types "^15.7.2"
shaka-player "^2.5.9"
-react-native-view-shot@3.8.0:
- version "3.8.0"
- resolved "https://registry.yarnpkg.com/react-native-view-shot/-/react-native-view-shot-3.8.0.tgz#1aa1905f0e79428ca32bf80c16fd4abc719c600b"
- integrity sha512-4cU8SOhMn3YQIrskh+5Q8VvVRxQOu8/s1M9NAL4z5BY1Rm0HXMWkQJ4N0XsZ42+Yca+y86ISF3LC5qdLPvPuiA==
+react-native-view-shot@4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/react-native-view-shot/-/react-native-view-shot-4.0.3.tgz#9b98388fcc5228073cb66ac98ca339eda35767ac"
+ integrity sha512-USNjYmED7C0me02c1DxKA0074Hw+y/nxo+xJKlffMvfUWWzL5ELh/TJA/pTnVqFurIrzthZDPtDM7aBFJuhrHQ==
dependencies:
html2canvas "^1.4.1"
@@ -25972,12 +25761,7 @@ react-redux@^8.1.3:
react-is "^18.0.0"
use-sync-external-store "^1.0.0"
-react-refresh@0.14.0:
- version "0.14.0"
- resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e"
- integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==
-
-react-refresh@^0.14.0:
+react-refresh@^0.14.0, react-refresh@^0.14.2:
version "0.14.2"
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9"
integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==
@@ -27052,13 +26836,6 @@ semver-compare@^1.0.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
-semver@7.3.2, semver@7.5.2:
- version "7.5.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb"
- integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==
- dependencies:
- lru-cache "^6.0.0"
-
semver@7.3.7:
version "7.3.7"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
@@ -27066,10 +26843,10 @@ semver@7.3.7:
dependencies:
lru-cache "^6.0.0"
-semver@7.5.3:
- version "7.5.3"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e"
- integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==
+semver@7.5.2:
+ version "7.5.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb"
+ integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==
dependencies:
lru-cache "^6.0.0"
@@ -27090,7 +26867,7 @@ semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-send@0.19.0, send@^0.18.0:
+send@0.19.0, send@^0.19.0:
version "0.19.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8"
integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==
@@ -27716,13 +27493,6 @@ ssri@^10.0.0:
dependencies:
minipass "^7.0.3"
-ssri@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
- integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
- dependencies:
- minipass "^3.1.1"
-
stable@^0.1.8:
version "0.1.8"
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
@@ -27797,7 +27567,7 @@ stream-browserify@3.0.0, stream-browserify@^3.0.0:
inherits "~2.0.4"
readable-stream "^3.5.0"
-stream-buffers@2.2.x:
+stream-buffers@2.2.x, stream-buffers@~2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4"
integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=
@@ -28128,14 +27898,14 @@ style-loader@^3.3.1:
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff"
integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==
-sucrase@3.34.0:
- version "3.34.0"
- resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f"
- integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==
+sucrase@3.35.0:
+ version "3.35.0"
+ resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
+ integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==
dependencies:
"@jridgewell/gen-mapping" "^0.3.2"
commander "^4.0.0"
- glob "7.1.6"
+ glob "^10.3.10"
lines-and-columns "^1.1.6"
mz "^2.7.0"
pirates "^4.0.1"
@@ -28313,7 +28083,7 @@ tar-stream@^3.0.0, tar-stream@^3.1.5, tar-stream@^3.1.7:
fast-fifo "^1.2.0"
streamx "^2.15.0"
-tar@^6.0.2, tar@^6.0.5, tar@^6.1.11, tar@^6.1.2:
+tar@^6.1.11, tar@^6.1.2, tar@^6.2.1:
version "6.2.1"
resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
@@ -28400,7 +28170,7 @@ temp-dir@^1.0.0:
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==
-temp-dir@^2.0.0:
+temp-dir@^2.0.0, temp-dir@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
@@ -28427,15 +28197,6 @@ tempfile@^2.0.0:
temp-dir "^1.0.0"
uuid "^3.0.1"
-tempy@0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.3.0.tgz#6f6c5b295695a16130996ad5ab01a8bd726e8bf8"
- integrity sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==
- dependencies:
- temp-dir "^1.0.0"
- type-fest "^0.3.1"
- unique-string "^1.0.0"
-
tempy@^0.7.1:
version "0.7.1"
resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.7.1.tgz#5a654e6dbd1747cdd561efb112350b55cd9c1d46"
@@ -28659,15 +28420,6 @@ traverse-chain@~0.1.0:
resolved "https://registry.yarnpkg.com/traverse-chain/-/traverse-chain-0.1.0.tgz#61dbc2d53b69ff6091a12a168fd7d433107e40f1"
integrity sha512-up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg==
-traverse@~0.6.6:
- version "0.6.10"
- resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.10.tgz#4c93482381d794dee046882c036f3c4eee481324"
- integrity sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==
- dependencies:
- gopd "^1.0.1"
- typedarray.prototype.slice "^1.0.3"
- which-typed-array "^1.1.15"
-
triple-beam@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9"
@@ -28803,11 +28555,6 @@ type-fest@^0.21.3:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
-type-fest@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
- integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
-
type-fest@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
@@ -28907,18 +28654,6 @@ typedarray-to-buffer@3.1.5, typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"
-typedarray.prototype.slice@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz#bce2f685d3279f543239e4d595e0d021731d2d1a"
- integrity sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==
- dependencies:
- call-bind "^1.0.7"
- define-properties "^1.2.1"
- es-abstract "^1.23.0"
- es-errors "^1.3.0"
- typed-array-buffer "^1.0.2"
- typed-array-byte-offset "^1.0.2"
-
typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
@@ -29030,6 +28765,11 @@ undici@5.28.4:
dependencies:
"@fastify/busboy" "^2.0.0"
+undici@^6.18.2:
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.0.tgz#4b3d3afaef984e07b48e7620c34ed8a285ed4cd4"
+ integrity sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==
+
unenv@^1.7.4:
version "1.8.0"
resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.8.0.tgz#0f860d5278405700bd95d47b23bc01f3a735d68c"
@@ -29074,13 +28814,6 @@ unicode-property-aliases-ecmascript@^2.0.0:
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8"
integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
-unique-filename@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
- integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
- dependencies:
- unique-slug "^2.0.0"
-
unique-filename@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea"
@@ -29088,13 +28821,6 @@ unique-filename@^3.0.0:
dependencies:
unique-slug "^4.0.0"
-unique-slug@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
- integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
- dependencies:
- imurmurhash "^0.1.4"
-
unique-slug@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3"
@@ -29102,14 +28828,7 @@ unique-slug@^4.0.0:
dependencies:
imurmurhash "^0.1.4"
-unique-string@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
- integrity sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==
- dependencies:
- crypto-random-string "^1.0.0"
-
-unique-string@^2.0.0:
+unique-string@^2.0.0, unique-string@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
@@ -29219,11 +28938,6 @@ urijs@^1.19.6:
resolved "https://registry.yarnpkg.com/urijs/-/urijs-1.19.11.tgz#204b0d6b605ae80bea54bea39280cdb7c9f923cc"
integrity sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==
-url-join@4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.0.tgz#4d3340e807d3773bda9991f8305acdcc2a665d2a"
- integrity sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==
-
url-parse@1.5.9:
version "1.5.9"
resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.9.tgz#05ff26484a0b5e4040ac64dcee4177223d74675e"
@@ -29430,7 +29144,7 @@ v8-to-istanbul@^9.0.1:
"@types/istanbul-lib-coverage" "^2.0.1"
convert-source-map "^1.6.0"
-valid-url@1.0.9, valid-url@^1.0.9, valid-url@~1.0.9:
+valid-url@1.0.9, valid-url@^1.0.9:
version "1.0.9"
resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200"
integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==
@@ -29443,13 +29157,6 @@ validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
-validate-npm-package-name@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
- integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==
- dependencies:
- builtins "^1.0.3"
-
validate-npm-package-name@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713"
@@ -29568,6 +29275,11 @@ wdio-cucumberjs-json-reporter@^4.4.3:
strip-ansi "^6.0.1"
webdriverio "~7.16.13"
+web-streams-polyfill@^3.3.2:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b"
+ integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==
+
webdriver@7.16.16:
version "7.16.16"
resolved "https://registry.yarnpkg.com/webdriver/-/webdriver-7.16.16.tgz#fee2158d52a6fa4052a35f497d6cdc6bbb6ef733"
@@ -29929,11 +29641,6 @@ winston@3.15.0:
triple-beam "^1.3.0"
winston-transport "^4.7.0"
-wonka@^4.0.14:
- version "4.0.15"
- resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89"
- integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==
-
wonka@^6.3.2:
version "6.3.4"
resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594"
@@ -30067,7 +29774,7 @@ ws@8.13.0:
resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
-ws@^6.2.2, ws@^6.2.3:
+ws@^6.2.3:
version "6.2.3"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.3.tgz#ccc96e4add5fd6fedbc491903075c85c5a11d9ee"
integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==