From 898c6c4d72669e44ca03bdc4fa68f1b4481a7507 Mon Sep 17 00:00:00 2001 From: Siddarth Kumar Date: Fri, 13 Sep 2024 14:48:00 +0530 Subject: [PATCH] upgrade react-native to 0.75.3 --- Makefile | 6 + android/app/build.gradle | 7 +- android/app/jni/Android.mk | 2 + android/app/src/debug/AndroidManifest.xml | 7 +- android/app/src/main/AndroidManifest.xml | 3 +- .../im/status/ethereum/MainApplication.kt | 1 - android/build.gradle | 3 +- android/gradle.properties | 5 +- android/settings.gradle | 5 +- ci/Jenkinsfile.android | 1 + ios/Podfile | 1 + ios/Podfile.lock | 2050 +++++++---- ios/StatusIm/AppDelegate.mm | 4 +- ios/StatusIm/Info.plist | 2 +- ios/StatusIm/PrivacyInfo.xcprivacy | 37 + metro.config.js | 2 +- nix/deps/gradle/deps.json | 3277 ++++++++++++++--- nix/deps/gradle/deps.list | 270 +- nix/deps/gradle/deps.urls | 243 +- nix/deps/gradle/generate.sh | 9 +- nix/pkgs/aapt2/default.nix | 12 +- nix/pkgs/android-sdk/compose.nix | 2 +- package.json | 26 +- patches/LayoutDirectionApplier.kt.patch | 21 + patches/ModalContentLayout.kt.patch | 44 + patches/ReactSettingsExtension.kt.patch | 29 + patches/ReactTypefaceUtils.java.patch | 25 + patches/ReactViewGroup.kt.patch | 9 + patches/ios-configure-glog.sh.patch | 17 + patches/react-native-script.patch | 13 - patches/react-native.patch | 15 - scripts/build-android.sh | 2 + scripts/generate_autolink_android.sh | 31 + src/quo/components/buttons/button/view.cljs | 4 +- test/jest/jestSetup.js | 2 +- yarn.lock | 1248 +++++-- 36 files changed, 5653 insertions(+), 1782 deletions(-) create mode 100644 ios/StatusIm/PrivacyInfo.xcprivacy create mode 100644 patches/LayoutDirectionApplier.kt.patch create mode 100644 patches/ModalContentLayout.kt.patch create mode 100644 patches/ReactSettingsExtension.kt.patch create mode 100644 patches/ReactTypefaceUtils.java.patch create mode 100644 patches/ReactViewGroup.kt.patch create mode 100644 patches/ios-configure-glog.sh.patch delete mode 100644 patches/react-native-script.patch delete mode 100755 patches/react-native.patch create mode 100755 scripts/generate_autolink_android.sh diff --git a/Makefile b/Makefile index b9bfb722ee..97372173d4 100644 --- a/Makefile +++ b/Makefile @@ -97,6 +97,8 @@ nix-purge: ##@nix Completely remove Nix setup, including /nix directory nix/scripts/purge.sh nix-update-gradle: export TARGET := gradle +nix-update-gradle: export ORG_GRADLE_PROJECT_hermesEnabled := false +nix-update-gradle: export ORG_GRADLE_PROJECT_universalApk := false nix-update-gradle: ##@nix Update maven nix expressions based on current gradle setup nix/deps/gradle/generate.sh @@ -476,6 +478,10 @@ android-install: export BUILD_TYPE ?= release android-install: ##@other Install APK on device using adb adb install result/app-$(BUILD_TYPE).apk +generate-autolink-android: export TARGET := clojure +generate-autolink-android: ##@other Generate autolinking.json + @scripts/generate_autolink_android.sh + _list: SHELL := /bin/sh _list: @$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' diff --git a/android/app/build.gradle b/android/app/build.gradle index c086b3a560..9f027ddaac 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -54,6 +54,9 @@ react { // // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" // hermesFlags = ["-O", "-output-source-map"] + + /* Autolinking */ + autolinkLibrariesWithApp() } /** @@ -297,7 +300,7 @@ dependencies { implementation("com.facebook.fresco:fresco:2.5.0") implementation("com.facebook.fresco:animated-gif:2.5.0") implementation("com.squareup.okhttp3:okhttp-tls:4.11.0") - implementation("com.google.prefab:cli:2.0.0") + implementation("com.google.prefab:cli:2.1.0") implementation("com.android.tools.build:aapt2:8.1.1-10154469") } @@ -333,5 +336,3 @@ task hemroidBuild(type: Exec) { } preBuild.dependsOn hemroidBuild - -apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) diff --git a/android/app/jni/Android.mk b/android/app/jni/Android.mk index 1d61e349ff..05f5ed7711 100644 --- a/android/app/jni/Android.mk +++ b/android/app/jni/Android.mk @@ -6,6 +6,8 @@ LOCAL_MODULE := status-logs LOCAL_SRC_FILES := Log.c LOCAL_CPPFLAGS := -std=c++11 -fexceptions -I$(LOCAL_PATH)/include +# Fix for : ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] +LOCAL_CFLAGS := '-Wno-error=implicit-function-declaration' LOCAL_LDFLAGS := -llog include $(BUILD_SHARED_LIBRARY) diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index 9b34ec89c8..e31ec337a2 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -7,5 +7,10 @@ - + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index d5c398dd0c..c93bddfb25 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -42,7 +42,8 @@ android:largeHeap="true" android:usesCleartextTraffic="true" android:extractNativeLibs="true" - android:requestLegacyExternalStorage="true"> + android:requestLegacyExternalStorage="true" + android:supportsRtl="true"> diff --git a/android/app/src/main/java/im/status/ethereum/MainApplication.kt b/android/app/src/main/java/im/status/ethereum/MainApplication.kt index 8963c19a51..cc2ae12c66 100644 --- a/android/app/src/main/java/im/status/ethereum/MainApplication.kt +++ b/android/app/src/main/java/im/status/ethereum/MainApplication.kt @@ -6,7 +6,6 @@ import com.facebook.react.PackageList import com.facebook.react.ReactApplication import com.facebook.react.ReactNativeHost import com.facebook.react.ReactPackage -import com.facebook.react.bridge.JSIModulePackage import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint import com.facebook.react.modules.network.OkHttpClientProvider import com.reactnativenavigation.NavigationApplication diff --git a/android/build.gradle b/android/build.gradle index 17890dface..2fcae51350 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -17,7 +17,8 @@ ext { kotlinVersion = project.kotlinPluginVersion kotlinPluginVersion = project.kotlinPluginVersion kotlinToolsVersion = project.kotlinPluginVersion - ndkVersion = "25.2.9519653" + // This version must match ndkVersion version inside nix/pkgs/android-sdk/compose.nix + ndkVersion = "26.1.10909125" } buildscript { diff --git a/android/gradle.properties b/android/gradle.properties index 6d587f756f..78620c05f5 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -27,8 +27,8 @@ targetSdkVersion=34 buildToolsVersion=34.0.0 supportLibVersion=28.0.0 # This should match version from nix/pkgs/aapt2/default.nix -gradlePluginVersion=7.4.2 -kotlinPluginVersion=1.9.0 +gradlePluginVersion=8.5.0 +kotlinPluginVersion=1.9.24 android.useAndroidX=true android.enableJetifier=true @@ -54,7 +54,6 @@ commitHash=unknown # to write custom TurboModules/Fabric components OR use libraries that # are providing them. newArchEnabled=false - # Use this property to enable or disable the Hermes JS engine. # If set to false, you will be using JSC instead. # Disabled for debug builds to avoid 'maximum call stack exceeded' errors. diff --git a/android/settings.gradle b/android/settings.gradle index 084a6e37ae..e3bd591282 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,4 +1,5 @@ pluginManagement { +includeBuild("../node_modules/@react-native/gradle-plugin") include ':react-native-share' project(':react-native-share').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-share/android') repositories { @@ -6,9 +7,9 @@ project(':react-native-share').projectDir = new File(rootProject.projectDir, '.. gradlePluginPortal() } } - +plugins { id("com.facebook.react.settings") } +extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() } rootProject.name = 'StatusIm' -apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':react-native-nfc-manager' project(':react-native-nfc-manager').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-nfc-manager/android') include ':app' diff --git a/ci/Jenkinsfile.android b/ci/Jenkinsfile.android index bb1e85aaea..699883012a 100644 --- a/ci/Jenkinsfile.android +++ b/ci/Jenkinsfile.android @@ -49,6 +49,7 @@ pipeline { script { utils.symlinkEnv() println("Build Number: ${utils.genBuildNumber()}") + sh 'make generate-autolink-android' } } } diff --git a/ios/Podfile b/ios/Podfile index 4e26cada7d..8573e63aea 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -81,6 +81,7 @@ abstract_target 'Status' do installer, config[:reactNativePath], :mac_catalyst_enabled => false, + # :ccache_enabled => true ) # some of libs wouldn't be build for x86_64 otherwise and that is # necessary for ios simulators diff --git a/ios/Podfile.lock b/ios/Podfile.lock index a3ca5fb682..4240246e32 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,26 +1,18 @@ PODS: - - boost (1.83.0) + - boost (1.84.0) - CryptoSwift (1.5.1) - DoubleConversion (1.1.6) - - FBLazyVector (0.73.5) - - FBReactNativeSpec (0.73.5): - - RCT-Folly (= 2022.05.16.00) - - RCTRequired (= 0.73.5) - - RCTTypeSafety (= 0.73.5) - - React-Core (= 0.73.5) - - React-jsi (= 0.73.5) - - ReactCommon/turbomodule/core (= 0.73.5) - - fmt (6.2.1) + - FBLazyVector (0.75.3) + - fmt (9.1.0) - glog (0.3.5) - - hermes-engine (0.73.5): - - hermes-engine/Pre-built (= 0.73.5) - - hermes-engine/Pre-built (0.73.5) + - hermes-engine (0.75.3): + - hermes-engine/Pre-built (= 0.75.3) + - hermes-engine/Pre-built (0.75.3) - HMSegmentedControl (1.5.6) - Keycard (3.0.6): - CryptoSwift - secp256k1 - SSZipArchive - - libevent (2.1.12) - libwebp (1.2.4): - libwebp/demux (= 1.2.4) - libwebp/mux (= 1.2.4) @@ -30,310 +22,383 @@ PODS: - libwebp/mux (1.2.4): - libwebp/demux - libwebp/webp (1.2.4) - - 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 - - RCT-Folly/Futures (2022.05.16.00): - - boost + - RCTDeprecation (0.75.3) + - RCTRequired (0.75.3) + - RCTTypeSafety (0.75.3): + - FBLazyVector (= 0.75.3) + - RCTRequired (= 0.75.3) + - React-Core (= 0.75.3) + - React (0.75.3): + - React-Core (= 0.75.3) + - React-Core/DevSupport (= 0.75.3) + - React-Core/RCTWebSocket (= 0.75.3) + - React-RCTActionSheet (= 0.75.3) + - React-RCTAnimation (= 0.75.3) + - React-RCTBlob (= 0.75.3) + - React-RCTImage (= 0.75.3) + - React-RCTLinking (= 0.75.3) + - React-RCTNetwork (= 0.75.3) + - React-RCTSettings (= 0.75.3) + - React-RCTText (= 0.75.3) + - React-RCTVibration (= 0.75.3) + - React-callinvoker (0.75.3) + - React-Core (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.75.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/CoreModulesHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/Default (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/DevSupport (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.75.3) + - React-Core/RCTWebSocket (= 0.75.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTActionSheetHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTAnimationHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTBlobHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTImageHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTLinkingHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTNetworkHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTSettingsHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTTextHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTVibrationHeaders (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-Core/RCTWebSocket (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.75.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0) + - Yoga + - React-CoreModules (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) - - glog - - libevent - - RCTRequired (0.73.5) - - RCTTypeSafety (0.73.5): - - FBLazyVector (= 0.73.5) - - RCTRequired (= 0.73.5) - - React-Core (= 0.73.5) - - React (0.73.5): - - React-Core (= 0.73.5) - - React-Core/DevSupport (= 0.73.5) - - React-Core/RCTWebSocket (= 0.73.5) - - React-RCTActionSheet (= 0.73.5) - - React-RCTAnimation (= 0.73.5) - - React-RCTBlob (= 0.73.5) - - React-RCTImage (= 0.73.5) - - React-RCTLinking (= 0.73.5) - - React-RCTNetwork (= 0.73.5) - - React-RCTSettings (= 0.73.5) - - React-RCTText (= 0.73.5) - - React-RCTVibration (= 0.73.5) - - React-callinvoker (0.73.5) - - React-Codegen (0.73.5): - - DoubleConversion - - FBReactNativeSpec - - glog - - hermes-engine - - RCT-Folly - - RCTRequired - - RCTTypeSafety - - React-Core - - React-jsi - - React-jsiexecutor - - React-NativeModulesApple - - React-rncore - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - React-Core (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.5) - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/CoreModulesHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/Default (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/DevSupport (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.5) - - React-Core/RCTWebSocket (= 0.73.5) - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector (= 0.73.5) - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTActionSheetHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTAnimationHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTBlobHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTImageHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTLinkingHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTNetworkHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTSettingsHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTTextHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTVibrationHeaders (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-Core/RCTWebSocket (0.73.5): - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.5) - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.6.1) - - Yoga - - React-CoreModules (0.73.5): - - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.5) - - React-Codegen - - React-Core/CoreModulesHeaders (= 0.73.5) - - React-jsi (= 0.73.5) + - fmt (= 9.1.0) + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety (= 0.75.3) + - React-Core/CoreModulesHeaders (= 0.75.3) + - React-jsi (= 0.75.3) + - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.73.5) + - React-RCTImage (= 0.75.3) + - ReactCodegen - ReactCommon - - SocketRocket (= 0.6.1) - - React-cxxreact (0.73.5): - - boost (= 1.83.0) + - SocketRocket (= 0.7.0) + - React-cxxreact (0.75.3): + - boost - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.5) - - React-debug (= 0.73.5) - - React-jsi (= 0.73.5) - - React-jsinspector (= 0.73.5) - - React-logger (= 0.73.5) - - React-perflogger (= 0.73.5) - - React-runtimeexecutor (= 0.73.5) - - React-debug (0.73.5) - - React-Fabric (0.73.5): + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.75.3) + - React-debug (= 0.75.3) + - React-jsi (= 0.75.3) + - React-jsinspector + - React-logger (= 0.75.3) + - React-perflogger (= 0.75.3) + - React-runtimeexecutor (= 0.75.3) + - React-debug (0.75.3) + - React-defaultsnativemodule (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-domnativemodule + - React-Fabric + - React-featureflags + - React-featureflagsnativemodule + - React-graphics + - React-idlecallbacksnativemodule + - React-ImageManager + - React-microtasksnativemodule + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-domnativemodule (0.75.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricComponents + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.73.5) - - React-Fabric/attributedstring (= 0.73.5) - - React-Fabric/componentregistry (= 0.73.5) - - React-Fabric/componentregistrynative (= 0.73.5) - - React-Fabric/components (= 0.73.5) - - React-Fabric/core (= 0.73.5) - - React-Fabric/imagemanager (= 0.73.5) - - React-Fabric/leakchecker (= 0.73.5) - - React-Fabric/mounting (= 0.73.5) - - React-Fabric/scheduler (= 0.73.5) - - React-Fabric/telemetry (= 0.73.5) - - React-Fabric/templateprocessor (= 0.73.5) - - React-Fabric/textlayoutmanager (= 0.73.5) - - React-Fabric/uimanager (= 0.73.5) + - React-Fabric/animations (= 0.75.3) + - React-Fabric/attributedstring (= 0.75.3) + - React-Fabric/componentregistry (= 0.75.3) + - React-Fabric/componentregistrynative (= 0.75.3) + - React-Fabric/components (= 0.75.3) + - React-Fabric/core (= 0.75.3) + - React-Fabric/dom (= 0.75.3) + - React-Fabric/imagemanager (= 0.75.3) + - React-Fabric/leakchecker (= 0.75.3) + - React-Fabric/mounting (= 0.75.3) + - React-Fabric/observers (= 0.75.3) + - React-Fabric/scheduler (= 0.75.3) + - React-Fabric/telemetry (= 0.75.3) + - React-Fabric/templateprocessor (= 0.75.3) + - React-Fabric/uimanager (= 0.75.3) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -342,17 +407,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.73.5): + - React-Fabric/animations (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -361,17 +427,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.73.5): + - React-Fabric/attributedstring (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -380,17 +447,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.73.5): + - React-Fabric/componentregistry (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -399,17 +467,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.73.5): + - React-Fabric/componentregistrynative (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -418,28 +487,21 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.73.5): + - React-Fabric/components (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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.5) - - React-Fabric/components/legacyviewmanagerinterop (= 0.73.5) - - React-Fabric/components/modal (= 0.73.5) - - React-Fabric/components/rncore (= 0.73.5) - - React-Fabric/components/root (= 0.73.5) - - React-Fabric/components/safeareaview (= 0.73.5) - - React-Fabric/components/scrollview (= 0.73.5) - - React-Fabric/components/text (= 0.73.5) - - React-Fabric/components/textinput (= 0.73.5) - - React-Fabric/components/unimplementedview (= 0.73.5) - - React-Fabric/components/view (= 0.73.5) + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.3) + - React-Fabric/components/root (= 0.75.3) + - React-Fabric/components/view (= 0.75.3) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -448,17 +510,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/inputaccessory (0.73.5): + - React-Fabric/components/legacyviewmanagerinterop (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -467,17 +530,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.73.5): + - React-Fabric/components/root (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -486,169 +550,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/modal (0.73.5): + - React-Fabric/components/view (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/rncore (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/safeareaview (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/text (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/textinput (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/unimplementedview (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-cxxreact - - React-debug - - React-graphics - - React-jsi - - React-jsiexecutor - - React-logger - - React-rendererdebug - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.73.5): - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - 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-jsi - React-jsiexecutor @@ -658,17 +571,18 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.73.5): + - React-Fabric/core (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -677,17 +591,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.73.5): + - React-Fabric/dom (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -696,17 +611,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.73.5): + - React-Fabric/imagemanager (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -715,17 +631,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.73.5): + - React-Fabric/leakchecker (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -734,17 +651,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.73.5): + - React-Fabric/mounting (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -753,17 +671,19 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.73.5): + - React-Fabric/observers (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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.75.3) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -772,17 +692,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.73.5): + - React-Fabric/observers/events (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -791,18 +712,40 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/textlayoutmanager (0.73.5): + - React-Fabric/scheduler (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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/observers/events + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-performancetimeline + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/telemetry (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -811,17 +754,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.73.5): + - React-Fabric/templateprocessor (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - 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-jsi - React-jsiexecutor @@ -830,42 +774,419 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricImage (0.73.5): + - React-Fabric/uimanager (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.5) - - RCTTypeSafety (= 0.73.5) + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/uimanager/consistency (= 0.75.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager/consistency (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-FabricComponents (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-FabricComponents/components (= 0.75.3) + - React-FabricComponents/textlayoutmanager (= 0.75.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-FabricComponents/components/inputaccessory (= 0.75.3) + - React-FabricComponents/components/iostextinput (= 0.75.3) + - React-FabricComponents/components/modal (= 0.75.3) + - React-FabricComponents/components/rncore (= 0.75.3) + - React-FabricComponents/components/safeareaview (= 0.75.3) + - React-FabricComponents/components/scrollview (= 0.75.3) + - React-FabricComponents/components/text (= 0.75.3) + - React-FabricComponents/components/textinput (= 0.75.3) + - React-FabricComponents/components/unimplementedview (= 0.75.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/inputaccessory (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/iostextinput (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/modal (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/rncore (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/safeareaview (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/scrollview (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/text (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/textinput (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/unimplementedview (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/textlayoutmanager (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricImage (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired (= 0.75.3) + - RCTTypeSafety (= 0.75.3) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.73.5) + - React-jsiexecutor (= 0.75.3) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-graphics (0.73.5): - - glog - - RCT-Folly/Fabric (= 2022.05.16.00) - - React-Core/Default (= 0.73.5) - - React-utils - - React-hermes (0.73.5): + - React-featureflags (0.75.3) + - React-featureflagsnativemodule (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - RCT-Folly/Futures (= 2022.05.16.00) - - React-cxxreact (= 0.73.5) + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-graphics (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2024.01.01.00) - React-jsi - - React-jsiexecutor (= 0.73.5) - - React-jsinspector (= 0.73.5) - - React-perflogger (= 0.73.5) - - React-ImageManager (0.73.5): + - React-jsiexecutor + - React-utils + - React-hermes (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.75.3) + - React-jsi + - React-jsiexecutor (= 0.75.3) + - React-jsinspector + - React-perflogger (= 0.75.3) + - React-runtimeexecutor + - React-idlecallbacksnativemodule (0.75.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-ImageManager (0.75.3): - glog - RCT-Folly/Fabric - React-Core/Default @@ -874,33 +1195,63 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.73.5): - - RCT-Folly/Fabric (= 2022.05.16.00) + - React-jserrorhandler (0.75.3): + - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-Mapbuffer - - React-jsi (0.73.5): - - boost (= 1.83.0) + - React-jsi (0.75.3): + - boost - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-jsiexecutor (0.73.5): + - RCT-Folly (= 2024.01.01.00) + - React-jsiexecutor (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-cxxreact (= 0.73.5) - - React-jsi (= 0.73.5) - - React-perflogger (= 0.73.5) - - React-jsinspector (0.73.5) - - React-logger (0.73.5): + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.75.3) + - React-jsi (= 0.75.3) + - React-jsinspector + - React-perflogger (= 0.75.3) + - React-jsinspector (0.75.3): + - DoubleConversion - glog - - React-Mapbuffer (0.73.5): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-featureflags + - React-jsi + - React-runtimeexecutor (= 0.75.3) + - React-jsitracing (0.75.3): + - React-jsi + - React-logger (0.75.3): + - glog + - React-Mapbuffer (0.75.3): - glog - React-debug + - React-microtasksnativemodule (0.75.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-background-timer (2.2.0): - React - react-native-biometrics (3.0.1): @@ -908,20 +1259,71 @@ PODS: - react-native-blob-util (0.13.18): - React-Core - react-native-blur (4.4.1): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-cameraroll (7.5.2): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-compat (2.11.2): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core - - react-native-config (1.5.0): - - react-native-config/App (= 1.5.0) - - react-native-config/App (1.5.0): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-config (1.5.3): + - react-native-config/App (= 1.5.3) + - react-native-config/App (1.5.3): - React-Core - react-native-get-random-values (1.11.0): - React-Core @@ -946,185 +1348,278 @@ PODS: - React - react-native-webview (13.6.3): - React-Core - - React-nativeconfig (0.73.5) - - React-NativeModulesApple (0.73.5): + - React-nativeconfig (0.75.3) + - React-NativeModulesApple (0.75.3): - glog - hermes-engine - React-callinvoker - React-Core - React-cxxreact - React-jsi + - React-jsinspector - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.73.5) - - React-RCTActionSheet (0.73.5): - - React-Core/RCTActionSheetHeaders (= 0.73.5) - - React-RCTAnimation (0.73.5): - - RCT-Folly (= 2022.05.16.00) + - React-perflogger (0.75.3) + - React-performancetimeline (0.75.3): + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact + - React-RCTActionSheet (0.75.3): + - React-Core/RCTActionSheetHeaders (= 0.75.3) + - React-RCTAnimation (0.75.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.73.5): - - RCT-Folly + - React-RCTAppDelegate (0.75.3): + - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-CoreModules + - React-debug + - React-defaultsnativemodule + - React-Fabric + - React-featureflags + - React-graphics - React-hermes - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTImage - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore + - React-RuntimeHermes - React-runtimescheduler + - React-utils + - ReactCodegen - ReactCommon - - React-RCTBlob (0.73.5): + - React-RCTBlob (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Codegen + - 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.5): + - React-RCTFabric (0.75.3): - glog - hermes-engine - - 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-jsi + - React-jsinspector - React-nativeconfig + - React-performancetimeline - React-RCTImage - React-RCTText + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.73.5): - - RCT-Folly (= 2022.05.16.00) + - React-RCTImage (0.75.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTImageHeaders - React-jsi - React-NativeModulesApple - React-RCTNetwork + - ReactCodegen - ReactCommon - - React-RCTLinking (0.73.5): - - React-Codegen - - React-Core/RCTLinkingHeaders (= 0.73.5) - - React-jsi (= 0.73.5) + - React-RCTLinking (0.75.3): + - React-Core/RCTLinkingHeaders (= 0.75.3) + - React-jsi (= 0.75.3) - React-NativeModulesApple + - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.73.5) - - React-RCTNetwork (0.73.5): - - RCT-Folly (= 2022.05.16.00) + - ReactCommon/turbomodule/core (= 0.75.3) + - React-RCTNetwork (0.75.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTSettings (0.73.5): - - RCT-Folly (= 2022.05.16.00) + - React-RCTSettings (0.75.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTText (0.73.5): - - React-Core/RCTTextHeaders (= 0.73.5) + - React-RCTText (0.75.3): + - React-Core/RCTTextHeaders (= 0.75.3) - Yoga - - React-RCTVibration (0.73.5): - - RCT-Folly (= 2022.05.16.00) - - React-Codegen + - React-RCTVibration (0.75.3): + - RCT-Folly (= 2024.01.01.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-rendererdebug (0.73.5): + - React-rendererconsistency (0.75.3) + - React-rendererdebug (0.75.3): - 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.5) - - React-runtimeexecutor (0.73.5): - - React-jsi (= 0.73.5) - - React-runtimescheduler (0.73.5): + - React-rncore (0.75.3) + - React-RuntimeApple (0.75.3): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-callinvoker + - React-Core/Default + - React-CoreModules + - React-cxxreact + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RuntimeCore + - React-runtimeexecutor + - React-RuntimeHermes + - React-runtimescheduler + - React-utils + - React-RuntimeCore (0.75.3): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-cxxreact + - React-featureflags + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - React-runtimeexecutor (0.75.3): + - React-jsi (= 0.75.3) + - React-RuntimeHermes (0.75.3): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-featureflags + - React-hermes + - React-jsi + - React-jsinspector + - React-jsitracing + - React-nativeconfig + - React-RuntimeCore + - React-utils + - React-runtimescheduler (0.75.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) - React-callinvoker - React-cxxreact - React-debug + - React-featureflags - React-jsi + - React-rendererconsistency - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.73.5): + - React-utils (0.75.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) - React-debug - - ReactCommon (0.73.5): - - React-logger (= 0.73.5) - - ReactCommon/turbomodule (= 0.73.5) - - ReactCommon/turbomodule (0.73.5): + - React-jsi (= 0.75.3) + - ReactCodegen (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.5) - - React-cxxreact (= 0.73.5) - - React-jsi (= 0.73.5) - - React-logger (= 0.73.5) - - React-perflogger (= 0.73.5) - - ReactCommon/turbomodule/bridging (= 0.73.5) - - ReactCommon/turbomodule/core (= 0.73.5) - - ReactCommon/turbomodule/bridging (0.73.5): + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - ReactCommon (0.75.3): + - ReactCommon/turbomodule (= 0.75.3) + - ReactCommon/turbomodule (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.5) - - React-cxxreact (= 0.73.5) - - React-jsi (= 0.73.5) - - React-logger (= 0.73.5) - - React-perflogger (= 0.73.5) - - ReactCommon/turbomodule/core (0.73.5): + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.75.3) + - React-cxxreact (= 0.75.3) + - React-jsi (= 0.75.3) + - React-logger (= 0.75.3) + - React-perflogger (= 0.75.3) + - ReactCommon/turbomodule/bridging (= 0.75.3) + - ReactCommon/turbomodule/core (= 0.75.3) + - ReactCommon/turbomodule/bridging (0.75.3): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.5) - - React-cxxreact (= 0.73.5) - - React-jsi (= 0.73.5) - - React-logger (= 0.73.5) - - React-perflogger (= 0.73.5) + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.75.3) + - React-cxxreact (= 0.75.3) + - React-jsi (= 0.75.3) + - React-logger (= 0.75.3) + - React-perflogger (= 0.75.3) + - ReactCommon/turbomodule/core (0.75.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.75.3) + - React-cxxreact (= 0.75.3) + - React-debug (= 0.75.3) + - React-featureflags (= 0.75.3) + - React-jsi (= 0.75.3) + - React-logger (= 0.75.3) + - React-perflogger (= 0.75.3) + - React-utils (= 0.75.3) - ReactNativeAudioToolkit (2.0.3): - React - ReactNativeCameraKit (14.0.0-beta15): - React-Core - - ReactNativeNavigation (7.39.0): + - ReactNativeNavigation (7.40.1): - HMSegmentedControl - React-Core - React-CoreModules - React-RCTImage - React-RCTText - - ReactNativeNavigation/Core (= 7.39.0) - - ReactNativeNavigation/Core (7.39.0): + - ReactNativeNavigation/Core (= 7.40.1) + - ReactNativeNavigation/Core (7.40.1): - HMSegmentedControl - React-Core - React-CoreModules @@ -1145,9 +1640,26 @@ PODS: - RNFS (2.16.6): - React - RNGestureHandler (2.14.1): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNImageCropPicker (0.40.0): - React-Core - React-RCTImage @@ -1160,16 +1672,93 @@ PODS: - RNKeychain (8.1.2): - React-Core - RNLinearGradient (3.0.0-alpha.1): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNPermissions (4.1.5): - React-Core - - RNReanimated (3.6.1): + - RNReanimated (3.15.2): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - RNReanimated/reanimated (= 3.15.2) + - RNReanimated/worklets (= 3.15.2) + - Yoga + - RNReanimated/reanimated (3.15.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNReanimated/worklets (3.15.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNShare (10.0.2): - React-Core - RNStaticSafeAreaInsets (2.2.0): @@ -1183,43 +1772,50 @@ PODS: - libwebp (~> 1.0) - SDWebImage/Core (~> 5.10) - secp256k1 (0.1.6) - - SocketRocket (0.6.1) + - SocketRocket (0.7.0) - SSZipArchive (2.4.3) - TOCropViewController (2.6.1) - - Yoga (1.14.0) + - Yoga (0.0.0) DEPENDENCIES: - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) + - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - Keycard (from `https://github.com/status-im/Keycard.swift.git`) - - libevent (~> 2.1.12) - 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`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - - React-Codegen (from `build/generated/ios`) - React-Core (from `../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) + - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) + - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) - React-Fabric (from `../node_modules/react-native/ReactCommon`) + - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) - React-FabricImage (from `../node_modules/react-native/ReactCommon`) + - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) + - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) + - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - 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-background-timer (from `../node_modules/react-native-background-timer`) - react-native-biometrics (from `../node_modules/react-native-biometrics`) - react-native-blob-util (from `../node_modules/react-native-blob-util`) @@ -1241,6 +1837,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`) @@ -1252,11 +1849,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-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) + - ReactCodegen (from `build/generated/ios`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - "ReactNativeAudioToolkit (from `../node_modules/@react-native-community/audio-toolkit`)" - ReactNativeCameraKit (from `../node_modules/react-native-camera-kit`) @@ -1283,9 +1885,7 @@ DEPENDENCIES: SPEC REPOS: trunk: - CryptoSwift - - fmt - HMSegmentedControl - - libevent - libwebp - SDWebImage - SDWebImageWebPCoder @@ -1300,27 +1900,27 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 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" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-02-20-RNv0.73.5-18f99ace4213052c5e7cdbcd39ee9766cd5df7e4 + :tag: hermes-2024-08-15-RNv0.75.1-4b3bf912cc0f705b51b71ce1a5b8bd79b93a451b Keycard: :git: https://github.com/status-im/Keycard.swift.git 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" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: :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: @@ -1329,14 +1929,26 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/cxxreact" React-debug: :path: "../node_modules/react-native/ReactCommon/react/debug" + React-defaultsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" + React-domnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" React-Fabric: :path: "../node_modules/react-native/ReactCommon" + React-FabricComponents: + :path: "../node_modules/react-native/ReactCommon" React-FabricImage: :path: "../node_modules/react-native/ReactCommon" + React-featureflags: + :path: "../node_modules/react-native/ReactCommon/react/featureflags" + React-featureflagsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" React-graphics: :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" React-hermes: :path: "../node_modules/react-native/ReactCommon/hermes" + React-idlecallbacksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" React-jserrorhandler: @@ -1347,10 +1959,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-background-timer: :path: "../node_modules/react-native-background-timer" react-native-biometrics: @@ -1393,6 +2009,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: @@ -1415,16 +2033,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-RuntimeHermes: + :path: "../node_modules/react-native/ReactCommon/react/runtime" React-runtimescheduler: :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" React-utils: :path: "../node_modules/react-native/ReactCommon/react/utils" + ReactCodegen: + :path: build/generated/ios ReactCommon: :path: "../node_modules/react-native/ReactCommon" ReactNativeAudioToolkit: @@ -1479,46 +2107,52 @@ CHECKOUT OPTIONS: :submodules: true SPEC CHECKSUMS: - boost: d3f49c53809116a5d38da093a8aa78bf551aed09 + boost: 4cb898d0bf20404aab1850c656dcea009429d6c1 CryptoSwift: c4f2debceb38bf44c80659afe009f71e23e4a082 - DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953 - FBLazyVector: 56e0e498dbb513b96c40bac6284729ba4e62672d - FBReactNativeSpec: 146c741a3f40361f6bc13a4ba284678cbedb5881 - fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 - hermes-engine: 1d1835b2cc54c381909d94d1b3c8e0a2f1a94a0e + DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 + FBLazyVector: 7b438dceb9f904bd85ca3c31d64cce32a035472b + fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 + glog: 69ef571f3de08433d766d614c73a9838a06bf7eb + hermes-engine: 8d2103d6c0176779aea4e25df6bb1410f9946680 HMSegmentedControl: 34c1f54d822d8308e7b24f5d901ec674dfa31352 Keycard: ac6df4d91525c3c82635ac24d4ddd9a80aca5fc8 - libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 libwebp: f62cb61d0a484ba548448a4bd52aabf150ff6eef - RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0 - RCTRequired: 2544c0f1081a5fa12e108bb8cb40e5f4581ccd87 - RCTTypeSafety: 50efabe2b115c11ed03fbf3fd79e2f163ddb5d7c - React: 84221d5e0ce297bc57c4b6af539a62d812d89f10 - React-callinvoker: 5d17577ecc7f784535ebedf3aad4bcbf8f4b5117 - React-Codegen: 857e7984fc277aadde2a7a427288b6918ece7b2b - React-Core: 8e782e7e24c7843871a0d9c3c8d7c5b3ebb73832 - React-CoreModules: 7875ee247e3e6e0e683b52cd1cdda1b71618bd55 - React-cxxreact: 788cd771c6e94d44f8d472fdfae89b67226067ea - React-debug: 55c7f2b8463bfe85567c9f4ede904085601130c9 - React-Fabric: 8cb43853496bb8032420edf62e7281c53109e682 - React-FabricImage: fbdc0ef7ed58a87c77600017c19a751932de3e47 - React-graphics: dc8307b615f14e13f1081ac23ea66697808bcd29 - React-hermes: d9acaa4ebf2118d9bd8a541af8c620c467b356b6 - React-ImageManager: 2a97ddc9b1f459121697d629cfbe69712997d76f - React-jserrorhandler: b97b16674258ccaeff5a70047a097a140e76d12d - React-jsi: 1d59d0a148c76641ac577729e0268bafa494152c - React-jsiexecutor: 262b66928ad948491d03fd328bb5b822cce94647 - React-jsinspector: 32db5e364bcae8fca8cdf8891830636275add0c5 - React-logger: 0331362115f0f5b392bd7ed14636d1a3ea612479 - React-Mapbuffer: 7c35cd53a22d0be04d3f26f7881c7fb7dd230216 + RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740 + RCTDeprecation: 4191f6e64b72d9743f6fe1a8a16e89e868f5e9e7 + RCTRequired: 9bb589570f2bb3abc6518761e3fd1ad9b7f7f06c + RCTTypeSafety: 1c1a8741c86df0a0ac1a99cf3fb0e29eedbc2c88 + React: b6810a201ee11e69ae8bfd4eb4aaab86610600bf + React-callinvoker: d6c7898b63e6a2d37bc308f17c05be0ba3630b10 + React-Core: 2fc97900b68e7568233698c6113ca9d64ed8b520 + React-CoreModules: 2d68c251bc4080028f2835fa47504e8f20669a21 + React-cxxreact: 5f233f8ac7ea4772e49462e0ab2b0a15a4f80ab7 + React-debug: fd0ed8ecd5f8a23c7daf5ceaca8aa722a4d083fd + React-defaultsnativemodule: 10f0f8bc38d8dc7d2273572cd85ed0b71298ecdd + React-domnativemodule: bfef3dda59e7030b498d0d78628f4adf414ab8e4 + React-Fabric: 3d0f5e2735d2f77a897ee684edeff7bb0e061919 + React-FabricComponents: 68032a85a3c25c9c8d6ce676d8af9a85e2370f24 + React-FabricImage: f8ac2df576703097b5b2f8d972b162cdca855aa3 + React-featureflags: cf78861db9318ae29982fa8953c92d31b276c9ac + React-featureflagsnativemodule: d04eb5c3f0ac33fe70b060d97e8649bfd69c5f1e + React-graphics: 7572851bca7242416b648c45d6af87d93d29281e + React-hermes: 95c27801c60615345ee6256eafa6d597ce983b8b + React-idlecallbacksnativemodule: f5f0b760ec2739b30e315e1afee3dd3a5a93c3b6 + React-ImageManager: aedf54d34d4475c66f4c3da6b8359b95bee904e4 + React-jserrorhandler: 0c8949672a00f2a502c767350e591e3ec3d82fb3 + React-jsi: d77bb442a4b0849063f2bd22d3c1fa71918713b7 + React-jsiexecutor: 3b9c6334b7b0f42d4c4aae950132766e63a7809f + React-jsinspector: e1bb5816869507527c30213cc1ed60eae9e3e9c4 + React-jsitracing: 3935b092f85bb1e53b8cf8a00f572413648af46b + React-logger: 4072f39df335ca443932e0ccece41fbeb5ca8404 + React-Mapbuffer: 714f2fae68edcabfc332b754e9fbaa8cfc68fdd4 + React-microtasksnativemodule: 4943ad8f99be8ccf5a63329fa7d269816609df9e react-native-background-timer: 1f7d560647b40e6a60b01c452ba29c54bf581fc4 react-native-biometrics: 352e5a794bfffc46a0c86725ea7dc62deb085bdc react-native-blob-util: 600972b1782380a5a7d5db61a3817ea32349dae9 - react-native-blur: b2b140d3d65077a1d5d26be62d9415f895592344 - react-native-cameraroll: af8eec1e585d053ff485d98ec837f9a8a11b5745 - react-native-compat: 3af9add14d349701306d3d052638435f6795ac2c - react-native-config: 5330c8258265c1e5fdb8c009d2cabd6badd96727 + react-native-blur: a1bf334589f44658a58a859b1f3defe28e367fcf + react-native-cameraroll: 9d02d101b35f4bc09d90b0e13b5a9d39c4d3be63 + react-native-compat: f91f1b40a4d732a545833e8b0473d73e32916902 + react-native-config: 8f7283449bbb048902f4e764affbbf24504454af react-native-get-random-values: 21325b2244dfa6b58878f51f9aa42821e7ba3d06 react-native-hole-view: 6935448993bac79f2b5a4ad7e9741094cf810679 react-native-image-resizer: 2f1577efa3bc762597681f530c8e8d05ce0ceeb3 @@ -1530,52 +2164,58 @@ SPEC CHECKSUMS: react-native-status: 21f75d492fd311dc111303da38a7a2b23a8a8466 react-native-status-keycard: f1c1227b2d5984c10fb44db68e4bfd2937f31e98 react-native-webview: 88293a0f23eca8465c0433c023ec632930e644d0 - React-nativeconfig: 1166714a4f7ea57a0df5c2cb44fbc70f98d580f9 - React-NativeModulesApple: 726664e9829eb5eed8170241000e46ead269a05f - React-perflogger: 0dd9f1725d55f8264b81efadd373fe1d9cca7dc2 - React-RCTActionSheet: 05656d2102b0d0a2676d58bad4d80106af5367b2 - React-RCTAnimation: 6c66beae98730fb7615df28caf651e295f2401e5 - React-RCTAppDelegate: 891b80c596fffcb3f90431739495d606a9a0d610 - React-RCTBlob: 8ecee445ec5fa9ed8a8621a136183c1045165100 - React-RCTFabric: f291e06bc63fef26cdd105537bae5c6a8d3bdca8 - React-RCTImage: 585b16465146cb839da02f3179ce7cb19d332642 - React-RCTLinking: 09ba11f7df62946e7ddca1b51aa3bf47b230e008 - React-RCTNetwork: e070f8d2fca60f1e9571936ce54d165e77129e76 - React-RCTSettings: b08c7ff191f0a5421aab198ea1086c9a8d513bde - React-RCTText: f6cc5a3cf0f1a4f3d1256657dca1025e4cfe45e0 - React-RCTVibration: d9948962139f9924ef87f23ab240e045e496213b - React-rendererdebug: ee05480666415f7a76e6cf0a7a50363423f44809 - React-rncore: 010565651e9cf2e4fac9517a348446789dd55e01 - React-runtimeexecutor: 56f562a608056fb0c1711d900a992e26f375d817 - React-runtimescheduler: 814b644a5f456c7df1fba7bcd9914707152527c6 - React-utils: 987a4526a2fc0acdfaf87888adfe0bf9d0452066 - ReactCommon: 2947b0bffd82ea0e58ca7928881152d4c6dae9af + React-nativeconfig: 4a9543185905fe41014c06776bf126083795aed9 + React-NativeModulesApple: 0506da59fc40d2e1e6e12a233db5e81c46face27 + React-perflogger: 3bbb82f18e9ac29a1a6931568e99d6305ef4403b + React-performancetimeline: d15a723422ed500f47cb271f3175abbeb217f5ba + React-RCTActionSheet: cb2b38a53d03ec22f1159c89667b86c2c490d92d + React-RCTAnimation: 6836c87c7364f471e9077fda80b7349bc674be33 + React-RCTAppDelegate: 2f11edfa7302451c792591f9a7838ca86cdcec34 + React-RCTBlob: 516dbbd38397f5013394fdd1cc65408cc82e37a1 + React-RCTFabric: b281a52c2b9726b0c64880e1535f2100013d5f7c + React-RCTImage: 1b2c2c1716db859ffff2d7a06a30b0ec5c677fc5 + React-RCTLinking: 59c07577767e705b0ab95d11e5ad74c61bf2a022 + React-RCTNetwork: f9a827e7d6bc428e0d99cd1fbe0427854354b8c1 + React-RCTSettings: 614252fecc24840f61590c016aca1664a52cfb0f + React-RCTText: 424549f68867265aa25969f50e7b9bf8bd70ae55 + React-RCTVibration: c8d156e6cce18f00b0310db7670fa997c7cda407 + React-rendererconsistency: 993f54bb0df644df2922cd87ea55238d510d992b + React-rendererdebug: 7a8cbb632b68d666ad0fc01b3f9dc1a1bcc9a9f9 + React-rncore: 1df26fe0ae861c599f9f2896f45e8834ef4b85f9 + React-RuntimeApple: b5b14b09e3be4058f9fe7ab4925e1ee343f03310 + React-RuntimeCore: 2073fb33da2aec6ce6c1c9d3d53898ed1f1d806d + React-runtimeexecutor: 9a668b94ad5d93755443311715bd57680330286a + React-RuntimeHermes: b37c62718d6920ac2958a0052bdc1b01aca842b8 + React-runtimescheduler: e25750a18cbb7469e0513f1ace834d14e8c1a202 + React-utils: f2afa6acd905ca2ce7bb8ffb4a22f7f8a12534e8 + ReactCodegen: ff95a93d5ab5d9b2551571886271478eaa168565 + ReactCommon: 289214026502e6a93484f4a46bcc0efa4f3f2864 ReactNativeAudioToolkit: de9610f323e855ac6574be8c99621f3d57c5df06 ReactNativeCameraKit: 71343efc1256720184ce980f164c7eedb78d5c16 - ReactNativeNavigation: 679d8c8bf3b8ae98d285bce810964d10da85dbdb + ReactNativeNavigation: 84cfcceb62947491beda20b96c5999c15ff5b959 RNCAsyncStorage: c913ede1fa163a71cea118ed4670bbaaa4b511bb RNCClipboard: 60fed4b71560d7bfe40e9d35dea9762b024da86d RNCMaskedView: 71fc32d971f03b7f03d6ab6b86b730c4ee64f5b6 RNCPushNotificationIOS: c145c6253ea016e5efeff604f2720736b4a596f7 RNFastImage: 1f2cab428712a4baaf78d6169eaec7f622556dd7 RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df - RNGestureHandler: 15c6ef51acba34c49ff03003806cf5dd6098f383 + RNGestureHandler: 2b5300895ed76521a1678575d13015c9013c98cd RNImageCropPicker: 486e2f7e2b0461ce24321f751410dce1b3b49e6d RNKeychain: a65256b6ca6ba6976132cc4124b238a5b13b3d9c - RNLinearGradient: ccaaebce083b54180da61d992e7fa56abfe000d6 + RNLinearGradient: 1f5bd06e1d04c976a5b5670026bef5f00a2544f8 RNPermissions: 08e619529cced22695f4b6d0efcc0a233e278903 - RNReanimated: dee37576492f1a375017515f5c77e66e5eec696b + RNReanimated: ece067b779e0d6c7887c6bb80d381d0a0efd43c9 RNShare: 859ff710211285676b0bcedd156c12437ea1d564 RNStaticSafeAreaInsets: 055ddbf5e476321720457cdaeec0ff2ba40ec1b8 RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9 SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d secp256k1: f61d67e6fdcb85fd727acf1bf35ace6036db540c - SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 + SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d SSZipArchive: fe6a26b2a54d5a0890f2567b5cc6de5caa600aef TOCropViewController: edfd4f25713d56905ad1e0b9f5be3fbe0f59c863 - Yoga: a716eea57d0d3430219c0a5a233e1e93ee931eb7 + Yoga: 4ef80d96a5534f0e01b3055f17d1e19a9fc61b63 -PODFILE CHECKSUM: 5dd4a5279260d370bcdf016158c825ceb404ee06 +PODFILE CHECKSUM: b10350763fc21c6797ebdd71df447fb7cb4fac66 COCOAPODS: 1.15.2 diff --git a/ios/StatusIm/AppDelegate.mm b/ios/StatusIm/AppDelegate.mm index 1bab746a97..8a05ade616 100644 --- a/ios/StatusIm/AppDelegate.mm +++ b/ios/StatusIm/AppDelegate.mm @@ -105,10 +105,10 @@ extern "C" NSString* StatusgoImageServerTLSCert(); - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge { - return [self getBundleURL]; + return [self bundleURL]; } -- (NSURL *)getBundleURL +- (NSURL *)bundleURL { #if DEBUG return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; diff --git a/ios/StatusIm/Info.plist b/ios/StatusIm/Info.plist index b4325f88ab..34ecfe70b3 100644 --- a/ios/StatusIm/Info.plist +++ b/ios/StatusIm/Info.plist @@ -117,7 +117,7 @@ launch-image-universal UIRequiredDeviceCapabilities - armv7 + arm64 UISupportedInterfaceOrientations diff --git a/ios/StatusIm/PrivacyInfo.xcprivacy b/ios/StatusIm/PrivacyInfo.xcprivacy new file mode 100644 index 0000000000..bad3276156 --- /dev/null +++ b/ios/StatusIm/PrivacyInfo.xcprivacy @@ -0,0 +1,37 @@ + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + + + diff --git a/metro.config.js b/metro.config.js index dccedbf8d0..14ff1aaa1b 100644 --- a/metro.config.js +++ b/metro.config.js @@ -1,7 +1,7 @@ const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config'); /** * Metro configuration - * https://facebook.github.io/metro/docs/configuration + * https://reactnative.dev/docs/metro * * @type {import('metro-config').MetroConfig} */ diff --git a/nix/deps/gradle/deps.json b/nix/deps/gradle/deps.json index a667c4692c..742aec0931 100644 --- a/nix/deps/gradle/deps.json +++ b/nix/deps/gradle/deps.json @@ -1274,6 +1274,21 @@ } }, + { + "path": "androidx/databinding/databinding-common/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "databinding-common-8.5.0.pom": { + "sha1": "7097b838228c32ccffaa1c2232d938d3824bee84", + "sha256": "sha256-vyLBcnjsNFTglncffBemrGFeXGMJN2lugrbt4RkxNNk=" + }, + "databinding-common-8.5.0.jar": { + "sha1": "2be3530b78477835e69dce953b17adc1dbc5c6fa", + "sha256": "sha256-Zsq4JjnawPbCQzRkwJOwdNYIxLuIfsOKm4vErJgSZzI=" + } + } + }, + { "path": "androidx/databinding/databinding-compiler-common/3.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -1398,6 +1413,21 @@ } }, + { + "path": "androidx/databinding/databinding-compiler-common/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "databinding-compiler-common-8.5.0.pom": { + "sha1": "70bdf81b187a27f50f9c8d95a29a4fe4a9ab16e7", + "sha256": "sha256-6tZOMxXykHw/Xm5QpqblYMKwBKpn+siZy/RGdhwgjXw=" + }, + "databinding-compiler-common-8.5.0.jar": { + "sha1": "758507ab4158d4a0ac3daf4dcd27d8984b4969f2", + "sha256": "sha256-D95SjOQS2EvRKJDCv/mMRlZEamvYNA+Azpy/SLa00WA=" + } + } + }, + { "path": "androidx/documentfile/documentfile/1.0.0", "repo": "https://dl.google.com/dl/android/maven2", @@ -3096,6 +3126,21 @@ } }, + { + "path": "com/android/databinding/baseLibrary/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "baseLibrary-8.5.0.pom": { + "sha1": "15504f92f47017a64e1d701ad6f7ddb42c3db88c", + "sha256": "sha256-9gnktHQ+jt7FFLxdhNeKvDJEeIF+s91Snh5zHaQWABk=" + }, + "baseLibrary-8.5.0.jar": { + "sha1": "7e7399239e52d4069896277615e005add7ae8e5a", + "sha256": "sha256-eUETcJ2rIbBsJis3lec8twj7rK5hcV80Nh4a9iN6GHA=" + } + } + }, + { "path": "com/android/databinding/compilerCommon/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -3190,6 +3235,21 @@ } }, + { + "path": "com/android/signflinger/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "signflinger-8.5.0.pom": { + "sha1": "465d3469b80ddc59b7f75df8a402cc22303778ea", + "sha256": "sha256-paQ+BuSrK994/cgl4ZqU8Ik36ylBwqtmhn/vdpYZGNU=" + }, + "signflinger-8.5.0.jar": { + "sha1": "13f035dd8e7e470ff8f3216a0b46333187f26df5", + "sha256": "sha256-wdyixoNjTuGilCmPnHF5V4r2qG4IC9xA+WGRW8XIFC8=" + } + } + }, + { "path": "com/android/support/animated-vector-drawable/26.0.2", "repo": "https://dl.google.com/dl/android/maven2", @@ -3614,6 +3674,21 @@ } }, + { + "path": "com/android/tools/analytics-library/crash/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "crash-31.5.0.pom": { + "sha1": "5b46099309bf86d33bf9dae518d7c87d4317e804", + "sha256": "sha256-ilWqeZYcYo/88l+I1/dgAdvt97eRA3Da9HuMTKdSGJ8=" + }, + "crash-31.5.0.jar": { + "sha1": "669e0dbea9c0612c1752365738497bea9627a6b9", + "sha256": "sha256-LFwmQglnZ1wHS8cUCDH+O/9burx/u8CLop/cPq3MlRA=" + } + } + }, + { "path": "com/android/tools/analytics-library/protos/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -3753,6 +3828,21 @@ } }, + { + "path": "com/android/tools/analytics-library/protos/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "protos-31.5.0.pom": { + "sha1": "9361fc7a99931074ab3e0c859eacaddd959769c5", + "sha256": "sha256-vpY/zK8eSlp/Gw0HEkFfo287/mG/iH5O3OHcw8y6FWY=" + }, + "protos-31.5.0.jar": { + "sha1": "1a2cbde82a6fa493d101a97fd4d49718d75d383d", + "sha256": "sha256-V3q+oRr9/9FGiKpfsOq84Xx0vP+GykVXOEhL2Rr6z7Y=" + } + } + }, + { "path": "com/android/tools/analytics-library/shared/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -3892,6 +3982,21 @@ } }, + { + "path": "com/android/tools/analytics-library/shared/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "shared-31.5.0.pom": { + "sha1": "48c77967bac48718fd10634cf06bf596faf0f379", + "sha256": "sha256-+wF59eX4jtdYSe5o/wFL3S+A1p6LTP+YDIjS/LlWR/0=" + }, + "shared-31.5.0.jar": { + "sha1": "2323a99da4a13bab06e542e196a22f7f8dc3cc40", + "sha256": "sha256-Mk/EmDsURpqN8Z+lwswb09H9cpVUgl85EtjfrYuHNNM=" + } + } + }, + { "path": "com/android/tools/analytics-library/tracker/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -4031,6 +4136,21 @@ } }, + { + "path": "com/android/tools/analytics-library/tracker/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "tracker-31.5.0.pom": { + "sha1": "669a4ec5cff19b2da801609dfcc74e45f3380759", + "sha256": "sha256-HFnIpO1lgRFwJbBigRV53D4YgXqcbO+DUDkag4BRhp4=" + }, + "tracker-31.5.0.jar": { + "sha1": "369d37e578f8468b035ae74190aee44c9c05622c", + "sha256": "sha256-VCxsAHCn32JUBQUy8qFKqdtVU6D8LLID/bp7chUj5xY=" + } + } + }, + { "path": "com/android/tools/annotations/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -4170,6 +4290,21 @@ } }, + { + "path": "com/android/tools/annotations/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "annotations-31.5.0.pom": { + "sha1": "40b47e7013c58a708e51d7875c5ac8b5e42abf3f", + "sha256": "sha256-NyzTNjAJ5Uqui5b+LnaBI0kTrpZsaWwOWwZdP2KK80I=" + }, + "annotations-31.5.0.jar": { + "sha1": "1946e7f75bc1615b4abfc0f83899934dfcbdf1fc", + "sha256": "sha256-slmV+nsiDTX7uOMl3wcfgpFpG/uv+XNMmOOPRewqc+4=" + } + } + }, + { "path": "com/android/tools/build/aapt2-proto/0.3.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -4344,6 +4479,25 @@ } }, + { + "path": "com/android/tools/build/aapt2-proto/8.5.0-11315950", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "aapt2-proto-8.5.0-11315950.pom": { + "sha1": "2863dc0f8aae0fe3ddebd439c21eae5fb48439b7", + "sha256": "sha256-SaD5GTFxM6AYlbC4v9Na/WMj+533wVRO37MUmAAIHLs=" + }, + "aapt2-proto-8.5.0-11315950.jar": { + "sha1": "07bec8e797b786cdfaa8f0fbe033c7b77fa48064", + "sha256": "sha256-sMc3vFsU3CWzodU1WbZh/vluUz/DRkCypRSzUYtTwGw=" + }, + "aapt2-proto-8.5.0-11315950.module": { + "sha1": "432f7a5f5e2e1d0c84f3e4056c829bcd8ac95601", + "sha256": "sha256-/fzqxyJ7mcbFP6LXgbRDXmstre39NdOyUskfyHwAJaU=" + } + } + }, + { "path": "com/android/tools/build/aapt2/8.1.1-10154469", "repo": "https://dl.google.com/dl/android/maven2", @@ -4458,6 +4612,25 @@ } }, + { + "path": "com/android/tools/build/aaptcompiler/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "aaptcompiler-8.5.0.pom": { + "sha1": "49752748de3f634505d1a0d26f06ffb6f88ab1ce", + "sha256": "sha256-YmnS3afm8eT/qQeAF0z8sElk2XIbFpq6yz6pq7Qjv4k=" + }, + "aaptcompiler-8.5.0.jar": { + "sha1": "f6d9db27cf289f6426d4559297536e0ff1f778b9", + "sha256": "sha256-Ft4oRT7AeHm+7Mt8E8ns3nzRzspXgUjbNit/iM89sxE=" + }, + "aaptcompiler-8.5.0.module": { + "sha1": "d967366e17a219ac8fb3b8f426fa4552b5cf3f5e", + "sha256": "sha256-YK0sjD0+Tt/+lcPOYEukacaRt1Em6Aw8y56Gzh9QtrA=" + } + } + }, + { "path": "com/android/tools/build/apksig/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -4597,6 +4770,21 @@ } }, + { + "path": "com/android/tools/build/apksig/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "apksig-8.5.0.pom": { + "sha1": "6ee6f282eff916d0a1f9343e78fc9d859f4d4c21", + "sha256": "sha256-BKVnnqqTynlJesCJst5j9gDlBBUovGlKI1RwhSdD6do=" + }, + "apksig-8.5.0.jar": { + "sha1": "d51ecbc4a5b7a2c7832586a4dde18f61d92810a4", + "sha256": "sha256-xPb98hSEkClvQip+s3ZH6hHRw7AvHyNJwzziV/PCmx8=" + } + } + }, + { "path": "com/android/tools/build/apkzlib/3.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -4721,6 +4909,21 @@ } }, + { + "path": "com/android/tools/build/apkzlib/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "apkzlib-8.5.0.pom": { + "sha1": "3ae5dad1ba7ef1c230de6efa23722396c2ada339", + "sha256": "sha256-kUJ9j6JgoJoV0DLZn/hiu4fJ9HRwWIOF3fKgpAz2KYU=" + }, + "apkzlib-8.5.0.jar": { + "sha1": "d656b52facbb301b8bdc1e40a5ae008bcf335fe9", + "sha256": "sha256-HBpn1vTxhkJ6wWbrqg3YZ/WV1RRPySUlKwX/udGhVrc=" + } + } + }, + { "path": "com/android/tools/build/builder-model/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -4872,6 +5075,25 @@ } }, + { + "path": "com/android/tools/build/builder-model/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "builder-model-8.5.0.pom": { + "sha1": "ce5f92dd9716ef8c5f435ea54831a992771e0f55", + "sha256": "sha256-tii9uBKl4WllWTOKL5l6U4W1Wjll6Po4YnWS8Vf6hwg=" + }, + "builder-model-8.5.0.jar": { + "sha1": "370d4f5f5e9620fa7631c442309c424400d2942a", + "sha256": "sha256-oStKh2yXG2Pt5r237G13BuitgHxfwJTGk718G7e/i34=" + }, + "builder-model-8.5.0.module": { + "sha1": "244c41451f8ca1aa5acc1fbf4f1c558ec8a86b68", + "sha256": "sha256-U3ntDa9XHI6Uq0itnzTUwYpJnfuc+GzsvWnJu/CzWd8=" + } + } + }, + { "path": "com/android/tools/build/builder-test-api/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -5023,6 +5245,25 @@ } }, + { + "path": "com/android/tools/build/builder-test-api/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "builder-test-api-8.5.0.pom": { + "sha1": "ed7e1d7d1fa995f289af2e916bcf90d677b45ca0", + "sha256": "sha256-ugdWccDBFL/lgUeYz0+lCYKwBrMnox4eeQjqJ2mTI2g=" + }, + "builder-test-api-8.5.0.jar": { + "sha1": "ff6a56bcb108d09a8d396c6447d4f65732a3a1d2", + "sha256": "sha256-pHacJcpbVAYS0+DoglQUXFndBTx2wvEGvD+cvAGVSq4=" + }, + "builder-test-api-8.5.0.module": { + "sha1": "d040dfcdc7697d0c332cac012cb585553807e6ac", + "sha256": "sha256-6A5u2O7D1T5ALIpk2mWoxQwXDXZxAtnZSet/T948l8c=" + } + } + }, + { "path": "com/android/tools/build/builder/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -5174,6 +5415,25 @@ } }, + { + "path": "com/android/tools/build/builder/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "builder-8.5.0.pom": { + "sha1": "463e61abef9ae45180547b13f336cc659566e876", + "sha256": "sha256-PJ00cYLIxcKMtqOIMQV6pF1CzSfq1wdWUIzvFMEJNNQ=" + }, + "builder-8.5.0.jar": { + "sha1": "b67b3f37071bee0d38a4b1e7ce5b9da9ba9ca139", + "sha256": "sha256-BspFgm3UlgTcBbWYbeouWZd7Ac+6P9R25nKPkG52+s8=" + }, + "builder-8.5.0.module": { + "sha1": "9a29ae2632f052e64417c2dcd47da1ff1e58035e", + "sha256": "sha256-YmE/+Rz23MfNCzXJA5vqmjOUn1XFoAFhTjfCBOJcijY=" + } + } + }, + { "path": "com/android/tools/build/bundletool/0.5.0", "repo": "https://dl.google.com/dl/android/maven2", @@ -5279,6 +5539,21 @@ } }, + { + "path": "com/android/tools/build/bundletool/1.16.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "bundletool-1.16.0.pom": { + "sha1": "6f943926fef425d059cd1e7257768ec77a398de0", + "sha256": "sha256-8uiq1EVaQjckYtXhiiaXPWdXEXmmdX84JfIn6Rry8ts=" + }, + "bundletool-1.16.0.jar": { + "sha1": "88e6c67d315e7d2a860bb00b1bd93914f2c4fd33", + "sha256": "sha256-HqK/UnS7rHo7tWGFIdL6EfsE6QDjOopkYCnsYzL8CMg=" + } + } + }, + { "path": "com/android/tools/build/gradle-api/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -5430,6 +5705,25 @@ } }, + { + "path": "com/android/tools/build/gradle-api/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "gradle-api-8.5.0.pom": { + "sha1": "a60df1d3c2cb2ede60fd24f8a8af9078b0eb0d5b", + "sha256": "sha256-VWp1D7+KMwfCNfv2Ku64zEM0U4ItiQGYSkqJQxJo1QA=" + }, + "gradle-api-8.5.0.jar": { + "sha1": "556cacdea68f119d7c435dd231d6b155e8b88f07", + "sha256": "sha256-37xi6ha1Hk06hBfrCvScfgUWcE4NYKAPfArIyhPhDbQ=" + }, + "gradle-api-8.5.0.module": { + "sha1": "1b37c88217e85a5f585ac0ebbd7d167cf8ee84f5", + "sha256": "sha256-IBiXItjZURHN5ZwdjBu8d2iRrBpd4JQhFWueHAU70aI=" + } + } + }, + { "path": "com/android/tools/build/gradle-core/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -5464,6 +5758,25 @@ } }, + { + "path": "com/android/tools/build/gradle-settings-api/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "gradle-settings-api-8.5.0.pom": { + "sha1": "c6ec47188b27d4880186b356872d2ef3534afc1b", + "sha256": "sha256-Q037Jq0E+PpxjKVbdRCKXZLdiBcGRgXaYhc0hnZ5SnQ=" + }, + "gradle-settings-api-8.5.0.jar": { + "sha1": "7976ce7f09a80bfb0727d6bcb04868d99f84c1df", + "sha256": "sha256-We2eJzhmvdW+2p1qo70v3Z6JJtNrM2FKswkmEob4F/k=" + }, + "gradle-settings-api-8.5.0.module": { + "sha1": "f4a13f8ac6c82161e2c9b9df2757f42232f01244", + "sha256": "sha256-XTNmx7dXy9codxFDnkuXomQNl9AT4g1BCIezyY1Scm8=" + } + } + }, + { "path": "com/android/tools/build/gradle/3.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -5615,6 +5928,25 @@ } }, + { + "path": "com/android/tools/build/gradle/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "gradle-8.5.0.pom": { + "sha1": "2fc81c459bf6388509aa2ed63f6d49c54bc71ab1", + "sha256": "sha256-RdiIqFyZrmgy6GyC8y9wNr1vWikGHD1y2aM/hfBKa/A=" + }, + "gradle-8.5.0.jar": { + "sha1": "6213739508088918191d45f66824b05b49e996db", + "sha256": "sha256-Doo+KF+QFbr0mQ+6Eji7zt3wXiVZZ8PVzsFbXetSICw=" + }, + "gradle-8.5.0.module": { + "sha1": "85ee2d55ee74070bad4f1a36e5a7b1b1372300b3", + "sha256": "sha256-IGY5fIw3ltuOC2/F/nHNma5F7O8YTUsajpneZI2w2UI=" + } + } + }, + { "path": "com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10", "repo": "https://dl.google.com/dl/android/maven2", @@ -5894,6 +6226,25 @@ } }, + { + "path": "com/android/tools/build/manifest-merger/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "manifest-merger-31.5.0.pom": { + "sha1": "09bc1959fb32490b4dc0c43ceedbe4bf3f77bdc4", + "sha256": "sha256-Ykh6kkxxzqX5HebvIhMlGw+FmQHQzfMNJkQoD4Zz7yc=" + }, + "manifest-merger-31.5.0.jar": { + "sha1": "690c32078aec5b6c99f01756f1b329392a638bd2", + "sha256": "sha256-w9f/fMhzM8H+NLUxW/8UqF3t5r+wYNkrpIOpn385pKQ=" + }, + "manifest-merger-31.5.0.module": { + "sha1": "40101edd8b37485268204455f47cfb31eefee6e2", + "sha256": "sha256-QNtS8pFYtaFtwUXO8Cs0aM67wWJui1o4Bf3FoKl5PA0=" + } + } + }, + { "path": "com/android/tools/common/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6033,6 +6384,21 @@ } }, + { + "path": "com/android/tools/common/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "common-31.5.0.pom": { + "sha1": "ea1d553e5e9e91d53ad967ecf64c09d374b6e276", + "sha256": "sha256-aMESAYeUWGJFC0DRxs4aLMFFRxO0Cngmjoh/sK7Z62Q=" + }, + "common-31.5.0.jar": { + "sha1": "02cbf54d0619b172e4d65e944132b1bcaf5905b0", + "sha256": "sha256-qSR0Z6Ok21PY6Dm+bG/xFLqPNkoQNIJ9ETkcU4XLPd0=" + } + } + }, + { "path": "com/android/tools/ddms/ddmlib/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6172,6 +6538,21 @@ } }, + { + "path": "com/android/tools/ddms/ddmlib/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "ddmlib-31.5.0.pom": { + "sha1": "7dfe0f160b5cb80b0f4effd9d07aac87d1340076", + "sha256": "sha256-5aCQbp4jagnWM9Iwy+mI03tpps19M0NZhEFOzSUmISE=" + }, + "ddmlib-31.5.0.jar": { + "sha1": "cec99d30da3f854bde3d734fabca09400097e4bd", + "sha256": "sha256-xXHAIk/j5+ZgcZbZXMMUL9wZ8BPo8VEPaMe0pobFOAk=" + } + } + }, + { "path": "com/android/tools/dvlib/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6311,6 +6692,21 @@ } }, + { + "path": "com/android/tools/dvlib/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "dvlib-31.5.0.pom": { + "sha1": "672f2fc7c61fdb347d135befcf26c24638e8fb18", + "sha256": "sha256-ikyZNcgwl7/zryXJe0cDk2GECqt5/ikp4fI/YKv2gFY=" + }, + "dvlib-31.5.0.jar": { + "sha1": "8c475e80a82e3c293d792ea9a22847c43904c2fc", + "sha256": "sha256-XMxJAlggKFBjDFnuy50ppshJuxfxD0ypAX22SfcuSB8=" + } + } + }, + { "path": "com/android/tools/external/com-intellij/intellij-core/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6341,6 +6737,21 @@ } }, + { + "path": "com/android/tools/external/com-intellij/intellij-core/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "intellij-core-31.5.0.pom": { + "sha1": "728763ef5656c9b81fbdec227df51d789eebb0e1", + "sha256": "sha256-Qgld04oSJscSRu93G4gOKcW+255ufLfIg8WZOvvk5m4=" + }, + "intellij-core-31.5.0.jar": { + "sha1": "d69a93e5478dca63652ba5b00fe07454ed70241e", + "sha256": "sha256-SAW44u9LoUC3s9d+phmnUv8RK72IoBpZIZ4EwB92Nl0=" + } + } + }, + { "path": "com/android/tools/external/com-intellij/kotlin-compiler/31.1.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6356,6 +6767,21 @@ } }, + { + "path": "com/android/tools/external/com-intellij/kotlin-compiler/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "kotlin-compiler-31.5.0.pom": { + "sha1": "b02747ace589fadc03fbaacc311972a0a2de6f0c", + "sha256": "sha256-oUG3fE5OnXbQzZveRyLC61/uSljdc2gtDHN2vX0Gd34=" + }, + "kotlin-compiler-31.5.0.jar": { + "sha1": "26a7b92f6acc8ce09c46247937580d13c5e105cc", + "sha256": "sha256-sa9E3RJ7BH6FboyCX61p+7DFuWWdNCDcdlaIvHpThPw=" + } + } + }, + { "path": "com/android/tools/external/org-jetbrains/uast/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6386,6 +6812,21 @@ } }, + { + "path": "com/android/tools/external/org-jetbrains/uast/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "uast-31.5.0.pom": { + "sha1": "bd8ad16da2b21073d6bed56ac96dee562abfd11c", + "sha256": "sha256-bQRsXbjj7eUtHHiLM1QF7cJwYnheZ9FQ89QwFNKSM4I=" + }, + "uast-31.5.0.jar": { + "sha1": "c9f3d159a06231fcd5878fc31c86ebeee3d52c01", + "sha256": "sha256-OxGuQ4AOD4InZmTDE/lELBqawgjjoPAb6zEuRwecz40=" + } + } + }, + { "path": "com/android/tools/layoutlib/layoutlib-api/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6525,6 +6966,21 @@ } }, + { + "path": "com/android/tools/layoutlib/layoutlib-api/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "layoutlib-api-31.5.0.pom": { + "sha1": "1ad00c2c8f59a6c2894f407f5736085cdeaa9d58", + "sha256": "sha256-MDX7eZ1pGe1RPG6bokASRasEb7Bra4tCc+zvmV6IZxM=" + }, + "layoutlib-api-31.5.0.jar": { + "sha1": "e472af38f4703e16b8005aa62668080fe3a79324", + "sha256": "sha256-knG/Cz+95l51o+nFh3AbiGXS8AnqFZ8oAbqY27yKw2A=" + } + } + }, + { "path": "com/android/tools/lint/lint-api/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6555,6 +7011,21 @@ } }, + { + "path": "com/android/tools/lint/lint-api/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "lint-api-31.5.0.pom": { + "sha1": "3edd531cd24e9d78e4904c81598d45f7d5fe6e31", + "sha256": "sha256-LSst4hHDr9Gd9MVewlu5hMqXj73Z/9ptPobf2qY9Hxs=" + }, + "lint-api-31.5.0.jar": { + "sha1": "b85f8c8c827a12ffc236af3d4534a31978c78fa1", + "sha256": "sha256-tKOcbLsi8vThaMMQRFPMBlQ/YcXbPV5jbXua+e/C3yY=" + } + } + }, + { "path": "com/android/tools/lint/lint-checks/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6585,6 +7056,21 @@ } }, + { + "path": "com/android/tools/lint/lint-checks/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "lint-checks-31.5.0.pom": { + "sha1": "97d151bbed561f02d871e6eee945971179cfa8bb", + "sha256": "sha256-phH5T/d38jbnZg1790ufQwzN/Bn7wCZIE6lEELsrHKc=" + }, + "lint-checks-31.5.0.jar": { + "sha1": "c3ac132db2b594e30a49526e84ff5bca274be391", + "sha256": "sha256-XIDOZvO6u3tmN2GhghH3QcpPEAmQG5CwIMaAA8KIYis=" + } + } + }, + { "path": "com/android/tools/lint/lint-gradle-api/26.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6660,6 +7146,21 @@ } }, + { + "path": "com/android/tools/lint/lint-gradle/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "lint-gradle-31.5.0.pom": { + "sha1": "2f2ad6adae02718b4d6e6fc8b226af1e0b3126de", + "sha256": "sha256-VT0Aa+q5ZYi5cIw/cI5lbPg/q1HPID+DnMzenDzE76g=" + }, + "lint-gradle-31.5.0.jar": { + "sha1": "8109951cff039eee3968acf6462bb7a6c4b73ede", + "sha256": "sha256-7BiMYkR6bHzXgQcld7BEcNeowyHekmqV9cf5I0IGD74=" + } + } + }, + { "path": "com/android/tools/lint/lint-model/27.1.0", "repo": "https://dl.google.com/dl/android/maven2", @@ -6739,6 +7240,21 @@ } }, + { + "path": "com/android/tools/lint/lint-model/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "lint-model-31.5.0.pom": { + "sha1": "7c92cb660605e9ec0373a9b9dc2ac9dbcb3955c6", + "sha256": "sha256-XOKk9SfhX+W+PhmjbMS/mGXgAskBsuEqXWPv2zV1Eqw=" + }, + "lint-model-31.5.0.jar": { + "sha1": "9e5a5fdecfe4f1a457e00009441232089cce237f", + "sha256": "sha256-rls4Rg86WcByWTDXedu7M3LwgDGhpB+qWdn4UAs+RkE=" + } + } + }, + { "path": "com/android/tools/lint/lint-typedef-remover/30.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6784,6 +7300,21 @@ } }, + { + "path": "com/android/tools/lint/lint-typedef-remover/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "lint-typedef-remover-31.5.0.pom": { + "sha1": "cebce27feb8c4a5894a4bf268d5c9ac18b63530d", + "sha256": "sha256-fAfRdkaR2jtQX7awIU8GYNlGIneiGzQb4k77+xg0BJE=" + }, + "lint-typedef-remover-31.5.0.jar": { + "sha1": "644ab9b8a697ba83702c4e32eaaf95c504e1a522", + "sha256": "sha256-W09IUhXKTYbvIxn8OYtfIlHmL1RGvF/Q4AZTZI3d4xg=" + } + } + }, + { "path": "com/android/tools/lint/lint/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6814,6 +7345,21 @@ } }, + { + "path": "com/android/tools/lint/lint/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "lint-31.5.0.pom": { + "sha1": "6aa438c053a4f0792745b54a835877609d562876", + "sha256": "sha256-GSveEQZFOWG5kK/p3w5okN+qpoprRk4nnB7bqTRp7bI=" + }, + "lint-31.5.0.jar": { + "sha1": "e435a6c5355f46b0da7456cca076690153a17332", + "sha256": "sha256-dXzb3fu8QPxA9OLDxwr8F6CzdvOpxJfHZlJIRlKxvUI=" + } + } + }, + { "path": "com/android/tools/play-sdk-proto/31.1.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6829,6 +7375,21 @@ } }, + { + "path": "com/android/tools/play-sdk-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "play-sdk-proto-31.5.0.pom": { + "sha1": "24fe6cb51c866ace616d8109b2a1fe842b95b0f1", + "sha256": "sha256-YxrmOTVHCo6pNpbiSMOjf741vPLj6UGxIHh1//GU7LU=" + }, + "play-sdk-proto-31.5.0.jar": { + "sha1": "787b08f7e5344ac91d9ca7d0508edbcb2cc02288", + "sha256": "sha256-7Mr7Ay7kt2UU22dqRc1MWwvVvp6nSU+N69rHZeibuS4=" + } + } + }, + { "path": "com/android/tools/repository/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -6968,6 +7529,21 @@ } }, + { + "path": "com/android/tools/repository/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "repository-31.5.0.pom": { + "sha1": "4ec980c865a16f186eef5d3f171478bc3d92f551", + "sha256": "sha256-eTYwFFg9t9qBTAGm/+iag9deztFs5fCfLt2HLc+w39o=" + }, + "repository-31.5.0.jar": { + "sha1": "f9d998909029644e8f7cf78cd850138ecf7cfcfd", + "sha256": "sha256-3yUz4VS3NqCpXkgEiTqlkJlVKEK/ljXNo3Ub6eiUoOI=" + } + } + }, + { "path": "com/android/tools/sdklib/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7107,6 +7683,21 @@ } }, + { + "path": "com/android/tools/sdklib/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "sdklib-31.5.0.pom": { + "sha1": "25361155a74d9f23fc626a29e95bc29ce116d81f", + "sha256": "sha256-QHDNU6KH4WTY64vjstDK3buNBme0cLIRodAcSl1qwXg=" + }, + "sdklib-31.5.0.jar": { + "sha1": "23e84e946076bda65b05422fe98fae9fef55c856", + "sha256": "sha256-qHx9labZwynd3oKK8/ITJTFAE1xgoL8CWpEHs8ISPyA=" + } + } + }, + { "path": "com/android/tools/sdk-common/26.0.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7246,6 +7837,21 @@ } }, + { + "path": "com/android/tools/sdk-common/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "sdk-common-31.5.0.pom": { + "sha1": "cec36b05400446217e764f0318e712df0bd91333", + "sha256": "sha256-GXYwwrmqQ7rEeGpJC9QjXpnDCpv5LF0haSCuBxDZ0k0=" + }, + "sdk-common-31.5.0.jar": { + "sha1": "ef25e2fe8106a2a8677068468d6c69ab88809181", + "sha256": "sha256-ymaZTQkxZ+OJshMkf0FOb5qUWE23jC5TyUuE+2C2C5o=" + } + } + }, + { "path": "com/android/tools/utp/android-device-provider-ddmlib-proto/30.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7295,6 +7901,21 @@ } }, + { + "path": "com/android/tools/utp/android-device-provider-ddmlib-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-device-provider-ddmlib-proto-31.5.0.pom": { + "sha1": "c17f59304ad0f43bbcb0f11c376acc220de580c3", + "sha256": "sha256-RkJlNlgD7lafjG9Ovg/636cJDAhOfQQFtviPLOvLlls=" + }, + "android-device-provider-ddmlib-proto-31.5.0.jar": { + "sha1": "732647a1df2d9405dbbc944ccb1a9153d7dc3e3a", + "sha256": "sha256-2p8/Pa4mVEyQZoVJWEdl1YVKh8Ql0s/ld80002AOoJc=" + } + } + }, + { "path": "com/android/tools/utp/android-device-provider-gradle-proto/30.0.4", "repo": "https://dl.google.com/dl/android/maven2", @@ -7363,6 +7984,21 @@ } }, + { + "path": "com/android/tools/utp/android-device-provider-gradle-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-device-provider-gradle-proto-31.5.0.pom": { + "sha1": "c3f0b9cb6caa4cbba536e7b11adb50b9784909e0", + "sha256": "sha256-npjz6hSTy9Mi/lusHes8wy9mciVjcNeGEcWWcJN4hjU=" + }, + "android-device-provider-gradle-proto-31.5.0.jar": { + "sha1": "9f4923a6c0e213f00c1cc31720d1535f2d8517fe", + "sha256": "sha256-rSNCux1vlVY0AKMiST6hwinLk985RPEmG3OZ9xhJQEk=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/30.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7412,6 +8048,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-host-additional-test-output-proto-31.5.0.pom": { + "sha1": "f24ae9159c4187c8e6419a00a53c958642f39b9c", + "sha256": "sha256-RcODaDiA5NKFcfE39uclY3HMzIhGtIffKSzAZ2EjcIw=" + }, + "android-test-plugin-host-additional-test-output-proto-31.5.0.jar": { + "sha1": "c02332c53d95a3e0ccd7ad9d6d97f8fec5d1a469", + "sha256": "sha256-OEUGlN5jKMLEy6aW+cBOzdXOaVI1X2jDoi+VQdHWVG8=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.1.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7427,6 +8078,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-host-apk-installer-proto-31.5.0.pom": { + "sha1": "0faedb1b4e6f2d63ecdcc1931158a07c881a9225", + "sha256": "sha256-ijk8RolW9WEUuWDAYBMEaEz1coqwMrfPu3uZaeb13nk=" + }, + "android-test-plugin-host-apk-installer-proto-31.5.0.jar": { + "sha1": "0eab0d04ab0181f625bd2c22a800ccc12d6e555c", + "sha256": "sha256-ztSaykAxqixXtR05CbqBUILlY8HZoka8I+3pc3glJPc=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-host-coverage-proto/30.2.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7476,6 +8142,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-host-coverage-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-host-coverage-proto-31.5.0.pom": { + "sha1": "0f7e7e94bb469ca84f877b39e5d9160bb8ce3661", + "sha256": "sha256-1IEEJCs8x323mwWxRhof7gZtSuMQeTxw8ypKbiKP1to=" + }, + "android-test-plugin-host-coverage-proto-31.5.0.jar": { + "sha1": "c780344aab70a33c454ad697295e12278fed16db", + "sha256": "sha256-77TXAUqqc1UkagfC5DeiIx+yUlQP8bzmhyyI3I2onRI=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.1.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7491,6 +8172,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-host-emulator-control-proto-31.5.0.pom": { + "sha1": "021ac27bc75160236896c4090d69f93b14bd197a", + "sha256": "sha256-2STjgY6pCL3Qcc/UwcwZ6KAC+9NhvSUmR6Dj7ljLO4A=" + }, + "android-test-plugin-host-emulator-control-proto-31.5.0.jar": { + "sha1": "faaddb0258a839e6ab89fe2acbe20ce29b403b43", + "sha256": "sha256-rt7F7EYn2JjMzfQtgDjbIOukSVdTxT0bCzeHNEkcr18=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-host-logcat-proto/31.1.1", "repo": "https://dl.google.com/dl/android/maven2", @@ -7506,6 +8202,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-host-logcat-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-host-logcat-proto-31.5.0.pom": { + "sha1": "4f5d4e02589fe738ab801585d8f86466b4ec728c", + "sha256": "sha256-Jok+ZFw1kCVzHlAohAi8iHavz4SHfIjFauE8F67u/KI=" + }, + "android-test-plugin-host-logcat-proto-31.5.0.jar": { + "sha1": "d8f873c14c5c65746b97801c2c6cae506d0b3d29", + "sha256": "sha256-kSkCS9jjg1O8o+sm39jjYo4FjVfW6dhFH/w18BZ1HmM=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-host-retention-proto/30.0.4", "repo": "https://dl.google.com/dl/android/maven2", @@ -7574,6 +8285,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-host-retention-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-host-retention-proto-31.5.0.pom": { + "sha1": "4d96de830acdf0f0b512069ef365e19b840a7a3d", + "sha256": "sha256-J4FWzj/GJz3AwW4RnYvjTuShZQks7bjpRt5RE+LT25o=" + }, + "android-test-plugin-host-retention-proto-31.5.0.jar": { + "sha1": "8ef946d4477f3b40b3bcb7d151131483b6d77d67", + "sha256": "sha256-PbjtOO9JtpTK6kZq4i47Ns7clVezWJ0OB8DN2DKUWRw=" + } + } + }, + { "path": "com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/30.0.4", "repo": "https://dl.google.com/dl/android/maven2", @@ -7642,6 +8368,21 @@ } }, + { + "path": "com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "android-test-plugin-result-listener-gradle-proto-31.5.0.pom": { + "sha1": "b6a735d9e5e5a20840fdb5fde3e07c2d50c76972", + "sha256": "sha256-oioBBhBge+alczS4pE1KGFQJWDGYyTTmujaRGz7TpVk=" + }, + "android-test-plugin-result-listener-gradle-proto-31.5.0.jar": { + "sha1": "f51d5e35aa252438265500d79fc2d314b7555b94", + "sha256": "sha256-y99xvKYOFMMOeyz0uQ8PCj6ME498rdh0sNnArgguAnQ=" + } + } + }, + { "path": "com/android/zipflinger/4.1.0", "repo": "https://dl.google.com/dl/android/maven2", @@ -7721,6 +8462,21 @@ } }, + { + "path": "com/android/zipflinger/8.5.0", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "zipflinger-8.5.0.pom": { + "sha1": "4f2873aec87d742a8b7cc48732f4795dd44cd64c", + "sha256": "sha256-vkrLkMi8HasJgUaa9mmFh466KrzcdIM55UBaI7qasCE=" + }, + "zipflinger-8.5.0.jar": { + "sha1": "de8e3267995699af356740cf562cbedb485f5763", + "sha256": "sha256-gd1IVhilCaMjWSm56xMJHYhEUmYd5s5aRcw4scVVQhw=" + } + } + }, + { "path": "com/google/android/material/material/1.0.0", "repo": "https://dl.google.com/dl/android/maven2", @@ -7752,16 +8508,16 @@ }, { - "path": "com/google/prefab/cli/2.0.0", + "path": "com/google/prefab/cli/2.1.0", "repo": "https://dl.google.com/dl/android/maven2", "files": { - "cli-2.0.0.pom": { - "sha1": "c551056d34273f78ce483e40a36516c46bf2de35", - "sha256": "sha256-SFZAGiY7OcU5Szahbg2ZYozwXGgAigzalpHHK7EB4d8=" + "cli-2.1.0.pom": { + "sha1": "b8951782b97ddb25d963ffd7a749dbe9b279df0f", + "sha256": "sha256-EQZho1OGgCq3MdEaDqBQRE/DyfMck28xo61Yv4Q74w8=" }, - "cli-2.0.0-all.jar": { - "sha1": "f2702b5ca13df54e3ca92f29d6b403fb6285d8df", - "sha256": "sha256-2b2J9oRGuCvgOKrndHca2Fki0LN1IJsXYlonNLUxfik=" + "cli-2.1.0-all.jar": { + "sha1": "aa32fec809c44fa531f01dcfb739b5b3304d3050", + "sha256": "sha256-4hnIzWv9n/cVA6V8avNLm6Bg8DUlzD5YMw3uUyRaXtY=" } } }, @@ -7811,6 +8567,21 @@ } }, + { + "path": "com/google/testing/platform/core-proto/0.0.9-alpha02", + "repo": "https://dl.google.com/dl/android/maven2", + "files": { + "core-proto-0.0.9-alpha02.pom": { + "sha1": "1f94c3fbfb7368c7c1862fa91ae5351c757d1e28", + "sha256": "sha256-J855WUJ6L/7kjQ/rRRKKPzbMQX7YqCKvoigiyPWliyU=" + }, + "core-proto-0.0.9-alpha02.jar": { + "sha1": "ee54219cbb4a7fb83cdc528e9a85e0383f3ee726", + "sha256": "sha256-bYqJBndBUPQ6j60IymTiXGBww5vYpvwTslk/KJJC/pU=" + } + } + }, + { "path": "com/google/test/platform/core-proto/0.0.2-dev", "repo": "https://dl.google.com/dl/android/maven2", @@ -8115,6 +8886,21 @@ } }, + { + "path": "commons-io/commons-io/2.13.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "commons-io-2.13.0.pom": { + "sha1": "1da8a0360c9fa9b5c0553b032b54cfacf1d7182f", + "sha256": "sha256-2z/tZMLhd06/1rGnSQN3MrFJuREd1+a5hfCN2lVHBDk=" + }, + "commons-io-2.13.0.jar": { + "sha1": "8bb2bc9b4df17e2411533a0708a69f983bf5e83b", + "sha256": "sha256-Zx6qOWiNrC/6pGRbPJmAri0OokceSual2hmc0VriNmY=" + } + } + }, + { "path": "commons-io/commons-io/2.16.1", "repo": "https://repo.maven.apache.org/maven2", @@ -9053,24 +9839,24 @@ }, { - "path": "com/facebook/fbjni/fbjni/0.5.1", + "path": "com/facebook/fbjni/fbjni/0.6.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "fbjni-0.5.1.pom": { - "sha1": "079b7085cbd84f8f596e6baf022ef20182876afb", - "sha256": "sha256-OKEai/wJ8pXPteyxRIVVbAUWhEgTKYLNykERC5sF9vM=" + "fbjni-0.6.0.pom": { + "sha1": "f1883be08fbb9271245ac3ea6a1ec25ab4b357d9", + "sha256": "sha256-RWB02zxZfSSbkx4xnb52EclNIygqOpW4dUarH0Lmkxc=" }, - "fbjni-0.5.1.aar": { - "sha1": "03c2e028858e79f35837cf34a7701f1156ceb81b", - "sha256": "sha256-4Q/n/JztmJxBsFzgRopOu8XR04YW7f6KAWqgf7i6Tt4=" + "fbjni-0.6.0.aar": { + "sha1": "88814d964b6f2fa891bf1ae4537b621e83519104", + "sha256": "sha256-6HFl08D4E3H6A/p8rlDuFXbFUDKVFrsfSXj0GbSwfUw=" }, - "fbjni-0.5.1.aar.asc": { - "sha1": "e6b5efe31f4bcb5e7032accaaad61d8f7849c93f", - "sha256": "sha256-ZsVIWGxqpiAWLuNdsE11geWhwFbLgugJsARzj/Jbgiw=" + "fbjni-0.6.0.aar.asc": { + "sha1": "c2b9a1d276b67658bbce09b038ab56a077f7d08b", + "sha256": "sha256-xY63sBSgpu9WF8hH/3HPyZ/vwehYaWFqf43Bkt+z7WE=" }, - "fbjni-0.5.1.module": { - "sha1": "f15be15e5f3ed32a6be74be25c141b5bdb045e69", - "sha256": "sha256-279MAZyxLzJFQ0TVdftTDJ3lBUobMIlDBtmCZ5V60sI=" + "fbjni-0.6.0.module": { + "sha1": "1ce676ce44ba90702ea4d0c7108be44e4193bd8c", + "sha256": "sha256-FcuK6HtlbngWgngJ0+wMysRXyNdSqVRpwq6PJ2rFdJw=" } } }, @@ -9168,24 +9954,24 @@ }, { - "path": "com/facebook/fresco/drawee/3.1.3", + "path": "com/facebook/fresco/drawee/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "drawee-3.1.3.pom": { - "sha1": "a1a6053ad88ace6aed4e3d844de61e07e24e63c5", - "sha256": "sha256-dxLcGHR1QFQ1D4CilDObyHCvzVEmSheWUp4IQ6IKHB8=" + "drawee-3.2.0.pom": { + "sha1": "b3bc217051ad9d5b7a1264c0eea5c4872376aef1", + "sha256": "sha256-655Tw88uIpMH8guY8xRqisJ+Wo6kEFusX+NqzNl81AE=" }, - "drawee-3.1.3.aar": { - "sha1": "e40081962f2d677c57aef3921b923bd974b157f1", - "sha256": "sha256-GZbMGfyk1xymkPx2bkV7Lc7Zxmk/jTXzt3YOFSkTzls=" + "drawee-3.2.0.aar": { + "sha1": "07c6f0078c62ace58aaf4b92efca190426ed4f40", + "sha256": "sha256-MSpUdKTWoLgO+EXALSxhjekBKHG6r/+/vGB8NjJo6MA=" }, - "drawee-3.1.3.aar.asc": { - "sha1": "97998a0d5f4f558a5bae14eb5b6e08ef73de9d04", - "sha256": "sha256-MfZyVmrY0mE322YnU9Cdw7PCDEtl3+fI0SKNfvQHacM=" + "drawee-3.2.0.aar.asc": { + "sha1": "a0ae4add6d70b4cb9e81b955b7f431b7b750df9a", + "sha256": "sha256-/f3AJcsZexUml3z2vWw0xDqlvmV1/6BY8R2xZQ0F3IU=" }, - "drawee-3.1.3.module": { - "sha1": "7b69c4e618ecf4856a6e032622978a7885e4e210", - "sha256": "sha256-WPhcRI85KxfQMEa2z0RgUIleTIXl+mdkgQJ9VKb6nM8=" + "drawee-3.2.0.module": { + "sha1": "66c305f04846a9ee62b2533eb8c462c11bbd80f7", + "sha256": "sha256-UUm+6fnLs3nAjKPOBGkFMSVcdEjEEzIVFY20BGYB5sg=" } } }, @@ -9214,24 +10000,24 @@ }, { - "path": "com/facebook/fresco/fbcore/3.1.3", + "path": "com/facebook/fresco/fbcore/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "fbcore-3.1.3.pom": { - "sha1": "04e95c719d3c8fe0b794b2b69e3e521d261d2926", - "sha256": "sha256-ofBgMJobXvzZVgO43XzmSicME9PK93Pii8xJ0DyIimc=" + "fbcore-3.2.0.pom": { + "sha1": "adb17b10a1d7fd549b2571a1dccf63ce6621b72f", + "sha256": "sha256-GFjvHweh41088nya2JFvMfvUH4/YqXISIA+ov5Tvseo=" }, - "fbcore-3.1.3.aar": { - "sha1": "1d8b6068ba733355b691679db4014ae78d08b70a", - "sha256": "sha256-NGMNsZFm0y1PbxSKZ9KZ/6/K4C+qEgEjg7SfTbqkge4=" + "fbcore-3.2.0.aar": { + "sha1": "e6103082ebdecc06ba0304dba7d8078961d1313e", + "sha256": "sha256-HdHitnkNF15jJBKdO+ic3moCAvo1XiVZjP+rBVyCJkI=" }, - "fbcore-3.1.3.aar.asc": { - "sha1": "462eaea3677e152846a2f1f0fe3a2dfc592e4e0a", - "sha256": "sha256-As7DAueaEVp0Zih8NiQtYaK/0zZbUsulgDSvO724G/4=" + "fbcore-3.2.0.aar.asc": { + "sha1": "438608d7a452c02bee88ce898e071523c113f4da", + "sha256": "sha256-MgrX+Z4R1boD9EiKUOJAkNFC6Nr9wT8avYM2ato0i9s=" }, - "fbcore-3.1.3.module": { - "sha1": "49b461c4ca204ed78cb39c67a2b46b01465844e5", - "sha256": "sha256-mXXIdu8b/K9+XF3By3plg3vx9tPQ/lij2mWR6qb/FFY=" + "fbcore-3.2.0.module": { + "sha1": "5baa35e3117f36fb22afabd56fe494853af92335", + "sha256": "sha256-4mFYGe0LkvowkborQiC91tNGm7FG/ZtrHOCbPYfPjfE=" } } }, @@ -9260,24 +10046,24 @@ }, { - "path": "com/facebook/fresco/fresco/3.1.3", + "path": "com/facebook/fresco/fresco/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "fresco-3.1.3.pom": { - "sha1": "abdd0ba7d0f5a87d1a355fe62308e09f5dbf8d2d", - "sha256": "sha256-n7I2UVj6xQEHUx57AFRTTpFIV33UV1N1l2CfcV9AgWc=" + "fresco-3.2.0.pom": { + "sha1": "40c339bcda49a656a93c2b3bc3ff5110c51100d7", + "sha256": "sha256-iZBlglJwi6wAR1MKDk9Glef39cnkZaksa5zMTIaDxyk=" }, - "fresco-3.1.3.aar": { - "sha1": "fc0f945952cf0e6d627425ebabf322aae8df2e3f", - "sha256": "sha256-3/Hbk90ba9vW0aJboCxDtPaTmmDtFciKEfhTPMbUMPk=" + "fresco-3.2.0.aar": { + "sha1": "8af9faa52a06882695b243ee427508634a998de8", + "sha256": "sha256-sQVvXqfv1KgiqnzImWkuJTzkva4A5o9JWvIfbOnCUps=" }, - "fresco-3.1.3.aar.asc": { - "sha1": "2d5e2a1f746456ae7f56d3e54d504ee70b8787c4", - "sha256": "sha256-RxdPO8Lc+OAkx6KjbAiH+GQrXJ6fxa4YrsJAnfaxq1Q=" + "fresco-3.2.0.aar.asc": { + "sha1": "d811f3096ac520295c1dcfb06c74753b7ed16712", + "sha256": "sha256-+Dt9OJJIPJmQf/+UckVcYpMAvX6xARL4nE4+pj50Pv0=" }, - "fresco-3.1.3.module": { - "sha1": "82f4c255dcdcc56741e5c97f5918d71c8ed42c11", - "sha256": "sha256-JU5FPqfOcIEct7bPuEy9nfzoCbTcBfO5uflp5la1vkY=" + "fresco-3.2.0.module": { + "sha1": "43f3162acc8653b02ae6a8d662abcc7c4afaca86", + "sha256": "sha256-DwlRMelw4K0UfVZwHRcNF8H87+ODcVEJl5isYO7XUOQ=" } } }, @@ -9306,24 +10092,24 @@ }, { - "path": "com/facebook/fresco/imagepipeline-base/3.1.3", + "path": "com/facebook/fresco/imagepipeline-base/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "imagepipeline-base-3.1.3.pom": { - "sha1": "b4714a1a610f5f78f76266aa99737738693b784c", - "sha256": "sha256-xhNxGVE7IeVzzpIAQCaZQKQBMxJEKzvlAuCaKB14eoU=" + "imagepipeline-base-3.2.0.pom": { + "sha1": "d3439b434830668236ccfbc592cfd9db1dc4b441", + "sha256": "sha256-hPFfjCUOD0/5Jcr8QJWKq3p8K1sn2xG0s1Dzd9Ynaaw=" }, - "imagepipeline-base-3.1.3.aar": { - "sha1": "2fdc3c44cd54fc7711c09e5921ea952000602459", - "sha256": "sha256-kLzoOxQzknOyOrZ2rzZbTcW9zZlMLkGiZaPCROVgWrk=" + "imagepipeline-base-3.2.0.aar": { + "sha1": "1ae58f90486f9f11ddee7baddde7024cd2cfa8fa", + "sha256": "sha256-99tDmy7QEwpXdYLEOCDeizy58i6FyJww15WHJyCvb3Q=" }, - "imagepipeline-base-3.1.3.aar.asc": { - "sha1": "de6b13f2f2be26b09945f56e64cacae837db6e36", - "sha256": "sha256-LOgnWft4dfdLGytDCxWGt81ix54fpwFuMsnAqvLJkqk=" + "imagepipeline-base-3.2.0.aar.asc": { + "sha1": "336c717c698eb1ec30094f1747eafdbbe80a9978", + "sha256": "sha256-MRU4gh+FnrB9m4zVkCNCdxufIVq58I2dEPBFF2+b1Hs=" }, - "imagepipeline-base-3.1.3.module": { - "sha1": "b970064e7b95f51ad2be0f9074183f0b51e3c4f7", - "sha256": "sha256-IdXtpYc7nVW5saAg3OHGCzZ4IhLmvnxU3Dxx7z8Kq2I=" + "imagepipeline-base-3.2.0.module": { + "sha1": "b30813299f7c2710dcd22626b473fa1b4f004ba3", + "sha256": "sha256-hROcK11B2xBerBuHIljOgXRdkeXwLS4I/tJ1F35FY2U=" } } }, @@ -9352,47 +10138,47 @@ }, { - "path": "com/facebook/fresco/imagepipeline-native/3.1.3", + "path": "com/facebook/fresco/imagepipeline-native/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "imagepipeline-native-3.1.3.pom": { - "sha1": "a9173914e9d15592b807742a27a0bcaf2a56cc40", - "sha256": "sha256-h4KKoKF9f4ra4RrKj5CJ12Kd6CHdQD3ImJvdPlho0/4=" + "imagepipeline-native-3.2.0.pom": { + "sha1": "f26627e3fedea799184b5b905c7822a2f2be559b", + "sha256": "sha256-LSP9/77K580NaO145ev3JmRgae9QfLsckOtPcrbcAoY=" }, - "imagepipeline-native-3.1.3.aar": { - "sha1": "19026f410da3392d60643644390563cf1ab34556", - "sha256": "sha256-ozgLb+sZp49T+P0qJbgGx/NilsUHW7ghKXLyXrq/1oo=" + "imagepipeline-native-3.2.0.aar": { + "sha1": "f932c917f0115d1b6be480de176fc54475fef400", + "sha256": "sha256-aOlDMmBULTTf82ZsDVYSzN0ZqKcsuivYk1n1b/Hosi4=" }, - "imagepipeline-native-3.1.3.aar.asc": { - "sha1": "9ec1f812cd94341925acc7935b91aff706dae357", - "sha256": "sha256-o0h4lsIjyIGWj3l43NswWxb8oMIhzidMTX59vecNvxc=" + "imagepipeline-native-3.2.0.aar.asc": { + "sha1": "45479f956efc9c4a7eb14f6c8350f21c2bea6de4", + "sha256": "sha256-cqoPkXBmXAtB9HUM5e2VMpvnHXaQJIExcx9YxqwuU3w=" }, - "imagepipeline-native-3.1.3.module": { - "sha1": "44375907ce6bb60eacbe16a444ee3c4fa01a2351", - "sha256": "sha256-PvBOCnsCa8+rGVccA7vQ1Jtk5vjQkQhR6/Kj1DwVqzE=" + "imagepipeline-native-3.2.0.module": { + "sha1": "b553fac57e7ad90dfc6dce2bb1bc0a0c9b0d0528", + "sha256": "sha256-nVbMKtDdmsv+6D+PFFRE1u3aNCI9IzQUjRlL7G2Fj8o=" } } }, { - "path": "com/facebook/fresco/imagepipeline-okhttp3/3.1.3", + "path": "com/facebook/fresco/imagepipeline-okhttp3/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "imagepipeline-okhttp3-3.1.3.pom": { - "sha1": "15bdf9aa20d8b766389f60aee869396f9cc47384", - "sha256": "sha256-EyVQ7xzuhCAkfQ8CK2abWWe6kPuqVqu6YYYxa9GNJBY=" + "imagepipeline-okhttp3-3.2.0.pom": { + "sha1": "81f6c645d2614425b7be397d3c458d4335e9ff35", + "sha256": "sha256-47tjM7fRmSgayoIbjruZ/lLQQA2N0gwhSEOTbemhyW8=" }, - "imagepipeline-okhttp3-3.1.3.aar": { - "sha1": "455b433027f246a46cac0b9832c0bc9d513b804a", - "sha256": "sha256-HNh6za9wvX/BJglrSKw74V8/sSof3A15R35J16YZCJo=" + "imagepipeline-okhttp3-3.2.0.aar": { + "sha1": "a40cb11494ebac94a9830f853afdf43de521dd0e", + "sha256": "sha256-sLMMvCfib888+3bR8VOqDcWt3FxbqaENd/aMMocTwOg=" }, - "imagepipeline-okhttp3-3.1.3.aar.asc": { - "sha1": "b3f9a94cf7f55e567f7e9b933cc2e832f434993c", - "sha256": "sha256-wgPBxUh+ispCwGu3c66AYoQroaS06bePDafrgb1tc9E=" + "imagepipeline-okhttp3-3.2.0.aar.asc": { + "sha1": "01bfb8540125bd860db699405e4c912f1dc9d66c", + "sha256": "sha256-/xKI5TFNubQLeQzbbXc3cFodUKAerm44cRcvdmm73j4=" }, - "imagepipeline-okhttp3-3.1.3.module": { - "sha1": "ee5c8b5535cb1f07d7e5026151fb1e61ebb34678", - "sha256": "sha256-SI3Db7ZteVN5xve1hVzX1gcc0jLdGEX/R09PQCA274g=" + "imagepipeline-okhttp3-3.2.0.module": { + "sha1": "a0d5d45e3ddaab3abc9c0d6492c5c96f2a23bcb0", + "sha256": "sha256-8gjdSvKxZkqXuX4PTC1UUAcsAWCPz4d15AogvNQ0yJs=" } } }, @@ -9421,24 +10207,24 @@ }, { - "path": "com/facebook/fresco/imagepipeline/3.1.3", + "path": "com/facebook/fresco/imagepipeline/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "imagepipeline-3.1.3.pom": { - "sha1": "e3cf5b6d93f268a9da04a4a03a1fb407f9e31101", - "sha256": "sha256-PPWMy0IuZkBjB4l+7ga7EBTyEl/PHJCcTNFLhzcQUMo=" + "imagepipeline-3.2.0.pom": { + "sha1": "5068c910009254ca32826d01099f07c961cf3743", + "sha256": "sha256-RQUjg1nX1H/oEukXzpC+yNHhvO4q0sMtMPc16TxOJQ8=" }, - "imagepipeline-3.1.3.aar": { - "sha1": "0a68c241ae4078de1b8b46f24dc0f11b0a5a7b59", - "sha256": "sha256-a4++cdrKxcGhkVnpbGkgKThu4b6prNCDUxiZGgOcn+M=" + "imagepipeline-3.2.0.aar": { + "sha1": "eaafab045909e94ee1a676f7a47f4c084f75146b", + "sha256": "sha256-Bpx3PT7Vbke2fuTG04dbfLGX3GxRU7MNKYj+Aabr9vM=" }, - "imagepipeline-3.1.3.aar.asc": { - "sha1": "9dc83c97306ad902f906cc832901613c736910f7", - "sha256": "sha256-Csha10eAIKWEcRnLO/N+BakFCWmr04k3FHhio6UDTic=" + "imagepipeline-3.2.0.aar.asc": { + "sha1": "cf05230816d857b371447e36567648f06604a031", + "sha256": "sha256-zAkshMovR/g/E23mJqLVoOJBdFZpjNEx+Zbfia0IUs4=" }, - "imagepipeline-3.1.3.module": { - "sha1": "dc47f5cb4c964dec73c95e5c796d0fbfd14a0c34", - "sha256": "sha256-n0IBgFkbTOCHc6oFpkZjaJubSqxWWuCVzvIRLUpNbPk=" + "imagepipeline-3.2.0.module": { + "sha1": "c934d6ec11bce6e741fecaf31744f9874549c1a4", + "sha256": "sha256-EHZ0jpdYEprIUelRg1NIPlu1cTt+Mj5GWp+CHyM0bHo=" } } }, @@ -9467,24 +10253,24 @@ }, { - "path": "com/facebook/fresco/memory-type-ashmem/3.1.3", + "path": "com/facebook/fresco/memory-type-ashmem/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "memory-type-ashmem-3.1.3.pom": { - "sha1": "69fb9c1b8d5c13a2d0802dc4faac411151581c57", - "sha256": "sha256-ycH+9SKBj9jcKyPZA1QGGed1xta/yBD7JUU0d8NQgBo=" + "memory-type-ashmem-3.2.0.pom": { + "sha1": "28e51336d93aa109a64b775a1745c863f5e3d622", + "sha256": "sha256-0ocvT7+KQsh7CW/HIiM1zaOPchiRPVHN5WCld8VwbCk=" }, - "memory-type-ashmem-3.1.3.aar": { - "sha1": "c3f85c564fddaa7a77ffcae2403bf913340a0aa6", - "sha256": "sha256-UTO3Oq0OML+y/2vPZTVnbwymW6e98n8gbk09OUmcaF8=" + "memory-type-ashmem-3.2.0.aar": { + "sha1": "3a1227e11712985625a6ce943417048317da695a", + "sha256": "sha256-UEXxIVneem4cpPVmVCkFDHZ4AiWTxz25hB9ZF/L7CaU=" }, - "memory-type-ashmem-3.1.3.aar.asc": { - "sha1": "1ee0a848d18e9a83894f19910a31a04c9440603f", - "sha256": "sha256-m1RDohP56EG9O5aZxfKTlKqLUjAUMT4uRhQOTv0BNR4=" + "memory-type-ashmem-3.2.0.aar.asc": { + "sha1": "04391a9700e77783c63b47e8f3ebe3645e829f27", + "sha256": "sha256-lNlpCQcKfoPPITbzt5vmc6YgJUoHFRSmwsFj+3TnEQM=" }, - "memory-type-ashmem-3.1.3.module": { - "sha1": "a14209b1e10c9db60cbd49523841b2a1363e9cfe", - "sha256": "sha256-jqUNWjlUdPzhy5qAMDLyp37tJ1s2u53e3VffrGlp5kA=" + "memory-type-ashmem-3.2.0.module": { + "sha1": "d17fb3cd5231344a58045d7682f4592f3c4176d6", + "sha256": "sha256-LhmQBL1r6Hq2tZzXhLPwh3P+q/+fhhBIX9Gfi27AykQ=" } } }, @@ -9513,24 +10299,24 @@ }, { - "path": "com/facebook/fresco/memory-type-java/3.1.3", + "path": "com/facebook/fresco/memory-type-java/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "memory-type-java-3.1.3.pom": { - "sha1": "657ae19c78782cab55d3e3b9e1bfef49d4cf26f0", - "sha256": "sha256-R94o44fxtSxUMD+EeXbeVY9kKVAIm0loZ/3ZMvkP118=" + "memory-type-java-3.2.0.pom": { + "sha1": "ed8fd94c865bf4e5a3036c94a26ff22ae60637d8", + "sha256": "sha256-+Q9gHIzU+fhGhKxkIonp25lDAkJOVKE+eoUXpwDQQhs=" }, - "memory-type-java-3.1.3.aar": { - "sha1": "456c580809f8a70de844217d5a3ed14f70033d32", - "sha256": "sha256-je7i52XY4j33nRDAIG+k0jF5XlzkmgFRwOwHA3SzpPk=" + "memory-type-java-3.2.0.aar": { + "sha1": "b9bbe5c1a45282d0bfaa8aac47eca8c5c31880ed", + "sha256": "sha256-wHjXRd7rv0wSwqoNo3rvZXdnLie+cpgVZsCKwSSHmJ8=" }, - "memory-type-java-3.1.3.aar.asc": { - "sha1": "09048f7efea878c358531ebae078c4b09db594fa", - "sha256": "sha256-62Y5JSEx7bEgJ/x5XEkgQKL9t20zPBtZDHcGYthrSQc=" + "memory-type-java-3.2.0.aar.asc": { + "sha1": "3bbb7605f584358109f056193efe35e5cef07a6d", + "sha256": "sha256-BGLmDbPmWbRyYdoyYXL6iUlYVSeOsb2rsJQ/M0ZTrdY=" }, - "memory-type-java-3.1.3.module": { - "sha1": "72b4aefff3ddea3f52240d6188d47c082687ed25", - "sha256": "sha256-FdHKlyKoh2hXpqHe0kV2Z5WG0Puy4HVPY4z0aLjQ/WI=" + "memory-type-java-3.2.0.module": { + "sha1": "f1b56b83289fb9e6aa8b130d863d16a7a45f5e7b", + "sha256": "sha256-5mnGTwZw9VJNDpjKNMx8gDsqGqs13i4/jXieqfU2p/8=" } } }, @@ -9559,24 +10345,24 @@ }, { - "path": "com/facebook/fresco/memory-type-native/3.1.3", + "path": "com/facebook/fresco/memory-type-native/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "memory-type-native-3.1.3.pom": { - "sha1": "1ef54b0de4d3359833588ee39ed88ef51196e848", - "sha256": "sha256-A1pDKnjHUo06ZSQykzLeGVBue9VHZCkQaMhsewW+uC0=" + "memory-type-native-3.2.0.pom": { + "sha1": "e3d1c1bad23ca3174d8fc5e0527430eaec5e1941", + "sha256": "sha256-/X6mh6bStzcbiaPFivOSJzbK62B8pFan9LF1eJnxMYk=" }, - "memory-type-native-3.1.3.aar": { - "sha1": "7db16f971dbbcdbd0c337d88e376d0b09fb699ef", - "sha256": "sha256-x6O5GWAULEYg4jDcGnkJFWhaU7Hf8XMV86stFPB0J3w=" + "memory-type-native-3.2.0.aar": { + "sha1": "99a14afe62213ec7e0142c8563a41944c763afa7", + "sha256": "sha256-I2dtVyA+ebGWodOapvroYoJ+Lul+/zVEaPBLeFrHQZM=" }, - "memory-type-native-3.1.3.aar.asc": { - "sha1": "7603b9e87255b73a6616da233fc1ff4a59cf3a94", - "sha256": "sha256-C5V+EjNHDYQbmPQ+KqyQlJLiYcFeQ56y/lxqOZ4aHcM=" + "memory-type-native-3.2.0.aar.asc": { + "sha1": "f1dc50fbead4b7733a470d54d8957c3fa8e4b8f2", + "sha256": "sha256-CCzp+2qFvXapM1El2I/50aIG5v5dhpJeK5Egc1ayhJU=" }, - "memory-type-native-3.1.3.module": { - "sha1": "ccb742cdf2aad6c9308298cf9c3adf4524af9b29", - "sha256": "sha256-7BKqMaeYFB7ez81suupJ8PsFaDime2gm38FcT+5Rr4k=" + "memory-type-native-3.2.0.module": { + "sha1": "c621925fe24ebcbba79ad35463d0c746dbb4f60a", + "sha256": "sha256-A5qwSjiVoJLsSx2QxYyQ3uHt4B9HYslv+9VlbmApCOg=" } } }, @@ -9605,24 +10391,24 @@ }, { - "path": "com/facebook/fresco/middleware/3.1.3", + "path": "com/facebook/fresco/middleware/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "middleware-3.1.3.pom": { - "sha1": "e1b051480c9a912070813a8c2527b50a7e873cca", - "sha256": "sha256-pdYWdFTVsPX2fj/wiowWDyG6TmbLUQQDR3dqAe9aQoQ=" + "middleware-3.2.0.pom": { + "sha1": "9c201baf32b5bcc871f20d2f470176a9909bf00b", + "sha256": "sha256-MNuq3OcQJr6zC7TJYhBIZOx2GlMqS5Er30DB4TJfO8E=" }, - "middleware-3.1.3.aar": { - "sha1": "80650d4b0a58f9f156e74a9d942a87ee64c107b3", - "sha256": "sha256-amcSnZLnyzpVvtehmaWKX5Yt06eYkSJeVbpKg+RfD+c=" + "middleware-3.2.0.aar": { + "sha1": "b8b1e6692ab84706ce1cac947fedcb0fe9a2b4ee", + "sha256": "sha256-5a5qV34CetSAZ4KN3qVXrE2jAZ5fcsTcfRbPBs7fUQM=" }, - "middleware-3.1.3.aar.asc": { - "sha1": "f59c25a9f6a90e003e97b79a1a553ca9af048647", - "sha256": "sha256-Vo4MpL3NMaumkXL41jm1ZvJxnZZksagsAR4exdcu0kk=" + "middleware-3.2.0.aar.asc": { + "sha1": "e6914e5091a0bee619322a6ec286f252826ce919", + "sha256": "sha256-B+WhOca7URD7NNYm1Vw9B/qrurNW1U9OacKm2fA6Dfs=" }, - "middleware-3.1.3.module": { - "sha1": "cbd733257abdfc65547e68ea7e59fa60e83ff425", - "sha256": "sha256-6OQ5vjB9oS0rSF6z7qaBdksj0QDPzDGN/oqQP4653Fs=" + "middleware-3.2.0.module": { + "sha1": "6b3c7397b17439468dba3d0c8aa8e885d96eb347", + "sha256": "sha256-onB0pU5104lpQSV0NLKlgWVdNQJXBLAEyPNUY4+sphw=" } } }, @@ -9651,24 +10437,24 @@ }, { - "path": "com/facebook/fresco/nativeimagefilters/3.1.3", + "path": "com/facebook/fresco/nativeimagefilters/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "nativeimagefilters-3.1.3.pom": { - "sha1": "982e44873bee9f8f1cf5b55ffa860532281b6f12", - "sha256": "sha256-V3DobsTLyoC7ujv4Uue/+7+Xj1NtbPcib1D4BYFZ3Yg=" + "nativeimagefilters-3.2.0.pom": { + "sha1": "644274ac4dc585f6ebc5622a8ed14480d43c7af2", + "sha256": "sha256-5qHIlRtJ5lgD1UlRBApLGFacKsG7FzHAiLt57ose0SY=" }, - "nativeimagefilters-3.1.3.aar": { - "sha1": "2f48c3f7a1575d8aad19732890de10a25154321a", - "sha256": "sha256-RPmyhbpckTZgpVTR640vCZJoj1B49X1382zGIiazAWM=" + "nativeimagefilters-3.2.0.aar": { + "sha1": "3e2ef9ee496ac05c84567719a23cbaa0c433dc54", + "sha256": "sha256-nj3P273ladD5xr5md/4dlLiTSjdrc56aG8lQJTht5jg=" }, - "nativeimagefilters-3.1.3.aar.asc": { - "sha1": "13c9a1539dfdddc54944158d87a78556d0ae4df0", - "sha256": "sha256-lddZ97VHprcgyi0db2mwCxmq3TohiUHWYHNMffmkWqM=" + "nativeimagefilters-3.2.0.aar.asc": { + "sha1": "630a993a55520f8455de3fdd5e5d91b405f94794", + "sha256": "sha256-a7EZ/5hyRRcZjzgO7SvvOgm57st/ASc+EBlDNltoC6E=" }, - "nativeimagefilters-3.1.3.module": { - "sha1": "3840c0e30f4a648006c83c8bdec366f4b63d8ecf", - "sha256": "sha256-zpDM5S5JTsZKeX1XjTYzic4S1g7yWS7wZuPsoSpBYz0=" + "nativeimagefilters-3.2.0.module": { + "sha1": "5e165f7fbc0a9a1d21e781b7606cde0e72c7a480", + "sha256": "sha256-3PSjT3arZaOuDMsF28w5I4u4jfdHak3Q5IXpEZsHLB0=" } } }, @@ -9697,24 +10483,24 @@ }, { - "path": "com/facebook/fresco/nativeimagetranscoder/3.1.3", + "path": "com/facebook/fresco/nativeimagetranscoder/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "nativeimagetranscoder-3.1.3.pom": { - "sha1": "d329e7d9ba9d968185aabb5ed2ecb578904eba00", - "sha256": "sha256-3IUCIs/kAl+FmudaLdhowda+9wVGXxT0j1dpmWzlM2E=" + "nativeimagetranscoder-3.2.0.pom": { + "sha1": "50cdbca778251fe36524f28c47475cde0bd81f16", + "sha256": "sha256-vqD0JVcw6mCXqEI/XYsgCBxxFZd0eXbr99WqM6J1YpA=" }, - "nativeimagetranscoder-3.1.3.aar": { - "sha1": "7bebc51666c6fc79d52299102486a40451faf972", - "sha256": "sha256-hKE7qh1Cm9RWFfM19pEp3JNdJWJDrjUdelNOuw/we34=" + "nativeimagetranscoder-3.2.0.aar": { + "sha1": "32f68713faad6196bbeb211827da207a09a46ef0", + "sha256": "sha256-5JyuRM+76bEkKOC0Mw1h4Am9AgjLhLnRnjSJ7NcVkhs=" }, - "nativeimagetranscoder-3.1.3.aar.asc": { - "sha1": "60640867daa1fa7c6fe9ca212ed6e63cb8ddb04d", - "sha256": "sha256-RWVjjbkB1YySDYTBnGaJU+UL71P+bKFDAJ7WKnBJ49k=" + "nativeimagetranscoder-3.2.0.aar.asc": { + "sha1": "e905e90eba06b3492abff476d6d5e2cf782182a6", + "sha256": "sha256-GEa56EGhZhZ/2n6qjWtr16qUXihYYFUsBciaZFMcNAI=" }, - "nativeimagetranscoder-3.1.3.module": { - "sha1": "49e148ced5beab46c6eb05a7a7493310656210fe", - "sha256": "sha256-48RAOPU5JAwhafLvhd/eUPmKLylPaUjHfRGdGHD/YWM=" + "nativeimagetranscoder-3.2.0.module": { + "sha1": "3230b20e6b0e12aadaaa0dc00529c534ff29a18b", + "sha256": "sha256-s+rb0RGWm3viEVuy8fZ5jIn38kjYbk2M2CNppi2vp1M=" } } }, @@ -9743,24 +10529,24 @@ }, { - "path": "com/facebook/fresco/soloader/3.1.3", + "path": "com/facebook/fresco/soloader/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "soloader-3.1.3.pom": { - "sha1": "b47f3d16009aee02cbba5dd18860900ac6f0050a", - "sha256": "sha256-OwfHYoRWLOKTpF+b+T+aKdKwQUUql9dDgpnOnTSsPsI=" + "soloader-3.2.0.pom": { + "sha1": "7e505f3f050a3eaa3c41221a0195962e468b52fc", + "sha256": "sha256-jbjT0JbJsPwF3ikVlO3St91Jx0KcnSOHe3C/+1e2+Jc=" }, - "soloader-3.1.3.aar": { - "sha1": "a5965b164f6dedd337df2fb86ed395d059cf4e3f", - "sha256": "sha256-Tk4erPqE10H5siKld1VvzcsNpf04TB/DpB+EkQtdzSA=" + "soloader-3.2.0.aar": { + "sha1": "cc97d2ed87e488ec03f75a03af80035e6b1416b6", + "sha256": "sha256-H6y9pt4q/mDd/pgNw6taHBRxZgxKcxHsQnxFSYrGqMs=" }, - "soloader-3.1.3.aar.asc": { - "sha1": "5dbba384a832bd37337d6f09f3818c37941dbbe5", - "sha256": "sha256-NnLUZ85MLZO4r0z3U0Vk5CpJfNZ63CO/eOSPZ//8LfE=" + "soloader-3.2.0.aar.asc": { + "sha1": "3ca075459951967d2d89e785f1b8d5009fa83313", + "sha256": "sha256-0NucPoRsXjLkVw3q8qjTeDs9Yy/WiSj6mBXW/VZW11I=" }, - "soloader-3.1.3.module": { - "sha1": "b6128ff9c77daab3ad4c770c6673476e78534ac1", - "sha256": "sha256-9owXzwWdA7uyCbBYubWLj0K0p7MN4EPUYel+pofCMjw=" + "soloader-3.2.0.module": { + "sha1": "2f53ab00e811715d735ee0b823359b82af7002b8", + "sha256": "sha256-6kfoVErK04zIUzS1SdamXMVVUAwMFi5yX2M0KFz7mGw=" } } }, @@ -9789,24 +10575,24 @@ }, { - "path": "com/facebook/fresco/ui-common/3.1.3", + "path": "com/facebook/fresco/ui-common/3.2.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "ui-common-3.1.3.pom": { - "sha1": "342dbde3bee451a2295a3ae647cf4eb8df06d184", - "sha256": "sha256-Bi5zbL9bT7ooP9SKvnQUVB0WsMBKrg0SP7pFOZPoGFQ=" + "ui-common-3.2.0.pom": { + "sha1": "324b1fac2ae7d251e00be4cacece9bfbe4a48adb", + "sha256": "sha256-FlIVQ9Lu6JDn+9jLBa0RnKxeLyWFMMXwULu99kKt+xo=" }, - "ui-common-3.1.3.aar": { - "sha1": "3c4cff99fc8a3f9f167e4d598c6be08b5a992251", - "sha256": "sha256-UThdMDfkadhuZkIN7C2eA+T2sQgkDjsyQ0WvTWoiuyM=" + "ui-common-3.2.0.aar": { + "sha1": "8b6765055c0bca452c9629983511a485fe3101b9", + "sha256": "sha256-wAM1OJqQv3BMG7oJL+eX9SYbIYZmrMZOALpr5CGfgNE=" }, - "ui-common-3.1.3.aar.asc": { - "sha1": "60f4e108f6d9233fc3937f2a44671ef5863ba170", - "sha256": "sha256-Jr91t5rpJ1CyOTAlQUn1FHMrfBRA+gusItVD0Cokc30=" + "ui-common-3.2.0.aar.asc": { + "sha1": "c0f60c69aadffd5ed8a9164dde6d9944a7863d07", + "sha256": "sha256-IJXB/orYfLiqHgOIvWgDxXZBsV8pl4GKZrpTQTg2zXg=" }, - "ui-common-3.1.3.module": { - "sha1": "f3932e9dbd1cd2aa51cb0874057c425883082648", - "sha256": "sha256-priHJdiMJyha20vrdroF5Ife5TEbQwGePJ6zW2Qz65Q=" + "ui-common-3.2.0.module": { + "sha1": "8a59af0fde03ddcf36e4f126efb3d381130dfd54", + "sha256": "sha256-2iXIsfrPejh5DandFJHy7Em8zlwXWdJP/mLWFPVz/bA=" } } }, @@ -9827,63 +10613,63 @@ }, { - "path": "com/facebook/react/hermes-android/0.73.5", + "path": "com/facebook/react/hermes-android/0.75.3", "repo": "https://repo.maven.apache.org/maven2", "files": { - "hermes-android-0.73.5.pom": { - "sha1": "955db2fa2ae0372c8a8a0b6842e7f0cab1cc6221", - "sha256": "sha256-9B2asyhFoQ0R4Vf1vLu7dPLb31++xnjYNhgd0j+jORg=" + "hermes-android-0.75.3.pom": { + "sha1": "f907e8f8fa5d7d15a60b983f4334529f4c2ec972", + "sha256": "sha256-4eY+mysMnWTY64qNZTfw6CzGlBg1G8WUcFozE6/fhlU=" }, - "hermes-android-0.73.5-debug.aar": { - "sha1": "6f643357f12dea27120e33a3b13f05e41da24bf0", - "sha256": "sha256-K29yemB5WljvOu9WxYkO8g9wukrVaFYlVWoy7t57g0k=" + "hermes-android-0.75.3-debug.aar": { + "sha1": "31d9a83d486530b9b3f60948a868d4c8df21c08b", + "sha256": "sha256-Y6m7uGVqkiP8kE0CyeDw4CpmjHhAIkeTPB3HzEzGHvY=" }, - "hermes-android-0.73.5-debug.aar.asc": { - "sha1": "65ab5673bc871ab015095284e5c6c42104a422fc", - "sha256": "sha256-XbxZVSr7mZ396VCvC9viJE6en9LllCfR2wWRDKqv2NE=" + "hermes-android-0.75.3-debug.aar.asc": { + "sha1": "d64ac4f85d00512728862d3b315c69467e104917", + "sha256": "sha256-GvTee0X9BY3mYee8BVzXtzYiPHcdGFRz02lceJ9YKlM=" }, - "hermes-android-0.73.5-release.aar": { - "sha1": "866acdef2fd2e78e27eba2de672252e39e4a2a36", - "sha256": "sha256-PLR2N9gsEcB82NvjbZN9jRSNk2NWO704Npan9x6TS7w=" + "hermes-android-0.75.3-release.aar": { + "sha1": "2c97b3d2f6420121c27009588f3a292f0a05b7cd", + "sha256": "sha256-Vv1clUgYSff+6KNXw+9AI28PlyLWN8GwW0yhCA1TWZg=" }, - "hermes-android-0.73.5-release.aar.asc": { - "sha1": "ca9e27e0b490e323ac7e82882da3ee0cd27a479b", - "sha256": "sha256-qn7gIMuvHXCRwzLkXuc+zuvMvTUh577P10okSYvMkA8=" + "hermes-android-0.75.3-release.aar.asc": { + "sha1": "c77ddb33a701c7b887dc49cb37ac9150949be8b1", + "sha256": "sha256-DrtMXkELWK/3HVP6pHi56xsqYsQvW1sFBhJYCpVZWec=" }, - "hermes-android-0.73.5.module": { - "sha1": "cff268fe33444a1facce09f138d2b82c9c8fe0cd", - "sha256": "sha256-8sBAOyQYkzeMA73Scg7/NZtOz3t0Pn+PBeWpCXecM+s=" + "hermes-android-0.75.3.module": { + "sha1": "78204cd994114fd895ae7985a65bdff6db1ce837", + "sha256": "sha256-cVpZYt8Ij65MkAyxHc1b8Q8yMQ3ws+EjUiFvZc8dB4s=" } } }, { - "path": "com/facebook/react/react-android/0.73.5", + "path": "com/facebook/react/react-android/0.75.3", "repo": "https://repo.maven.apache.org/maven2", "files": { - "react-android-0.73.5.pom": { - "sha1": "db442050834390cb54cd8162d4caf4924ee407ac", - "sha256": "sha256-OJOXiLrb/zhqyxdUtAPByZIHKHkyXPliWNyB7pDaZdI=" + "react-android-0.75.3.pom": { + "sha1": "03d4258f1c50709d5805a48a11772e3721fabddd", + "sha256": "sha256-ubQGPt5QLXQxOkAZyIkc278HuZMF2fGCYjNwaFteods=" }, - "react-android-0.73.5-debug.aar": { - "sha1": "3b66d3a3de9db61b22a1ecaf7c6dd9e1864d887e", - "sha256": "sha256-A6/jBejJVxBnCk6ESbjRH5GsmVPiwKik18orxGUFGX4=" + "react-android-0.75.3-debug.aar": { + "sha1": "3cfc7b808757382aecac8b51652799af7daa80c2", + "sha256": "sha256-Libow+hCO4DWQAXCkp3SRLza0m6S78uUv4Cz4aUn6eg=" }, - "react-android-0.73.5-debug.aar.asc": { - "sha1": "bd11129f0ef7cadfe4dcf68b2a6e4112c9d2f6a5", - "sha256": "sha256-H99ZwfTDMh+sIjhynGPtwg192wYDAHo54i99KaXD5Kc=" + "react-android-0.75.3-debug.aar.asc": { + "sha1": "1e09ecba5b3847e0c6d39e37e18d55859845fb97", + "sha256": "sha256-0wu+yIgAs9y1T16PzwgOCE4RbpdHWHI/QQz/pyu2G04=" }, - "react-android-0.73.5-release.aar": { - "sha1": "de12b19fbd9fc3c3da9ae2bbffe7e9c3b5d36023", - "sha256": "sha256-pLPp0ep+enzCEgAZwPF8S7+PsdhGECwMYrrdEfoaSRA=" + "react-android-0.75.3-release.aar": { + "sha1": "10b81a4f45d3c7b6e1bdf8457ddebeb7ce17ab3e", + "sha256": "sha256-lv7yg77RS1BWrxdV8uxKQ9x2mEfQVx9kCqoIOfpSC9k=" }, - "react-android-0.73.5-release.aar.asc": { - "sha1": "1233cb3f6613bbd4debf387c3000b767719561a2", - "sha256": "sha256-7ZIpbOFHWO2EhS2+C3KjESJyz2UlHYi5cnmVH6/lRh0=" + "react-android-0.75.3-release.aar.asc": { + "sha1": "47ac398d92c6796cadd742a29dc77d44f8ddacc1", + "sha256": "sha256-JHxm5PR+nfv5EulDnKFdoDhygi94WGIhRKtv52xvl/w=" }, - "react-android-0.73.5.module": { - "sha1": "9805ec3c968f6954da72baeae08806fdf2ab5677", - "sha256": "sha256-7BSpyf6KD3Zerv94krLDW8QIF0QQV6GtHNkuzdIZa5U=" + "react-android-0.75.3.module": { + "sha1": "0db843e565eb58549ee97db61ff4d3a88ba12670", + "sha256": "sha256-bEFsrg7fbeN2udxpIEGKCBIL7Fm9XKGMdPFwUug+06o=" } } }, @@ -9918,6 +10704,21 @@ } }, + { + "path": "com/facebook/soloader/annotation/0.11.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "annotation-0.11.0.pom": { + "sha1": "e92821b0e99f196703d5990048d5fd85fb1d7c4a", + "sha256": "sha256-8zQUEUcHBi23tUtK0c7X3oTHmutZ7ZT3WAKMJ5Fe+wU=" + }, + "annotation-0.11.0.jar": { + "sha1": "945ada76f62253ba8e72cbf755d0e85ea7362cfe", + "sha256": "sha256-9t3VUmi/GCQiXfejXsG4szz5iFWmycFT0YmJnl70pBg=" + } + } + }, + { "path": "com/facebook/soloader/nativeloader/0.10.1", "repo": "https://repo.maven.apache.org/maven2", @@ -9948,6 +10749,21 @@ } }, + { + "path": "com/facebook/soloader/nativeloader/0.11.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "nativeloader-0.11.0.pom": { + "sha1": "9fa440d5961d7110daff1c5da6785eb830145d21", + "sha256": "sha256-P97LLPkxvGs+aCq4C1FLs729VCfW2MUgU2hv/C5b8UM=" + }, + "nativeloader-0.11.0.jar": { + "sha1": "492cc5082540e19b29328f2f56c53255cb6e7cc6", + "sha256": "sha256-lx3thgCcCsVvsideEo+FLn3LxBpAzXmWiPihrr3lGV0=" + } + } + }, + { "path": "com/facebook/soloader/soloader/0.10.1", "repo": "https://repo.maven.apache.org/maven2", @@ -9986,6 +10802,25 @@ } }, + { + "path": "com/facebook/soloader/soloader/0.11.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "soloader-0.11.0.pom": { + "sha1": "5a152aa831488fb6c8ce74526c184bbd388d83b2", + "sha256": "sha256-MIWnKtrsm0+6UPifcTD6IW50eXpxI3F85LJi1Vsii1Q=" + }, + "soloader-0.11.0.aar": { + "sha1": "6b35a15983da35f84ea9af2f0b53e48b4c3aea25", + "sha256": "sha256-qyl9ox6Sya5yqlc9d22CXBrOl8EIxaDHXyqHkjZzFbQ=" + }, + "soloader-0.11.0.aar.asc": { + "sha1": "0d2aa5e3125f8d438caaa1239cb85a8fcc7bd1c2", + "sha256": "sha256-kbKiHhe/i/BOsQLhUlKPKTB5nAt1GQpdo7iWujA5azI=" + } + } + }, + { "path": "com/facebook/yoga/proguard-annotations/1.19.0", "repo": "https://repo.maven.apache.org/maven2", @@ -10021,20 +10856,20 @@ }, { - "path": "com/fasterxml/jackson/core/jackson-annotations/2.17.2", + "path": "com/fasterxml/jackson/core/jackson-annotations/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-annotations-2.17.2.pom": { - "sha1": "742d1e93e17a0ee2e37403439cdd80678ceedccd", - "sha256": "sha256-Q3gYTWCK3Nu7BKd4vGRmhj8HpFUqcgREZckQQD+ewLs=" + "jackson-annotations-2.18.0-rc1.pom": { + "sha1": "276deb7ae7f5cc37d23a38989a78a57507bc7eed", + "sha256": "sha256-oRATGux6hy/fA91Oz5s5YRm1VNnMCxqlelPj3f8WQDE=" }, - "jackson-annotations-2.17.2.jar": { - "sha1": "147b7b9412ffff24339f8aba080b292448e08698", - "sha256": "sha256-hzpgbiNQeWn5u76pOdXhknSoh3XqWhabp+LXlapRVuE=" + "jackson-annotations-2.18.0-rc1.jar": { + "sha1": "b9e146e8346b819e4bce934d41614cd3c248ac3d", + "sha256": "sha256-nC1/CioqhnDAEeEFJiyx24RN+GJlLgp1KH9uXk0ML4c=" }, - "jackson-annotations-2.17.2.module": { - "sha1": "0c39db486faed84c6298fc3c6db32af7f6c6ca5e", - "sha256": "sha256-KMxD6Y54gYA+HoKFIeOKt67S+XejbCVR3ReQ9DDz688=" + "jackson-annotations-2.18.0-rc1.module": { + "sha1": "1739c299ec680dc1491c74f15af0fbe54a5c4d31", + "sha256": "sha256-5wZ65mmjvbAkUEufgG7BaUxuoK3hRDgguzcoh8pXRw4=" } } }, @@ -10055,20 +10890,20 @@ }, { - "path": "com/fasterxml/jackson/core/jackson-core/2.17.2", + "path": "com/fasterxml/jackson/core/jackson-core/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-core-2.17.2.pom": { - "sha1": "56ebdda21a42d361ae3811b39a7053fc305d584e", - "sha256": "sha256-F4IeGYjoMnB6tHGvGjBvSl7lATTyLY0nF7WNqFnrNbs=" + "jackson-core-2.18.0-rc1.pom": { + "sha1": "f6598c774d5b3b2e3569d3c193680675cab3ded9", + "sha256": "sha256-vBHD23/gCYWtOYutek+9twh84A1OXeXGiIqgxEZUHX8=" }, - "jackson-core-2.17.2.jar": { - "sha1": "969a35cb35c86512acbadcdbbbfb044c877db814", - "sha256": "sha256-choYkkHasFJdnoWOXLYE0+zA7eCB4t531vNPpXeaW0Y=" + "jackson-core-2.18.0-rc1.jar": { + "sha1": "9baac744526012c59c575a02bde8bad10c0e1fd3", + "sha256": "sha256-fGA8E0M5arO7lfIJeC3idcyjDn/opy4CyTugOizYlVE=" }, - "jackson-core-2.17.2.module": { - "sha1": "f6853230bbbd73cfc6d53bb490311393df91d28f", - "sha256": "sha256-OCgvt1xzPSOV3TTcC1nsy7Q6p8wxohomFrqqivy38jY=" + "jackson-core-2.18.0-rc1.module": { + "sha1": "12dede64fc0d1405b279bb7bd6e3b6df33c401e5", + "sha256": "sha256-xl48rP7iAFN7/ld6XJFnw/GWJe7xXT2x6dGEQs0hGEY=" } } }, @@ -10089,20 +10924,20 @@ }, { - "path": "com/fasterxml/jackson/core/jackson-databind/2.17.2", + "path": "com/fasterxml/jackson/core/jackson-databind/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-databind-2.17.2.pom": { - "sha1": "0091859e6b26ea19c60a35f49993f58c1c15d3bd", - "sha256": "sha256-0kUGmLrpC+M48rmfrtppTNRQrbUhJCE+elO0Ehm1QGI=" + "jackson-databind-2.18.0-rc1.pom": { + "sha1": "884efde7eac9bf4ea9ed6d93bf087089c0eaf172", + "sha256": "sha256-YD5TutTqMOQzmqHxEAQ6Z+FYlV60TRswhvCBAEq4sJs=" }, - "jackson-databind-2.17.2.jar": { - "sha1": "e6deb029e5901e027c129341fac39e515066b68c", - "sha256": "sha256-wEmT8zwPhFNCZTeE8U84Nz0AUoDmNZ21+AhwHPrnPAw=" + "jackson-databind-2.18.0-rc1.jar": { + "sha1": "f14e430aa7d04c1241cd5764013cd1fb33b94f00", + "sha256": "sha256-8HgR3EuBN2bzSGntJ7j7aZQos4m40zE1OW5JSrOzKY4=" }, - "jackson-databind-2.17.2.module": { - "sha1": "eaf601f0453b2fdd5048fdd12da745f8f435fb09", - "sha256": "sha256-9HC96JRNV9axUMqov1O7mCqZ6x1lkecxr8uXKrPddx8=" + "jackson-databind-2.18.0-rc1.module": { + "sha1": "8afe869e3e0e194ecb0b1a61357635371feb774e", + "sha256": "sha256-xwQUM1Ea8gTx24zhQzom0MCgA/DIiRTzU6ebmBFw/GY=" } } }, @@ -10134,12 +10969,12 @@ }, { - "path": "com/fasterxml/jackson/jackson-base/2.17.2", + "path": "com/fasterxml/jackson/jackson-base/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-base-2.17.2.pom": { - "sha1": "3264a20cda3d7b01815fb83a59cd124c25689f02", - "sha256": "sha256-fPnFn70UyQVnRxN7kNcKleh3YN/huCRWufAjF9W1b68=" + "jackson-base-2.18.0-rc1.pom": { + "sha1": "c1aaf1a35d2464e5e891e48d52adadc37a6193ab", + "sha256": "sha256-HGWLaQJXT/odhFEA4khtuk8SwBDMgDGWFweGfkOpVt4=" } } }, @@ -10156,12 +10991,12 @@ }, { - "path": "com/fasterxml/jackson/jackson-bom/2.17.2", + "path": "com/fasterxml/jackson/jackson-bom/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-bom-2.17.2.pom": { - "sha1": "e772457e00739867a8f382ef0a8c4dcb03558772", - "sha256": "sha256-H0crC8IATVz0IaxIhxQX+EGJ5481wElxg4f9i0T7nzI=" + "jackson-bom-2.18.0-rc1.pom": { + "sha1": "fa17302fa20114e758a1e2394ac82804ddc67066", + "sha256": "sha256-7/5r2W/0xIfUwmNBrWhUgGawpyK2zP237wn2VRbQknk=" } } }, @@ -10178,12 +11013,12 @@ }, { - "path": "com/fasterxml/jackson/jackson-parent/2.17", + "path": "com/fasterxml/jackson/jackson-parent/2.18-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-parent-2.17.pom": { - "sha1": "df97fedb1aae67d608a69fa9262410247f3d31af", - "sha256": "sha256-rubeSpcoOwQOQ/Ta1XXnt0eWzZhNiSdvfsdWc4DIop0=" + "jackson-parent-2.18-rc1.pom": { + "sha1": "37524f99cf067121ca21b7d3229324342bf4335f", + "sha256": "sha256-u9ZbiGL1WrZS/n4Dg49qwQynIUGsjsk2k0NaWgxY+u8=" } } }, @@ -10200,12 +11035,12 @@ }, { - "path": "com/fasterxml/jackson/module/jackson-modules-base/2.17.2", + "path": "com/fasterxml/jackson/module/jackson-modules-base/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-modules-base-2.17.2.pom": { - "sha1": "b3007bc606cad1aad0f2b7f16af1977a26051b2f", - "sha256": "sha256-rrMBBVHhN9CeuDhPO4PCQSXcOSwqmHIexorT/4TlWSU=" + "jackson-modules-base-2.18.0-rc1.pom": { + "sha1": "23cd0969e1a46558c6b99de29bfe8f1b7c996d54", + "sha256": "sha256-1QhPHKd7N6Da4fkGz4Hx3LF+ewUOXWYyokmxPgNma0Y=" } } }, @@ -10226,20 +11061,20 @@ }, { - "path": "com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.17.2", + "path": "com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.18.0-rc1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "jackson-module-jaxb-annotations-2.17.2.pom": { - "sha1": "0ad8d1eb06b0e3242b1160d25d223f28978b8f8b", - "sha256": "sha256-L4BbIPMNTBlqQV+9HljEE1p71xh9LhnFae9Eo2dKjTs=" + "jackson-module-jaxb-annotations-2.18.0-rc1.pom": { + "sha1": "2ff5a34de52e25debfa1c52ddcc5d5cbf69f9b64", + "sha256": "sha256-RTdvvE7ToPc/eMsnOEstuJDJ244ikIQkaXP25AKN4Xs=" }, - "jackson-module-jaxb-annotations-2.17.2.jar": { - "sha1": "c2978b818ef2f2b2738b387c143624eab611d917", - "sha256": "sha256-hVYckOm941aaaI9XQQvelGFAs1Wr3XCuwFP+yVTjAaY=" + "jackson-module-jaxb-annotations-2.18.0-rc1.jar": { + "sha1": "95b085253d574ae37fd92cbbc9d8939051b57f27", + "sha256": "sha256-083oiKh1HKLqQTDz7aWimJ95qu9s7qoydvwCSVMI3Ow=" }, - "jackson-module-jaxb-annotations-2.17.2.module": { - "sha1": "a7fe515d7d0ca4c75c58c6aa381d7f68bbaeb5ac", - "sha256": "sha256-JR4jRcce8k2uUpe84BAk2ESa3L6IJimArNCt1fiTil4=" + "jackson-module-jaxb-annotations-2.18.0-rc1.module": { + "sha1": "2e0743404e71110c72a67112ee336b4700e49a59", + "sha256": "sha256-YE//5aKOfa47dngcLPU2lX4N6eOJnmUKE/uJMxh99a0=" } } }, @@ -10271,12 +11106,12 @@ }, { - "path": "com/fasterxml/oss-parent/58", + "path": "com/fasterxml/oss-parent/61", "repo": "https://repo.maven.apache.org/maven2", "files": { - "oss-parent-58.pom": { - "sha1": "0ed9e5d9e7cad24fce51b18455e0cf5ccd2c94b6", - "sha256": "sha256-VnDmrBxN3MnUE8+HmXpdou+qTSq+Q5Njr57xAqCgnkA=" + "oss-parent-61.pom": { + "sha1": "8a4169cc2907589f72b053e7b9b02cb741bf1e46", + "sha256": "sha256-NklRPPWX6RhtoIVZhqjFQ+Er29gF7e75wSTbVt0DZUQ=" } } }, @@ -10591,6 +11426,21 @@ } }, + { + "path": "com/google/api/grpc/proto-google-common-protos/2.17.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "proto-google-common-protos-2.17.0.pom": { + "sha1": "d6acd1cd2d6e49b52f414af6427744700e551cb3", + "sha256": "sha256-PwKBU6WFxZ9Viz5Dp8mAmmAai7XpEGHWxlj/+iTLjiY=" + }, + "proto-google-common-protos-2.17.0.jar": { + "sha1": "07edf1e3aa96dc3861f7a8f24556c714e9c5b292", + "sha256": "sha256-TvH+DDJ/wVIdHXU7CxxKh1pUvRTr3tOv/wyjlTILbqk=" + } + } + }, + { "path": "com/google/auto/auto-parent/3", "repo": "https://repo.maven.apache.org/maven2", @@ -10869,6 +11719,17 @@ } }, + { + "path": "com/google/code/gson/gson-parent/2.10.1", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "gson-parent-2.10.1.pom": { + "sha1": "67ea6db077285dc50a9b0a627763764f0ef4a770", + "sha256": "sha256-QkjgiCQmxhUYI4XWCGw+8yYudplXGJ4pMGKAuFSCuDM=" + } + } + }, + { "path": "com/google/code/gson/gson-parent/2.11.0", "repo": "https://repo.maven.apache.org/maven2", @@ -11000,6 +11861,21 @@ } }, + { + "path": "com/google/code/gson/gson/2.10.1", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "gson-2.10.1.pom": { + "sha1": "ce159faf33c1e665e1f3a785a5d678a2b20151bc", + "sha256": "sha256-0rEVY09cCF20ucn/wmWOieIx/b++IkISGhzZXU2Ujdc=" + }, + "gson-2.10.1.jar": { + "sha1": "b3add478d4382b78ea20b1671390a858002feb6c", + "sha256": "sha256-QkHBSncnw0/uplB+yAExij1KkPBw5FJWgQefuU7kxZM=" + } + } + }, + { "path": "com/google/code/gson/gson/2.11.0", "repo": "https://repo.maven.apache.org/maven2", @@ -11233,6 +12109,21 @@ } }, + { + "path": "com/google/errorprone/error_prone_annotations/2.18.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "error_prone_annotations-2.18.0.pom": { + "sha1": "6d7bbfd3d7567e4c18e981a675ecda707e8a2db1", + "sha256": "sha256-kgE1eX3MpZF7WlwBdkKljTQKTNG80S9W+JKlZjvXvdw=" + }, + "error_prone_annotations-2.18.0.jar": { + "sha1": "89b684257096f548fa39a7df9fdaa409d4d4df91", + "sha256": "sha256-nmgUy3GBaYik/RsHqZOo8hu3BY1SLBYrHehJ4ZvqVK4=" + } + } + }, + { "path": "com/google/errorprone/error_prone_annotations/2.27.0", "repo": "https://repo.maven.apache.org/maven2", @@ -11249,16 +12140,16 @@ }, { - "path": "com/google/errorprone/error_prone_annotations/2.31.0", + "path": "com/google/errorprone/error_prone_annotations/2.32.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "error_prone_annotations-2.31.0.pom": { - "sha1": "6dcb31c7f3a4d987eb16c774050af00a3fbe0e25", - "sha256": "sha256-eF8uQKPgiapy2Mi8dYqkht3nYyh5R0PzHMWxzsyboQI=" + "error_prone_annotations-2.32.0.pom": { + "sha1": "4ebcd99b60a6c7145b1c30ee0bfcf9faf30eed08", + "sha256": "sha256-V2Uh6zUcCJ4sGWwg1SmJ0j3fJaMKnqz6BKVaPhL/3T4=" }, - "error_prone_annotations-2.31.0.jar": { - "sha1": "c3ba307b915d6d506e98ffbb49e6d2d12edad65b", - "sha256": "sha256-uo0g+x/BgWclUrMj88dUmzC+HVfEndWDXicp52R9nPo=" + "error_prone_annotations-2.32.0.jar": { + "sha1": "e5b2f8b1dede30f5f5bb0baf44f466397ce6b4f7", + "sha256": "sha256-H1L+25rI4Oaq8xKWT0s5AxLqRfkaVlcFDyl4CQe0hLo=" } } }, @@ -11384,6 +12275,17 @@ } }, + { + "path": "com/google/errorprone/error_prone_parent/2.18.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "error_prone_parent-2.18.0.pom": { + "sha1": "b1779a677965027cd2a3de91e61a80102086bb30", + "sha256": "sha256-R/Iumce/RmOR3vFvg3eYXl07pvW7z2WFNkSAVRPhX60=" + } + } + }, + { "path": "com/google/errorprone/error_prone_parent/2.27.0", "repo": "https://repo.maven.apache.org/maven2", @@ -11396,12 +12298,12 @@ }, { - "path": "com/google/errorprone/error_prone_parent/2.31.0", + "path": "com/google/errorprone/error_prone_parent/2.32.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "error_prone_parent-2.31.0.pom": { - "sha1": "2b0940b07047f8a2cdbd5f66305c89543d220b6d", - "sha256": "sha256-b/rV7o16qMAvSMNw+XGL4NThyZJnRodJZOo5eQb403Y=" + "error_prone_parent-2.32.0.pom": { + "sha1": "fc10adf1a4d7267120ef52c82a220c0a7eea18b1", + "sha256": "sha256-qhhWD46fe77s+d2unSDj8xv6i+iKbKV+K2mSchn8qSw=" } } }, @@ -11594,6 +12496,28 @@ } }, + { + "path": "com/google/guava/guava-parent/32.0.1-android", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "guava-parent-32.0.1-android.pom": { + "sha1": "f2a3e4ae647effebbd9a04a96fe30b8f65b1e786", + "sha256": "sha256-zds6lB1xvl6HHzmiObo7uIg8iMd2PYo9LTQrCaHV2jA=" + } + } + }, + + { + "path": "com/google/guava/guava-parent/32.0.1-jre", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "guava-parent-32.0.1-jre.pom": { + "sha1": "88c9e60e238868208ca8e375a475a23142e52ac6", + "sha256": "sha256-Q+0ONrNT9B5et1zXVmZ8ni35fO8G6xYGaWcVih0DTSo=" + } + } + }, + { "path": "com/google/guava/guava-parent/33.3.0-jre", "repo": "https://repo.maven.apache.org/maven2", @@ -11800,6 +12724,36 @@ } }, + { + "path": "com/google/guava/guava/32.0.1-android", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "guava-32.0.1-android.pom": { + "sha1": "d672711dc325178fb2856a071be888cfdd4ffcb9", + "sha256": "sha256-zybOY0YftYXK0l3GkydliDEiZDw77sXjJp9mfHMpWsQ=" + }, + "guava-32.0.1-android.jar": { + "sha1": "d3fe54a75aeaca33fc562a2a9c1dc181e54cc5e9", + "sha256": "sha256-EkKf+awzt6/YsaUHEXl1fPTTxH8PQJm8A4TmROy/gt0=" + } + } + }, + + { + "path": "com/google/guava/guava/32.0.1-jre", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "guava-32.0.1-jre.pom": { + "sha1": "4b29ff9dfc268252e73839b0f7324ef705e07108", + "sha256": "sha256-QsJX9/c203ezGv7u6XirJtcwzXCvYN3nZi4YI1LiSCo=" + }, + "guava-32.0.1-jre.jar": { + "sha1": "6e5d51a72d142f2d40a57dfb897188b36a95b489", + "sha256": "sha256-vX+iJ1kfuFCWd9DREiz5UVjzuKn0VlP1goHYefbcSMU=" + } + } + }, + { "path": "com/google/guava/guava/33.3.0-jre", "repo": "https://repo.maven.apache.org/maven2", @@ -11879,6 +12833,21 @@ } }, + { + "path": "com/google/j2objc/j2objc-annotations/2.8", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "j2objc-annotations-2.8.pom": { + "sha1": "c8daacea97066c6826844e2175ec89857e598122", + "sha256": "sha256-N/h3mLGDhRE8kYv6nhJ2/lBzXvj6hJtYAMUZ1U2/Efg=" + }, + "j2objc-annotations-2.8.jar": { + "sha1": "c85270e307e7b822f1086b93689124b89768e273", + "sha256": "sha256-8CqV+hpele2z7YWf0Pt99wnRIaNSkO/4t03OKrf01u0=" + } + } + }, + { "path": "com/google/j2objc/j2objc-annotations/3.0.0", "repo": "https://repo.maven.apache.org/maven2", @@ -11987,12 +12956,34 @@ }, { - "path": "com/google/protobuf/protobuf-bom/4.28.0", + "path": "com/google/protobuf/protobuf-bom/3.21.12", "repo": "https://repo.maven.apache.org/maven2", "files": { - "protobuf-bom-4.28.0.pom": { - "sha1": "5bf7899c5c7379d943a8dfe0d3dc3050bd355937", - "sha256": "sha256-/IKQtwylLUdGnrkDiZIxq4AErHriK7Y9liy4pMKN+yI=" + "protobuf-bom-3.21.12.pom": { + "sha1": "c90e513f991e8686e7ab7687aa5878f0c4b66fa8", + "sha256": "sha256-O72GqUBXpnHmPVX532EsZBlz1ecNba4qtFYk/xrfUcU=" + } + } + }, + + { + "path": "com/google/protobuf/protobuf-bom/3.22.3", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-bom-3.22.3.pom": { + "sha1": "8b84664286a47d748c83d82eced82d203e4a155c", + "sha256": "sha256-E6Mt+53m/Bw8P3r1Pk1cd/130rR2uuOLdLdYHN7i5lU=" + } + } + }, + + { + "path": "com/google/protobuf/protobuf-bom/4.28.1", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-bom-4.28.1.pom": { + "sha1": "66f05233b07672fbbcf47a2aa39caae7bd47fdc3", + "sha256": "sha256-3khaL/VKQwZHWcQj8/SHNt12KentLQHmQdVrCaKpPSk=" } } }, @@ -12027,6 +13018,21 @@ } }, + { + "path": "com/google/protobuf/protobuf-javalite/3.22.3", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-javalite-3.22.3.pom": { + "sha1": "4aba3f73780a8854e4a0fa4a2915edbed6e9ee3c", + "sha256": "sha256-jkCZ7nGZlK9mUIs2AorkTl5HRboTUTk+gNHk++UtBR8=" + }, + "protobuf-javalite-3.22.3.jar": { + "sha1": "7df7200bce0ff77dc66dd063df79ff74c6114bfc", + "sha256": "sha256-nSa+vSYH/QVTztv8Pko9PwbG56IH0rdMh/phgYOO0b8=" + } + } + }, + { "path": "com/google/protobuf/protobuf-java-util/3.4.0", "repo": "https://repo.maven.apache.org/maven2", @@ -12102,6 +13108,21 @@ } }, + { + "path": "com/google/protobuf/protobuf-java-util/3.22.3", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-java-util-3.22.3.pom": { + "sha1": "484df25bb5d185518dcc2f0e81cae697eee0f0f5", + "sha256": "sha256-tEcBsGoGSGXsm1YUqT6eKPrdfU38S0YPIcgZ71Pb4tY=" + }, + "protobuf-java-util-3.22.3.jar": { + "sha1": "749cd4fe8ab52f37bc186193802ba19f5b284647", + "sha256": "sha256-xhX3aHncXDA+TfW5Smr6OVNAWMdUXbLUg/2V2fY8i/4=" + } + } + }, + { "path": "com/google/protobuf/protobuf-java/3.0.0", "repo": "https://repo.maven.apache.org/maven2", @@ -12238,16 +13259,46 @@ }, { - "path": "com/google/protobuf/protobuf-java/4.28.0", + "path": "com/google/protobuf/protobuf-java/3.21.12", "repo": "https://repo.maven.apache.org/maven2", "files": { - "protobuf-java-4.28.0.pom": { - "sha1": "3a5c745b6559c8390f3675c82a7930be4ae56218", - "sha256": "sha256-HcGj/bW9SsaySg0sG5ur3MYAVd3SgY/6KTpbHBXVDZE=" + "protobuf-java-3.21.12.pom": { + "sha1": "78c539faf2fddf82de70e6d817a8cab6fe07b5d2", + "sha256": "sha256-CXiOUXdwUnUK3bE39cMbdwDlY6UsncRQlXqGVM/gVrU=" }, - "protobuf-java-4.28.0.jar": { - "sha1": "8b7f76d4c3179132637581aad5fb8207c992943a", - "sha256": "sha256-rSOIR3s7lplCQeZHMaE2iU3J/tbeufJ21ISosXGxRQw=" + "protobuf-java-3.21.12.jar": { + "sha1": "5589e79a33cb6509f7e681d7cf4fc59d47c51c71", + "sha256": "sha256-Pz7b2pKGJGCA8+r1Yd1rDVorHxAI9pCRFchgnOrp34c=" + } + } + }, + + { + "path": "com/google/protobuf/protobuf-java/3.22.3", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-java-3.22.3.pom": { + "sha1": "786c5a7c1c2e8bc3fad22ea7b243329bafc7aabe", + "sha256": "sha256-GG6nlBUPW0Kup+xgQd83PR2KioMWJPWKVd67YEPscxI=" + }, + "protobuf-java-3.22.3.jar": { + "sha1": "fdee98b8f6abab73f146a4edb4c09e56f8278d03", + "sha256": "sha256-WdOI6motLXaujv/3/U0MYMbw9GTD06ub6OWt0JKXVwg=" + } + } + }, + + { + "path": "com/google/protobuf/protobuf-java/4.28.1", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-java-4.28.1.pom": { + "sha1": "b5aa0ee42c549ae0dbd7ca909ab25044d21505d5", + "sha256": "sha256-24Xqk4k7Nt32HPRwCafqF7SGRtOJKSOxYnsrJnjGhWc=" + }, + "protobuf-java-4.28.1.jar": { + "sha1": "fd220ada9371efa092dec39719a3b9d7dd8a1d44", + "sha256": "sha256-H8di+IbU83gJ/mSJ0LjGpDCrlRl5IS0dQwfLLuN0VJw=" } } }, @@ -12367,12 +13418,34 @@ }, { - "path": "com/google/protobuf/protobuf-parent/4.28.0", + "path": "com/google/protobuf/protobuf-parent/3.21.12", "repo": "https://repo.maven.apache.org/maven2", "files": { - "protobuf-parent-4.28.0.pom": { - "sha1": "73d01263876ac4882426dfedb3f800feff999ad2", - "sha256": "sha256-86/a3a2isVeXySHBmyFehgbJ/doc6r+ws1xPwrxjEKE=" + "protobuf-parent-3.21.12.pom": { + "sha1": "d0bd5081b5289c68216b03cc840c5efd4dedfea1", + "sha256": "sha256-fj44jW/7fyDmb/JfRbk3i0Igt7L9Jh9rO8IGs9/4u8g=" + } + } + }, + + { + "path": "com/google/protobuf/protobuf-parent/3.22.3", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-parent-3.22.3.pom": { + "sha1": "1f6695a7969d66bb1714209a99828c6c9cd98100", + "sha256": "sha256-OZEz1/b1eTTddsSxjoY0j0JFMhCNr0oByPgguGZfCSk=" + } + } + }, + + { + "path": "com/google/protobuf/protobuf-parent/4.28.1", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "protobuf-parent-4.28.1.pom": { + "sha1": "baa7a62a69d3e042bd95b4563f3e1851e90b1976", + "sha256": "sha256-EZxIa5DXFvs9M2zqxG5m2zN3ZXSQCqvfwcinX5n4P/o=" } } }, @@ -12686,20 +13759,20 @@ }, { - "path": "com/squareup/okio/okio-jvm/3.9.0", + "path": "com/squareup/okio/okio-jvm/3.9.1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "okio-jvm-3.9.0.pom": { - "sha1": "bf3077cd09d62e9c637cade61800be83b76a964e", - "sha256": "sha256-VEiNRUqsyvaPcZnz3l3Ns4CBblfUYJBJF06FZSAROH4=" + "okio-jvm-3.9.1.pom": { + "sha1": "32a1fc013a444bd5d7c45346973c102d02dbeb1e", + "sha256": "sha256-VXZInO8kBTNoAPxt6VhUU18zVxpO/lpa0OybmwkNIdU=" }, - "okio-jvm-3.9.0.jar": { - "sha1": "eaa4f7858a1e80908b1a2e861e662edd7c6cbbb5", - "sha256": "sha256-3cOG/xS9JdXJNBZxlur0WxjeTyjhxVpNs3rllMv9N+Q=" + "okio-jvm-3.9.1.jar": { + "sha1": "79696e3f4ff05d41ba2b3dc68adb5808a2e5dc53", + "sha256": "sha256-/m/pE3j5v6ewjDhkgozkGABc8orMoS6IR+tlxWXDdQA=" }, - "okio-jvm-3.9.0.module": { - "sha1": "03406986e50ebaa5d0bdc723bc1f62253b74ccbb", - "sha256": "sha256-z5coTsYbtR5t/Lx/K22VVsm3s+PLIswOLU8O7782GVs=" + "okio-jvm-3.9.1.module": { + "sha1": "470544322c29b112668d2018c05fd94107b05e26", + "sha256": "sha256-sK+pGSxC18Rj3jjWMlk2xpAdnjtxSXNf/RihHfMQNKs=" } } }, @@ -12844,20 +13917,20 @@ }, { - "path": "com/squareup/okio/okio/3.9.0", + "path": "com/squareup/okio/okio/3.9.1", "repo": "https://repo.maven.apache.org/maven2", "files": { - "okio-3.9.0.pom": { - "sha1": "8989bd398b6baa872828d5cdc5b7cc70dad5c138", - "sha256": "sha256-FPNR2puXtDaeP26PaWsK1ANtFNIbD9l6pcjG7BW+fZA=" + "okio-3.9.1.pom": { + "sha1": "1cd169f2bbe6215607a62447b9e4b64a125b5e56", + "sha256": "sha256-06DDd+epr8zbsCqrXgUNwhL/2pQNvUcOo5cSpDQt8I4=" }, - "okio-3.9.0.jar": { - "sha1": "52794254a1fa50d5801f490e105842a894fb918d", - "sha256": "sha256-5RilmFYnOh/OGKx9E938aQ3vphItflzQDK4Zti0DR9k=" + "okio-3.9.1.jar": { + "sha1": "3f1067fc8f61b89e013ea121198c49c991d74cbb", + "sha256": "sha256-mcjrvEmV8p3ViwXXVYP8yLlX2yHu64xdiXM/DTSVWJc=" }, - "okio-3.9.0.module": { - "sha1": "9dcb7e1b533c25908a75d2a333b94e4e5e78bb3f", - "sha256": "sha256-aNHIef9liTHQKzrb6vu1EuFjwgqQyt8H2QyNvqfnYhA=" + "okio-3.9.1.module": { + "sha1": "eaa18fe21ddaef8640880e11315ef39757fbc75f", + "sha256": "sha256-m5C0J0pa1gLdV01tS0iQNmOy3ppgufw0AiSCk9hD4SE=" } } }, @@ -13467,6 +14540,21 @@ } }, + { + "path": "io/grpc/grpc-api/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-api-1.57.0.pom": { + "sha1": "80da637d6097a9b54ed1bf414f4d820995657737", + "sha256": "sha256-w/BUp8iGFkfQpVglsKlJ9E/PycZPR5CD2WgTgUxQJhI=" + }, + "grpc-api-1.57.0.jar": { + "sha1": "768ab3e583b213a3672ec776e70765b594e8bbe5", + "sha256": "sha256-jSw4Qpn4Tuiqf2cPAOfLJrh+IxzzCRR0MHsyt2kQ9xw=" + } + } + }, + { "path": "io/grpc/grpc-context/1.19.0", "repo": "https://repo.maven.apache.org/maven2", @@ -13527,6 +14615,21 @@ } }, + { + "path": "io/grpc/grpc-context/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-context-1.57.0.pom": { + "sha1": "311e0f150fb4db6696331bee424cbb91d8107421", + "sha256": "sha256-qyZOgr+2q4lfYBavizzERJWryB52nDD6WprgrRa+bMY=" + }, + "grpc-context-1.57.0.jar": { + "sha1": "8d8f26a9b0bed637ee4592e1df3ef134ed2c54fd", + "sha256": "sha256-lT/KzYL1MeabduODT1gwutTCKuhBROBY1x3ICnQwJ10=" + } + } + }, + { "path": "io/grpc/grpc-core/1.21.1", "repo": "https://repo.maven.apache.org/maven2", @@ -13572,6 +14675,21 @@ } }, + { + "path": "io/grpc/grpc-core/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-core-1.57.0.pom": { + "sha1": "dc7257d526fe94ee3a6d0705ab3a8445ad596129", + "sha256": "sha256-gYQEX1eR4Azyzbz16IRq/Uj1z35aTzj7W4MDx7Lv5Vs=" + }, + "grpc-core-1.57.0.jar": { + "sha1": "2b6ef5166f31315098fff9bb85f33ab5fed58f6b", + "sha256": "sha256-O+5IxzvExbVb7Xm+DkhK3ya6Vr675XmN2/NHFO8eHOo=" + } + } + }, + { "path": "io/grpc/grpc-netty/1.21.1", "repo": "https://repo.maven.apache.org/maven2", @@ -13617,6 +14735,21 @@ } }, + { + "path": "io/grpc/grpc-netty/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-netty-1.57.0.pom": { + "sha1": "cd8de8e73fe3919ce56e7cb3032a92e079ca6f9e", + "sha256": "sha256-7Z3917HtQ1avs8XRQH3ttjTIYC+0EEebSArYwROe4Xs=" + }, + "grpc-netty-1.57.0.jar": { + "sha1": "99cc01516c2fd1d134bf2585c2b38fa400804986", + "sha256": "sha256-gdQ/LU7Rj6NBvYQKNzXxQDpwB0oEbhV+J/Z5tyG0ya0=" + } + } + }, + { "path": "io/grpc/grpc-protobuf-lite/1.21.1", "repo": "https://repo.maven.apache.org/maven2", @@ -13662,6 +14795,21 @@ } }, + { + "path": "io/grpc/grpc-protobuf-lite/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-protobuf-lite-1.57.0.pom": { + "sha1": "806993ee12bd39a3f7d6c2183e98f1405a70527d", + "sha256": "sha256-sCO+cAiElIn2Uu7/df0P4aqckF9nHTROFtqv3fkhgZ0=" + }, + "grpc-protobuf-lite-1.57.0.jar": { + "sha1": "ca0084219b71d29cd9bfc3b81780aca91a965753", + "sha256": "sha256-LFB8AtmBuEohdj1E4Jr08nmIHdPiW+MID2NhJYYH8Zg=" + } + } + }, + { "path": "io/grpc/grpc-protobuf/1.21.1", "repo": "https://repo.maven.apache.org/maven2", @@ -13707,6 +14855,21 @@ } }, + { + "path": "io/grpc/grpc-protobuf/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-protobuf-1.57.0.pom": { + "sha1": "2fde58ea5390efbfd0eb87a8dca9fbb042814966", + "sha256": "sha256-wNy4xn/QHapjJW8Pi2jTcHzrfKhc2qt6PGw/9GDhPdE=" + }, + "grpc-protobuf-1.57.0.jar": { + "sha1": "49986e40de6cbd14ba26247639b18ab0bac921c1", + "sha256": "sha256-SfmG1OqxJhD9ukpokPylLV62U1mJFv24Y6Nm1eKO7Pc=" + } + } + }, + { "path": "io/grpc/grpc-stub/1.21.1", "repo": "https://repo.maven.apache.org/maven2", @@ -13752,6 +14915,21 @@ } }, + { + "path": "io/grpc/grpc-stub/1.57.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "grpc-stub-1.57.0.pom": { + "sha1": "270604148c51103a51f66885ebb5465653029061", + "sha256": "sha256-bURZSHxiHf8xUQqIgpBjYx6RXS3Md01xkoQYEW5ZqI0=" + }, + "grpc-stub-1.57.0.jar": { + "sha1": "262e1469c080164d5e2459f4908394d66f4e8828", + "sha256": "sha256-bm7hQVOfoU2fpHn39RFgVUREPH4BHnjic8+UaKoYMGA=" + } + } + }, + { "path": "io/netty/netty-buffer/4.1.34.Final", "repo": "https://repo.maven.apache.org/maven2", @@ -13783,16 +14961,16 @@ }, { - "path": "io/netty/netty-buffer/4.1.72.Final", + "path": "io/netty/netty-buffer/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-buffer-4.1.72.Final.pom": { - "sha1": "14db354f78e0ff68f0f59b2119ef12152fb767a9", - "sha256": "sha256-RZMB2nScter3IbXKw5wGYLLVn8ZiZAkVNuEhyxjYtBM=" + "netty-buffer-4.1.93.Final.pom": { + "sha1": "6079ad53a5f07ea9b4a22e7a8fa3f22fe5a2e25a", + "sha256": "sha256-g/vFTitzuG1Vsgj2GNGioVaRDsFG9+zldWUAe3UK3Xg=" }, - "netty-buffer-4.1.72.Final.jar": { - "sha1": "f306eec3f79541f9b8af9c471a0d5b63b7996272", - "sha256": "sha256-Vo/3zZ2OIoTsmAcwyIkk9oZkKSn48hmnRRi05kdV86E=" + "netty-buffer-4.1.93.Final.jar": { + "sha1": "87fac21f4ef95157866b07b48e3c707a2f13c581", + "sha256": "sha256-AHx9nDeN8C05BWfQ1931Qv/dsCG3MT2/UCOSET/6uwg=" } } }, @@ -13857,6 +15035,21 @@ } }, + { + "path": "io/netty/netty-codec-http2/4.1.93.Final", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "netty-codec-http2-4.1.93.Final.pom": { + "sha1": "1411e68f628370cffebcf164917d04a9768a9e3c", + "sha256": "sha256-CEQztC1UH3rEtZKH3SUyhc/aOj1l3nLnNou37D02cnE=" + }, + "netty-codec-http2-4.1.93.Final.jar": { + "sha1": "0f1625b43bde13ec057da0d2fe381ded2547a70e", + "sha256": "sha256-2WzAkEWhNBxtR0lDUqomO4e3L7HS6p7KFhqnOCC/6Ls=" + } + } + }, + { "path": "io/netty/netty-codec-http/4.1.34.Final", "repo": "https://repo.maven.apache.org/maven2", @@ -13888,16 +15081,16 @@ }, { - "path": "io/netty/netty-codec-http/4.1.72.Final", + "path": "io/netty/netty-codec-http/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-codec-http-4.1.72.Final.pom": { - "sha1": "84ad0a0bbd43a62df88b74749b8763da5124e0a4", - "sha256": "sha256-qM0VZZpXIAE5GIQ/yL8p84qBuD40gW+C45ek2zyGT1M=" + "netty-codec-http-4.1.93.Final.pom": { + "sha1": "d51ecb8192bd8b1a373d8b370829629871e008fd", + "sha256": "sha256-o9r/8HG20oToBj2WhD3iu4PPO4iergzJ4K22SlejG4I=" }, - "netty-codec-http-4.1.72.Final.jar": { - "sha1": "a8f062d67303a5e4b2bc2ad48fb4fd8c99108e45", - "sha256": "sha256-+m/siAEL+vanQVtTZGcbaxj/trNamGq5e0I/2MOgF0s=" + "netty-codec-http-4.1.93.Final.jar": { + "sha1": "36acf0c94d03eb6ecef78a749a32cbb7dc0c57b4", + "sha256": "sha256-2s94znirLSlXAyXbTNJFHqWJY5gH3pWIGg+nFVqea1U=" } } }, @@ -13948,16 +15141,16 @@ }, { - "path": "io/netty/netty-codec-socks/4.1.72.Final", + "path": "io/netty/netty-codec-socks/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-codec-socks-4.1.72.Final.pom": { - "sha1": "f4ced36d3bbeaf48e89c33400f8ffa7b7742157a", - "sha256": "sha256-s+tGfmS3210J9VxYuH0bMa62qfQsKMLWjh8TH9mqFns=" + "netty-codec-socks-4.1.93.Final.pom": { + "sha1": "b55e536b5be05c7ddf89cec051eb56a4d1a9059e", + "sha256": "sha256-jNgW7ZkalGBBurTLJL2cjkHuBpJRJRHy2DzvU462Bdc=" }, - "netty-codec-socks-4.1.72.Final.jar": { - "sha1": "d3bc427b6e2dc4bb6dc9d18d1cc47f8530970a8b", - "sha256": "sha256-M8TNE0hYqrxa/l3EQMiIAYYBfcTcVB80yOFr/8VUbQc=" + "netty-codec-socks-4.1.93.Final.jar": { + "sha1": "81ca78969afc60073e47c3b7b361cc3839392c73", + "sha256": "sha256-DqR7W6I8odqOuRRsj8dVwScUFGM7Hivizh33ZLoP/yo=" } } }, @@ -14008,16 +15201,16 @@ }, { - "path": "io/netty/netty-codec/4.1.72.Final", + "path": "io/netty/netty-codec/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-codec-4.1.72.Final.pom": { - "sha1": "31bbec5c37902fd2d728969353a0f658b768d4e5", - "sha256": "sha256-LYjRojCsykeXRUeCxSJuFhJyHU5zknwUL96Vop1JVCo=" + "netty-codec-4.1.93.Final.pom": { + "sha1": "78f5c49a4f880a309c74cdbc7da1d5f86c405848", + "sha256": "sha256-Gc3tJnoHDf8avJ0Cm1UvrSYqzBq6XGxnsiePyhE6Jqs=" }, - "netty-codec-4.1.72.Final.jar": { - "sha1": "613c4019d687db4e9a5532564e442f83c4474ed7", - "sha256": "sha256-XYWRyicaHpwiTo3jhzqpk2rLWB7g21FOfcGFI9820Ww=" + "netty-codec-4.1.93.Final.jar": { + "sha1": "503badb458b6586632be8d1f81aa4e5ab99a80fc", + "sha256": "sha256-mQw3gWjcY2TG/1aXAfTy8SL//omYs+GJ66TE2GjtEIQ=" } } }, @@ -14068,16 +15261,16 @@ }, { - "path": "io/netty/netty-common/4.1.72.Final", + "path": "io/netty/netty-common/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-common-4.1.72.Final.pom": { - "sha1": "34e72a4aa7e41b8f7e9461aca29abded92eb87b6", - "sha256": "sha256-1tMCSR85hIvxiJvyE35ufnfZbDlK9br4rGoJAVcs2nU=" + "netty-common-4.1.93.Final.pom": { + "sha1": "78ddda88aefd39b45f8adad57f11739f4ffb1d69", + "sha256": "sha256-QtiDsT6zjKv1SWFkYsXzMfUzO/DI/JIVdE+DwBgKT2s=" }, - "netty-common-4.1.72.Final.jar": { - "sha1": "a55bac9c3af5f59828207b551a96ac19bbfc341e", - "sha256": "sha256-ittMKRJgzrKFmmjEnwre7Ta/SVh2COK4Hs/2qvBgJek=" + "netty-common-4.1.93.Final.jar": { + "sha1": "1cfc49b91b0d3ddb30c9f7d8467e5d02ae8babdf", + "sha256": "sha256-RDuzFlmfsW47rrovtYiBgU1/8LevF2/nbjgHGm6G+MA=" } } }, @@ -14142,6 +15335,21 @@ } }, + { + "path": "io/netty/netty-handler-proxy/4.1.93.Final", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "netty-handler-proxy-4.1.93.Final.pom": { + "sha1": "8a43e9973a1fddb5ab96ada7b5e97ecc6644bdbd", + "sha256": "sha256-bcUNoOZ/WXgSh0+B6qRUBPfQdrgZnqkIiTKoXBthAkU=" + }, + "netty-handler-proxy-4.1.93.Final.jar": { + "sha1": "c165c1efe1b9c0cc22546a057b530611a088768b", + "sha256": "sha256-KsX3+++gtz73g4iQaTRNVRVQWhSyMDvmk8UALEht8rQ=" + } + } + }, + { "path": "io/netty/netty-handler/4.1.34.Final", "repo": "https://repo.maven.apache.org/maven2", @@ -14173,16 +15381,16 @@ }, { - "path": "io/netty/netty-handler/4.1.72.Final", + "path": "io/netty/netty-handler/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-handler-4.1.72.Final.pom": { - "sha1": "9b6e10d98a9d8eb82f7225c0691984bbb727de75", - "sha256": "sha256-KEnrx1zAfK0Tkd50/P9HtC8FW7Z2eFhcacLBsSsyPuk=" + "netty-handler-4.1.93.Final.pom": { + "sha1": "a7f67c9bef5dd2f2ca760dbec545c18c535d9937", + "sha256": "sha256-hKFSXKwLR1nvrvKZekf+Gbm1ZC+Sc/oP1YoudsegWf4=" }, - "netty-handler-4.1.72.Final.jar": { - "sha1": "9feee089fee606c64be90c0332db9aef1f7d8e46", - "sha256": "sha256-nLYBKvfgY2HXOKxOO9xJoVj4z4fZ3uDydEBWt9mcKNU=" + "netty-handler-4.1.93.Final.jar": { + "sha1": "10f7ed9d8e1bfcba416074c70e5388be96116bfc", + "sha256": "sha256-Tl9WOuFO1xM4GBbVgvX8/QYVrvspIDSGzft4LYoAoCs=" } } }, @@ -14235,6 +15443,28 @@ } }, + { + "path": "io/netty/netty-parent/4.1.93.Final", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "netty-parent-4.1.93.Final.pom": { + "sha1": "87bceff7410ea432c5b156b47001672898b98b42", + "sha256": "sha256-sQnLdvN1/tuKnvdaxYBjFw3rfqLd0CT0Zv723GXN/O4=" + } + } + }, + + { + "path": "io/netty/netty-parent/4.2.0.Alpha4", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "netty-parent-4.2.0.Alpha4.pom": { + "sha1": "bc3d7792f460741dbe29395436fa3cc540b4a3e4", + "sha256": "sha256-3NSeITIwt1CXzcjSHArzmyDnfJSzsXwfKeVnu2pXH2M=" + } + } + }, + { "path": "io/netty/netty-parent/5.0.0.Alpha2", "repo": "https://repo.maven.apache.org/maven2", @@ -14277,16 +15507,16 @@ }, { - "path": "io/netty/netty-resolver/4.1.72.Final", + "path": "io/netty/netty-resolver/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-resolver-4.1.72.Final.pom": { - "sha1": "dd29c40d6fd0272a5b5acb13de71dbdd76828b67", - "sha256": "sha256-5QFMXh5/GEXCxvWgYPo43r17Z/ARYS38AjmqKOAF/hQ=" + "netty-resolver-4.1.93.Final.pom": { + "sha1": "8804d195e660e499ef700307bce2d98947a8b8c8", + "sha256": "sha256-WzUMPJHp5V0py+aM/k7yEWzB8DKGd+v59hW6twgsefQ=" }, - "netty-resolver-4.1.72.Final.jar": { - "sha1": "4ff458458ea32ed1156086820b624a815fcbf2c0", - "sha256": "sha256-ZHRZiqt8ydjWz6BsBb0bGa2/f4RR291zBwszpsYLG5A=" + "netty-resolver-4.1.93.Final.jar": { + "sha1": "3860e99075f9e078364ed38f6d6fc8825b7a168a", + "sha256": "sha256-5Zdwtm6Bgi5dERrE5UTX6wxUPgooX1JijlOUGs2O11k=" } } }, @@ -14306,21 +15536,6 @@ } }, - { - "path": "io/netty/netty-tcnative-classes/2.0.46.Final", - "repo": "https://repo.maven.apache.org/maven2", - "files": { - "netty-tcnative-classes-2.0.46.Final.pom": { - "sha1": "a7320b070f2c6a163d8c4c2950ff17082a2b33d4", - "sha256": "sha256-QKcxnAeUbUeZf4KzTP6m2yDUWDyKyZ3B/4wSpNtoVyY=" - }, - "netty-tcnative-classes-2.0.46.Final.jar": { - "sha1": "9937a832d9c19861822d345b48ced388b645aa5f", - "sha256": "sha256-0+yIjcxKx5Fb+ItBfF4E/TVPQxEDKnSKaILfCTR+7Zo=" - } - } - }, - { "path": "io/netty/netty-tcnative-classes/2.0.66.Final", "repo": "https://repo.maven.apache.org/maven2", @@ -14336,17 +15551,6 @@ } }, - { - "path": "io/netty/netty-tcnative-parent/2.0.46.Final", - "repo": "https://repo.maven.apache.org/maven2", - "files": { - "netty-tcnative-parent-2.0.46.Final.pom": { - "sha1": "5247a6d71a79156c8dc1ef097a0ad9493ee8b3dd", - "sha256": "sha256-xrXuOgGkTZabGKR4qHZGGfM6aOT7XAu/bd3F9qYRN24=" - } - } - }, - { "path": "io/netty/netty-tcnative-parent/2.0.66.Final", "repo": "https://repo.maven.apache.org/maven2", @@ -14358,6 +15562,72 @@ } }, + { + "path": "io/netty/netty-transport-native-unix-common/4.1.93.Final", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "netty-transport-native-unix-common-4.1.93.Final.pom": { + "sha1": "d46081b528ad76d312a9430c4ed3680b35f2434e", + "sha256": "sha256-Fbwltn/wpJJysnDvK4z/1iAFfKFssp3/etVmGtyirhI=" + }, + "netty-transport-native-unix-common-4.1.93.Final-linux-aarch_64.jar": { + "sha1": "e0b840b5c40b076c9eee393c93ddd4f2139f6374", + "sha256": "sha256-KWdfHZovCeQmwAFuX7iTKNOK+tBAPxvRuY+YUlPZatg=" + }, + "netty-transport-native-unix-common-4.1.93.Final-linux-x86_64.jar": { + "sha1": "41a8be31f5189df95f1bd2fdb8dafb3b55cf2939", + "sha256": "sha256-iSOnO6ijc/e5lJBvWQK6n2u1nRgdStAVdqbgxauwm2c=" + }, + "netty-transport-native-unix-common-4.1.93.Final-osx-aarch_64.jar": { + "sha1": "fd3dda7202b2a0a2faf0e762e25fdd0f17ff6816", + "sha256": "sha256-bG7PcwFtNg4JocrDGs2VP1CDCWEvG5fXPbLtCBPYvxQ=" + }, + "netty-transport-native-unix-common-4.1.93.Final-osx-x86_64.jar": { + "sha1": "4e74587e53b6215827c6f5290265b3d61c95c593", + "sha256": "sha256-3t7WAiCcI/Yk6dkfPUwny7qbMD416ptGkwkNVKwkW2w=" + }, + "netty-transport-native-unix-common-4.1.93.Final.jar": { + "sha1": "f4fb8b4c8da539091f43abcbb9f0389e48807eea", + "sha256": "sha256-d0FlocTbqssX+cGtZms1aaallxWugo58PUdwP0eaU+c=" + } + } + }, + + { + "path": "io/netty/netty-transport-native-unix-common/4.2.0.Alpha4", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "netty-transport-native-unix-common-4.2.0.Alpha4.pom": { + "sha1": "315ac41629c17548eea92db2414c8e5f8bcde6b0", + "sha256": "sha256-cXXycaxqV12Rv41PWYCyWXWL8Q111KiObx8cxJY2Fc8=" + }, + "netty-transport-native-unix-common-4.2.0.Alpha4-linux-aarch_64.jar": { + "sha1": "4a28b6c9383b7b408411f4c59c6b29b776aa128a", + "sha256": "sha256-J7e5d0pDWVkbCKUx4t9yqbAVJ7mkR8WcnNB/AI77TUM=" + }, + "netty-transport-native-unix-common-4.2.0.Alpha4-linux-riscv64.jar": { + "sha1": "ddd9fd9911ab318f393702ed9778e2ecf9a3b981", + "sha256": "sha256-q81/Mvnnq4D/mCrRUbCjRgER5Tl1v9sb78VC22iXijM=" + }, + "netty-transport-native-unix-common-4.2.0.Alpha4-linux-x86_64.jar": { + "sha1": "c95f28f360fa9937b65e82bdf2a45ab85191c732", + "sha256": "sha256-TFHSbxbP6OlD1G0Fma219UOxMKIXl9konVjoo9Ixxuw=" + }, + "netty-transport-native-unix-common-4.2.0.Alpha4-osx-aarch_64.jar": { + "sha1": "b786c7efc7113eb49cb2ba2eb79c3dda653544f2", + "sha256": "sha256-e9Dlz43ZZRybmaCatFDQVM6ec8MxynuB4q/rR3f7ecc=" + }, + "netty-transport-native-unix-common-4.2.0.Alpha4-osx-x86_64.jar": { + "sha1": "43362b57dabd3590d2b054b1dc645abb50cfbb83", + "sha256": "sha256-7NIbGpuWz5Grst4bz9rXMfygQtoZiiPSynwX0kdJi8A=" + }, + "netty-transport-native-unix-common-4.2.0.Alpha4.jar": { + "sha1": "da6eac65dcad16981fc298cb7121fc0e29d80e3c", + "sha256": "sha256-Get3np0HgwjrOaahBzOR/VM59L4tvYaCJArleI+9XVk=" + } + } + }, + { "path": "io/netty/netty-transport/4.1.34.Final", "repo": "https://repo.maven.apache.org/maven2", @@ -14389,16 +15659,16 @@ }, { - "path": "io/netty/netty-transport/4.1.72.Final", + "path": "io/netty/netty-transport/4.1.93.Final", "repo": "https://repo.maven.apache.org/maven2", "files": { - "netty-transport-4.1.72.Final.pom": { - "sha1": "5cfee79648d225627c6739ced2a86982030f5f48", - "sha256": "sha256-zym9hyqMKvvNt0snqekOZxlWhfVwEdXfxHWk8mF5TbQ=" + "netty-transport-4.1.93.Final.pom": { + "sha1": "4d785a8c99b478a5b36561688f6acbe4e8f8e221", + "sha256": "sha256-DdYqDrPLHqABpNBCbk9cCN8ccNkmVnW/+lxYNhNCLUM=" }, - "netty-transport-4.1.72.Final.jar": { - "sha1": "99138b436a584879355aca8fe3c64b46227d5d79", - "sha256": "sha256-xfto6aZbbopRat/Ln6MjR57ntNlEnYpSnS7Ks9NxHVo=" + "netty-transport-4.1.93.Final.jar": { + "sha1": "1a0894915c8027ce83b4d6a811c4e765955efd15", + "sha256": "sha256-paeAGbwc1D28PHt83TgBkSyibR9Jj7VgUU/uSXhkupY=" } } }, @@ -14467,6 +15737,25 @@ } }, + { + "path": "io/perfmark/perfmark-api/0.26.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "perfmark-api-0.26.0.pom": { + "sha1": "9a44b3ed71075f2b06d387464f62d1e50a3c31ba", + "sha256": "sha256-ft7khhbhe2Epfq46gutIOoXlbSVnkpN4qkbzCpUDIto=" + }, + "perfmark-api-0.26.0.jar": { + "sha1": "ef65452adaf20bf7d12ef55913aba24037b82738", + "sha256": "sha256-t9I+k6NFN84zJwgmmg0UBHiKW14ZSegvVTX85Rs+qVs=" + }, + "perfmark-api-0.26.0.module": { + "sha1": "953bb3972d2834617a3155f4d4f121fa11658721", + "sha256": "sha256-MdgyMyR0zkgVD1uuADNDMZE28zav0QdqKJApMZ4+qXo=" + } + } + }, + { "path": "it/unimi/dsi/fastutil/7.2.0", "repo": "https://repo.maven.apache.org/maven2", @@ -14691,6 +15980,21 @@ } }, + { + "path": "javax/xml/bind/jaxb-api/2.2.12", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "jaxb-api-2.2.12.pom": { + "sha1": "650e118d32cfcbbe5da8727ccda4023e4b2331bc", + "sha256": "sha256-Gs08hdTP48Sa4eKsKXdCujnaW7swo60OQXbqbGNI/O8=" + }, + "jaxb-api-2.2.12.jar": { + "sha1": "4c83805595b15acf41d71d49e3add7c0e85baaed", + "sha256": "sha256-aKYh7BhIX5UdCax29D5X7uOU2+QsuPKkxZyTKW+p3MY=" + } + } + }, + { "path": "javax/xml/bind/jaxb-api/2.3.1", "repo": "https://repo.maven.apache.org/maven2", @@ -15507,6 +16811,17 @@ } }, + { + "path": "org/apache/apache/29", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "apache-29.pom": { + "sha1": "57991491045c9a37a3113f24bf29a41a4ceb1459", + "sha256": "sha256-PkkDcXSCC70N9jQgqXclWIY5iVTCoGKR+mH3J6w1s3c=" + } + } + }, + { "path": "org/apache/apache/31", "repo": "https://repo.maven.apache.org/maven2", @@ -15762,6 +17077,17 @@ } }, + { + "path": "org/apache/commons/commons-parent/58", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "commons-parent-58.pom": { + "sha1": "26758faad5d4d692a3cee724c42605d2ee9d5284", + "sha256": "sha256-LUsS4YiZBjq9fHUni1+pejcp2Ah4zuy2pA2UbpwNVZA=" + } + } + }, + { "path": "org/apache/commons/commons-parent/69", "repo": "https://repo.maven.apache.org/maven2", @@ -16300,6 +17626,21 @@ } }, + { + "path": "org/bitbucket/b_c/jose4j/0.9.5", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "jose4j-0.9.5.pom": { + "sha1": "dfea5de0f47c10dbfafb02d5d28edd8b44a45907", + "sha256": "sha256-utAkGAobRpy9lOXy2xKEG8rFRD2VRWB/Zzz95nfB2HI=" + }, + "jose4j-0.9.5.jar": { + "sha1": "e4ca26802488e6f16e24558d74ac8775a955fdd3", + "sha256": "sha256-gI+zFm8+Z9rZgRwzECmrFoEkL9Urc1vD8z8oEWf8xy4=" + } + } + }, + { "path": "org/bouncycastle/bcpkix-jdk15on/1.48", "repo": "https://repo.maven.apache.org/maven2", @@ -16345,6 +17686,21 @@ } }, + { + "path": "org/bouncycastle/bcpkix-jdk18on/1.77", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "bcpkix-jdk18on-1.77.pom": { + "sha1": "665a47cc915b558c7ea8502611c6584a08fd6bd4", + "sha256": "sha256-j7CSbwLixLLcUuR+uwk/kvHTu28UnCpcyl4qZI0sSY0=" + }, + "bcpkix-jdk18on-1.77.jar": { + "sha1": "ed953791ba0229747dd0fd9911e3d76a462acfd3", + "sha256": "sha256-Gsf+jv1bLzjNwWW+WgZ1c0/kSAjauScHIB8DpTXW8bg=" + } + } + }, + { "path": "org/bouncycastle/bcprov-jdk15on/1.48", "repo": "https://repo.maven.apache.org/maven2", @@ -16420,6 +17776,36 @@ } }, + { + "path": "org/bouncycastle/bcprov-jdk18on/1.77", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "bcprov-jdk18on-1.77.pom": { + "sha1": "74bb7e46ca1ee431a3774ec6f437afd2e7707de3", + "sha256": "sha256-rROCz80DvN2L4TkTwC9E/UadCnalPPLK71vhgK3DayM=" + }, + "bcprov-jdk18on-1.77.jar": { + "sha1": "2cc971b6c20949c1ff98d1a4bc741ee848a09523", + "sha256": "sha256-2ruYwk1yybn1hWM9HfnFzVjZrTc9DNaBNn5qYDpJXVg=" + } + } + }, + + { + "path": "org/bouncycastle/bcutil-jdk18on/1.77", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "bcutil-jdk18on-1.77.pom": { + "sha1": "512b4d85dae265e62fd1c9f2d8b4710de9e24cbf", + "sha256": "sha256-Fj36ZjL/uSinBcqDciNQys6knM1iPOc2RaXMOw+p5ug=" + }, + "bcutil-jdk18on-1.77.jar": { + "sha1": "de3eaef351545fe8562cf29ddff4a403a45b49b7", + "sha256": "sha256-lHZzvLxajd4tL6aIpbdZjQym4qdKfqMM2T8E9rOtaPg=" + } + } + }, + { "path": "org/checkerframework/checker-compat-qual/2.5.6", "repo": "https://repo.maven.apache.org/maven2", @@ -16530,20 +17916,39 @@ }, { - "path": "org/checkerframework/checker-qual/3.46.0", + "path": "org/checkerframework/checker-qual/3.33.0", "repo": "https://repo.maven.apache.org/maven2", "files": { - "checker-qual-3.46.0.pom": { - "sha1": "023fdbd16acb7971828aaa6938b7d2d224e188f0", - "sha256": "sha256-p4dUUeMHmg2EH0WWOeaRpSkx+js+dFHYjzBxbvjNiEs=" + "checker-qual-3.33.0.pom": { + "sha1": "6d43e2eacef053cffd73da56734e9a8a138b52be", + "sha256": "sha256-9VqSICenj92LPqFaDYv+P+xqXOrDDIaqivpKW5sN9gM=" }, - "checker-qual-3.46.0.jar": { - "sha1": "829954afc56f1737a1df3ab5aa889de574b97cc4", - "sha256": "sha256-S8d6FyJ5MEw/NQRda5yEkngPBH5a2ZGdd0McrynkRAE=" + "checker-qual-3.33.0.jar": { + "sha1": "de2b60b62da487644fc11f734e73c8b0b431238f", + "sha256": "sha256-4xYlW7/Nn+UNFlMUuFq7KzPLKmapPEkdtkjkmKgsLeE=" }, - "checker-qual-3.46.0.module": { - "sha1": "d3a39af168be2cc83d9023b723e56f0c51c9e066", - "sha256": "sha256-HrKvP0T95kPuHZ9B1Of8hTLqahFKRqgiqX9tji/UWvU=" + "checker-qual-3.33.0.module": { + "sha1": "8bde6d6ac61111dd13bb39a2e3881444c58dfe90", + "sha256": "sha256-6FIddWJdQScsdn0mKhU6wWPMUFtmZEou9wX6iUn/tOU=" + } + } + }, + + { + "path": "org/checkerframework/checker-qual/3.47.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "checker-qual-3.47.0.pom": { + "sha1": "5fabc95174fd33d894b4fe48528ae0c7542ac317", + "sha256": "sha256-51JV3CRtBTR4GMkXTX2FyeGnjF11auPck0esVl6DiN0=" + }, + "checker-qual-3.47.0.jar": { + "sha1": "2b3cbe34a6af46bb3692aac208caa4f55cd28584", + "sha256": "sha256-mECnfBdalaYMZtqPUGhxqQemxPyKcDvvOMcVvG1N5iY=" + }, + "checker-qual-3.47.0.module": { + "sha1": "c160220f4bce95b4d8b71861950a9bfed570ca38", + "sha256": "sha256-ggk8eakHei4h/Zp0q+HxE4yyTU8XNF0g9WN09CXNsE8=" } } }, @@ -16659,6 +18064,33 @@ } }, + { + "path": "org/codehaus/groovy/groovy/3.0.17", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "groovy-3.0.17.pom": { + "sha1": "5fc8c8f7b55ef44a71b72d9f118c3fea42df09fc", + "sha256": "sha256-IHr96IAXKAbAo7IPEi2WefF18i0VsF6H9Yn3JV3Tg2I=" + }, + "groovy-3.0.17-grooid.jar": { + "sha1": "6c8f0e82c5998d7919d6748151d905c6e9cb82dd", + "sha256": "sha256-mGZyHojjL2EGF+v3CbSWtkQm0Sgd49d0S29yGR7iVmU=" + }, + "groovy-3.0.17-groovydoc.jar": { + "sha1": "9748100ed37c2fa4efe7ed3ad3633eca98c89055", + "sha256": "sha256-UL4ZqdRHx5EgdTE1F02GLYXXFO5y2xpCw6g30lg76YM=" + }, + "groovy-3.0.17-indy.jar": { + "sha1": "7b4dc796458411cc7edaabc20185d01dea187349", + "sha256": "sha256-C5/IgZt2MM93J+F3TJ2if3zMDggU4igkGxXbUYMaR1I=" + }, + "groovy-3.0.17.jar": { + "sha1": "23a103e379f90f9271209c97129d5568676b2cda", + "sha256": "sha256-ntKlZahZKp9j9BCv7YktDKa+wf+WJ3zkzH8+LjZueU8=" + } + } + }, + { "path": "org/codehaus/mojo/animal-sniffer-annotations/1.14", "repo": "https://repo.maven.apache.org/maven2", @@ -16719,6 +18151,21 @@ } }, + { + "path": "org/codehaus/mojo/animal-sniffer-annotations/1.23", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "animal-sniffer-annotations-1.23.pom": { + "sha1": "f09f8a453e1b883f9876fbd5f3280d367ff90f2a", + "sha256": "sha256-VhDbBrczZBrLx6DEioDEAGnbYnutBD+MfI16+09qPSc=" + }, + "animal-sniffer-annotations-1.23.jar": { + "sha1": "3c0daebd5f0e1ce72cc50c818321ac957aeb5d70", + "sha256": "sha256-n/5Sa/Q6Y0jp2LM7nNb1gKf17tDPBVkTAH7aJj3pdNA=" + } + } + }, + { "path": "org/codehaus/mojo/animal-sniffer-annotations/1.24", "repo": "https://repo.maven.apache.org/maven2", @@ -16778,6 +18225,17 @@ } }, + { + "path": "org/codehaus/mojo/animal-sniffer-parent/1.23", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "animal-sniffer-parent-1.23.pom": { + "sha1": "1b4cb41a44448b41c20c9c2de022a0ad40bf195c", + "sha256": "sha256-a38FSrhqh/jiWZ81gIsJiZIuhrbKsTmIAhzRJkCktAQ=" + } + } + }, + { "path": "org/codehaus/mojo/animal-sniffer-parent/1.24", "repo": "https://repo.maven.apache.org/maven2", @@ -16822,6 +18280,21 @@ } }, + { + "path": "org/codehaus/mojo/mojo-parent/74", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "mojo-parent-74.pom": { + "sha1": "2ef0a93fea172659305d787e51dfd4af9247334c", + "sha256": "sha256-FHIyWhbwsb2r7SH6SDk3KWSURhApTOJoGyBZ7cZU8rM=" + }, + "mojo-parent-74-config.jar": { + "sha1": "f45156cf24427341d33abff0389cfb55249feaa4", + "sha256": "sha256-jizWlVREal200Mk8sB4mH5vAGA4PoNba1RIhm6fp8rg=" + } + } + }, + { "path": "org/codehaus/mojo/mojo-parent/84", "repo": "https://repo.maven.apache.org/maven2", @@ -17429,6 +18902,21 @@ } }, + { + "path": "org/javassist/javassist/3.30.2-GA", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "javassist-3.30.2-GA.pom": { + "sha1": "005e8895e8598228aa2c1d3b426585a49e2c22fc", + "sha256": "sha256-QieFHLcOQ/c6zti//mkt465EEsSmLc3/BV5RPuPYAaM=" + }, + "javassist-3.30.2-GA.jar": { + "sha1": "284580b5e42dfa1b8267058566435d9e93fae7f7", + "sha256": "sha256-66NykJlLXkho86+Y/xE/YkSmsJk4XZrUaIEwfTywGq8=" + } + } + }, + { "path": "org/jdom/jdom2/2.0.6", "repo": "https://repo.maven.apache.org/maven2", @@ -17459,6 +18947,21 @@ } }, + { + "path": "org/jetbrains/annotations/23.0.0", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "annotations-23.0.0.pom": { + "sha1": "deb853be3c9e05ed99fbbf83e49d349d08a6d10e", + "sha256": "sha256-yUkPZVEyMo3yz7z990P1P8ORbWwdEENxdabKbjpndxw=" + }, + "annotations-23.0.0.jar": { + "sha1": "8cc20c07506ec18e0834947b84a864bfc094484e", + "sha256": "sha256-ew8ZckCCy/y8ZuWr6iubySzwih6hHhkZM+1DgB6zzQU=" + } + } + }, + { "path": "org/jetbrains/dokka/dokka-core/1.4.32", "repo": "https://repo.maven.apache.org/maven2", @@ -17788,6 +19291,17 @@ } }, + { + "path": "org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "org.jetbrains.kotlin.jvm.gradle.plugin-1.9.24.pom": { + "sha1": "d050bb3d024bd6f0ee751bc26a1761af699eafe7", + "sha256": "sha256-N+pZwZfiZJfy4QAx8keP5BtiTv+Qgfwhen5kuVNPiYM=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-android-extensions/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -17848,6 +19362,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-android-extensions/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-android-extensions-1.9.24.pom": { + "sha1": "46d6a339d8021baa08e388b163c13a44408fc26c", + "sha256": "sha256-6QmjYHLn/lbQULgKdXEDwdP4dz+2wb0GcrxKr7hRCEs=" + }, + "kotlin-android-extensions-1.9.24.jar": { + "sha1": "8f507629deb592b3378eea1797506bf35c370159", + "sha256": "sha256-4z5UUlSR0ZgdRODKmnxTIWh91QRDPsVJZhqb5UYKEW4=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-annotations-jvm/1.3.72", "repo": "https://repo.maven.apache.org/maven2", @@ -17968,6 +19497,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-build-common/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-build-common-1.9.24.pom": { + "sha1": "9d01309170c151f43082e1a118a59c0066e9af60", + "sha256": "sha256-iNt6ER1bfbV+4gKFEX2mNz3NJQQxqd58h8ZCJRYL0RI=" + }, + "kotlin-build-common-1.9.24.jar": { + "sha1": "c1d2c9192c45e7df2cc876baf03eca6fd86feace", + "sha256": "sha256-+RqOaTfik7FEv6F0DHB3xa12EdtI9CnKMcCm2yduaUo=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-build-tools-api/1.9.0", "repo": "https://repo.maven.apache.org/maven2", @@ -17984,16 +19528,31 @@ }, { - "path": "org/jetbrains/kotlin/kotlin-build-tools-impl/1.9.0", + "path": "org/jetbrains/kotlin/kotlin-build-tools-api/1.9.24", "repo": "https://repo.maven.apache.org/maven2", "files": { - "kotlin-build-tools-impl-1.9.0.pom": { - "sha1": "3d7403fd4d2f8914b46b250f6746da17c5a1ba47", - "sha256": "sha256-3Qrb3SO5XBP8N2JAqCoL/F1k37eBON7GJASX6QVtQIw=" + "kotlin-build-tools-api-1.9.24.pom": { + "sha1": "2c51e0e4ec08880042a55d02308acd08eb67bd09", + "sha256": "sha256-efIYZmDsHYeQhu4jEEeY2M1PthcsJ5xeVuAsqeVbxHU=" }, - "kotlin-build-tools-impl-1.9.0.jar": { - "sha1": "1ce2bdaf6dd80d4e7748058231059766e298a6de", - "sha256": "sha256-1yw3nxx1eZrAxm5sMVj2iGW9/tGlw1xepBwnihuAUBo=" + "kotlin-build-tools-api-1.9.24.jar": { + "sha1": "7815f17102735413773a54a9baa742358225cf77", + "sha256": "sha256-ZUX99qL/t4jN3O3KymMiOdx+XmHD90SCNzXjse2cG1Q=" + } + } + }, + + { + "path": "org/jetbrains/kotlin/kotlin-build-tools-impl/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-build-tools-impl-1.9.24.pom": { + "sha1": "8ff2a7423593d6fe6e41781419ecf93b1fdb59f3", + "sha256": "sha256-WI+dA6B9qcDw3JZu6OWqjBEhsUf+1MdxsdwSTMnLONc=" + }, + "kotlin-build-tools-impl-1.9.24.jar": { + "sha1": "6a9f370891b2e8afcc31a189c39e4652a1e95a12", + "sha256": "sha256-VPyCvEOOGGoMEGH55uYZEQuozUnFH6GOcFb726IpFhc=" } } }, @@ -18058,6 +19617,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-compiler-embeddable-1.9.24.pom": { + "sha1": "3fbd9c879bd84704a4c457237ce625d02f8f3d3c", + "sha256": "sha256-1w0fiFkkQ/R1eVFUVqTWwxBRztoK0RRGkjrK/kwMldE=" + }, + "kotlin-compiler-embeddable-1.9.24.jar": { + "sha1": "78dab849090e6c5e2eadb6e59a11cdc28fb67a08", + "sha256": "sha256-5x/xnmsUGrhakyj9AQlBUxowJUMCa9QkTJWtwgjVAfY=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-compiler-runner/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18118,6 +19692,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-compiler-runner/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-compiler-runner-1.9.24.pom": { + "sha1": "7374875ba5c5357ad118b9bc6805af736a38d3ce", + "sha256": "sha256-wb508udfB+SamqaJA+DctogA0iRkBBi0hHfuQsvDWQQ=" + }, + "kotlin-compiler-runner-1.9.24.jar": { + "sha1": "0ca8384aa1ed84329f3811f628cc016631d17e65", + "sha256": "sha256-g4Q5dMH/0NNmbTxkk0Hb/TB32eFAZlVKakR7laMB3S0=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-daemon-client/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18178,6 +19767,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-daemon-client/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-daemon-client-1.9.24.pom": { + "sha1": "972589e8218e392e4fbefead7d562afd707048f0", + "sha256": "sha256-tv4ne9GuP/zAzriOxmZZmHpc0TeaiXaDEvXe3x8uH+U=" + }, + "kotlin-daemon-client-1.9.24.jar": { + "sha1": "2e099afd326c9d61474f95bf674fb749a8e150ca", + "sha256": "sha256-WIqveo7Y55uL8+qLknj/Enii1ZKFpF4Jjxz8v7Dc080=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-daemon-embeddable/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18238,6 +19842,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-daemon-embeddable-1.9.24.pom": { + "sha1": "f7e844af58da4383a0b6a3a2720109b36bbb7c51", + "sha256": "sha256-T7V/xqxyCVGzIkd0s7sqVFSelj0vTf3GhB6Ex77WKrE=" + }, + "kotlin-daemon-embeddable-1.9.24.jar": { + "sha1": "86685b9c5e8d170925bd9ddbdc263374a6a73281", + "sha256": "sha256-F3vIsqQHbcznh4rQ2P0HFjrzF44/qQ7mPU9zO7R7/ck=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugins-bom/1.9.0", "repo": "https://repo.maven.apache.org/maven2", @@ -18253,6 +19872,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugins-bom/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugins-bom-1.9.24.pom": { + "sha1": "9fad12ce285c79cffd3ccf504eadfe2ef3a856cb", + "sha256": "sha256-wqVTvkQFNLjTMOV69hNjc1WLXgIPppzPsDsuWDx1nAA=" + }, + "kotlin-gradle-plugins-bom-1.9.24.module": { + "sha1": "36dcbdc83d2639a2d4b8be8986d27b8514b51504", + "sha256": "sha256-BEh8cNHIzCkBwDdNgarX+k/Rp5NeJa200LH69WkKzNs=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.0", "repo": "https://repo.maven.apache.org/maven2", @@ -18268,6 +19902,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugin-annotations-1.9.24.pom": { + "sha1": "a29837622ca77c429e5c6fc87259002527fdc396", + "sha256": "sha256-fHb3hHzJ5bWOGoJbbqAZV7QoHpHmzXBcFmy+afvDtYs=" + }, + "kotlin-gradle-plugin-annotations-1.9.24.jar": { + "sha1": "cdee65760ea002d55b21e0be9965eea982278312", + "sha256": "sha256-syBxajMCclSau65oGoD14P5YBLo5TQ8kW1s3f6JWNVk=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18392,6 +20041,57 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugin-api-1.9.24.pom": { + "sha1": "143265101184b4e2958af866bcf9478846e9b08d", + "sha256": "sha256-r9FlfZ0Vx2BxZ1InnZEdG73PjfTPXZYEUGHjCunBMX4=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle70.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle71.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle74.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle75.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle76.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle80.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle81.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24-gradle82.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24.jar": { + "sha1": "346254737044a5b3874ce50e314b16af8e03258e", + "sha256": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" + }, + "kotlin-gradle-plugin-api-1.9.24.module": { + "sha1": "059997cfc706fb4671aee860e0f597c64fe097b8", + "sha256": "sha256-kB+s0LsPLdJ9XzvJDkQvJ3OrEuHOcgnT78HlhWNsfWQ=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.7.22", "repo": "https://repo.maven.apache.org/maven2", @@ -18437,6 +20137,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugin-idea-proto-1.9.24.pom": { + "sha1": "48034ffe67b773ffc085d3c584bc05dec6f408e4", + "sha256": "sha256-3gafD+sze0Nbc/GdKaISONBW5oegumvivczlmvqSa7Y=" + }, + "kotlin-gradle-plugin-idea-proto-1.9.24.jar": { + "sha1": "6cbed8e30d8dd9893288df9c90b0e63845484650", + "sha256": "sha256-hR4BJ+5ixRDpf4UB6Q/V6yTQ15bHCcv5SvM5R0Fre/4=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.7.22", "repo": "https://repo.maven.apache.org/maven2", @@ -18506,6 +20221,29 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugin-idea-1.9.24.pom": { + "sha1": "65410955029495cab939d7150a207a40382708f9", + "sha256": "sha256-aTnfzQ6JgI3AA25alaOPcb+EKF53bpEFIdVWJnp8sMc=" + }, + "kotlin-gradle-plugin-idea-1.9.24-test-fixtures.jar": { + "sha1": "a56be188448e33b451eb0ae1a42fd969466a0d80", + "sha256": "sha256-3K68dLVdbyu/p8K17MsbJN0on+YLxJbFElL6KfgzMXQ=" + }, + "kotlin-gradle-plugin-idea-1.9.24.jar": { + "sha1": "83cf5d4acdbf6c1e7b32ca96cb79b96e4cce032e", + "sha256": "sha256-jRr4djLZUUjxIqn6CuKQPBnub6t9AeAX924NLJoCLCA=" + }, + "kotlin-gradle-plugin-idea-1.9.24.module": { + "sha1": "00254d9e957869d44afab327fc48be5fdc686244", + "sha256": "sha256-4Jx9wdImjqtl5EGtLjgWDzGHsNjAv5zxrUyF+nUjm6Q=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18630,6 +20368,57 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugin-model-1.9.24.pom": { + "sha1": "5548b23bdbfe0becc84467fddee4827cad2a70cc", + "sha256": "sha256-rquP4uqM+lwumZi1/nU4MaeYfCx4Q6U1MjYqB/pvABg=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle70.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle71.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle74.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle75.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle76.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle80.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle81.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24-gradle82.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24.jar": { + "sha1": "149d2d9a524d7ce15dd47c39016b892f7c534b04", + "sha256": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=" + }, + "kotlin-gradle-plugin-model-1.9.24.module": { + "sha1": "3a8518ee9cc1a7428acca6b4fe264c313199e292", + "sha256": "sha256-cQXlShB2dqp9KAzFqUl0QX4qO1cD1w3WH8yr6wccSug=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-gradle-plugin/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18754,6 +20543,57 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-gradle-plugin-1.9.24.pom": { + "sha1": "c9f5818bde6faa94feae19015f3ae01b6b37cece", + "sha256": "sha256-ilwTAHAhV//cHyV1hDZZbsVsM3Z8GqLouOskamWs9SM=" + }, + "kotlin-gradle-plugin-1.9.24-gradle70.jar": { + "sha1": "3e48cabfc51636a0604e9392cf58da34c2c52e6b", + "sha256": "sha256-WYTn7ayqj/8dnJZ4Yxx4X+s6OgXzl/s4xNBMC4xmzvs=" + }, + "kotlin-gradle-plugin-1.9.24-gradle71.jar": { + "sha1": "c79e311ee2b381d2f0c1843aaa25feadec1f2235", + "sha256": "sha256-ONxdX/ZPtxIy4cgykEMIwFwuZzsN5bpiE9OMYOeUedQ=" + }, + "kotlin-gradle-plugin-1.9.24-gradle74.jar": { + "sha1": "d7f75ba8e3806b710667d7cc3331a6138bfe6d12", + "sha256": "sha256-rzgRuEIxzDQC6xjV8wl19ly7Er9ZooOOZnbK3CGkXOs=" + }, + "kotlin-gradle-plugin-1.9.24-gradle75.jar": { + "sha1": "4aa1007137fc76c21a6a589e38eb7c9d3c821b69", + "sha256": "sha256-uUJVNzhZaAnN4UbQj/Y0IwCMh5v/PUZXTD2mUK3S+wM=" + }, + "kotlin-gradle-plugin-1.9.24-gradle76.jar": { + "sha1": "7ec0adb0493147dc411411858c40726721445b9b", + "sha256": "sha256-gbScHvP4tkWpZxeSzD6M5eaFyXu9etxOjjYdiImpSC8=" + }, + "kotlin-gradle-plugin-1.9.24-gradle80.jar": { + "sha1": "90b4e3831ba648ecccb48c1a7b97b8c149838ae9", + "sha256": "sha256-VIgRkqenujjURY5NTCDQb2HvZCsdri40uifQXpxFcCc=" + }, + "kotlin-gradle-plugin-1.9.24-gradle81.jar": { + "sha1": "ef6ff726b583b111888989260b58e9ef86ae47f2", + "sha256": "sha256-e+3V4mSSIRwK8EVaNGWl7KEvjuyTCB85/lfs0QAuCHM=" + }, + "kotlin-gradle-plugin-1.9.24-gradle82.jar": { + "sha1": "b6f5f875b19f9240f2e83e00f6f2b9dff1ebc2c3", + "sha256": "sha256-6K7ZqBLmU2zu+z7VaPE0ZPoF8ka/0TaTONZDyDKUAks=" + }, + "kotlin-gradle-plugin-1.9.24.jar": { + "sha1": "de0cabc6ad835af8f4227e082710e205f2f3a202", + "sha256": "sha256-5XbqGm20PVDauzvTPAg/ITij5J8JqN/icF3hkmHQ7Qc=" + }, + "kotlin-gradle-plugin-1.9.24.module": { + "sha1": "85a12a2ec770f7374ad1e8c3bd22e9198184397b", + "sha256": "sha256-txNZQoRrVH+xtZaGQXBGPC81+hW1qtkzX60P/YamE3s=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18815,16 +20655,31 @@ }, { - "path": "org/jetbrains/kotlin/kotlin-klib-commonizer-embeddable/1.9.0", + "path": "org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.24", "repo": "https://repo.maven.apache.org/maven2", "files": { - "kotlin-klib-commonizer-embeddable-1.9.0.pom": { - "sha1": "210d03d9e5afa2938c9a6d20ce164c59277dc437", - "sha256": "sha256-L9STJpNwf9ujj80diJL7TdPPAIC5LxJSX8cF42G2eTs=" + "kotlin-klib-commonizer-api-1.9.24.pom": { + "sha1": "cfb87b603215ac03131a422c35e43396ecb1e559", + "sha256": "sha256-6pO4z4DdKXdKf7GEeclxH7uWPqhqwjq2FOepQAUsZ34=" }, - "kotlin-klib-commonizer-embeddable-1.9.0.jar": { - "sha1": "bae135d2d5ed2ae9c2c9b7f8300dbcb345ef8bc7", - "sha256": "sha256-zdYmTXJPcRKakwi+JEAsqMccKrICywO2hEmdqXrdS4Q=" + "kotlin-klib-commonizer-api-1.9.24.jar": { + "sha1": "77da2fbc04153a45bb3ef1370256128e5547b388", + "sha256": "sha256-U791bL22Uj3LTA16syrLZBR5bBz0nOQxvkC3DMV9tUk=" + } + } + }, + + { + "path": "org/jetbrains/kotlin/kotlin-klib-commonizer-embeddable/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-klib-commonizer-embeddable-1.9.24.pom": { + "sha1": "d427951e95431e1c0b7d7526071f6f63b27d68c4", + "sha256": "sha256-yshuQs6nFQwXJJW69k1hWar/vCjFm1+433K+p1iL9Rw=" + }, + "kotlin-klib-commonizer-embeddable-1.9.24.jar": { + "sha1": "3046e5df580dee1f9eaac5f4a6278ccbb47f8908", + "sha256": "sha256-AUyBXNeOK4yub4JeHOpPMd6v4HEBOh0G/jZXVzTDA6E=" } } }, @@ -18889,6 +20744,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-native-utils/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-native-utils-1.9.24.pom": { + "sha1": "d69d7511388b7e7f93b473304af7e0945bdaab10", + "sha256": "sha256-uvA25RxRge8Q8wVRXRnfawKWsLcIS0g9I4oImN630i0=" + }, + "kotlin-native-utils-1.9.24.jar": { + "sha1": "55c5f408d8febbc4858a5adfae9d2bec1853ae54", + "sha256": "sha256-I1WvMJo7FgeymmF02Fe05umxs2EH1sHvu8PMSbpDRQw=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-project-model/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -18949,6 +20819,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-project-model/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-project-model-1.9.24.pom": { + "sha1": "76b46d3a36b048e36371453fe9f41d1676449ad8", + "sha256": "sha256-sF4O4QAsGO3t626JrwfjvheFB9sT2hutbs52vmDz7es=" + }, + "kotlin-project-model-1.9.24.jar": { + "sha1": "3f4faa3597b080350b68256e256f499d5fb9ba37", + "sha256": "sha256-Nri/x5EqvuVIWSxcI5keVRQODS17OhqTTdPOj6Q0+N0=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-reflect/1.1.3-2", "repo": "https://repo.maven.apache.org/maven2", @@ -19099,6 +20984,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-reflect/1.9.20", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-reflect-1.9.20.pom": { + "sha1": "476ae7a409377d13b2bd1def9ad51afddbaef0c2", + "sha256": "sha256-lCtehgLTF+wTZS8cAiIFK7kIF/KM9v6dRxEvCbPo5n0=" + }, + "kotlin-reflect-1.9.20.jar": { + "sha1": "34eeb4eed5f493cdbb760ef50a5653ec414006bf", + "sha256": "sha256-SbZvmonVD9KVTC6K6sgOT0iLCgkyKiXvrWJhV2cT3A8=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-reflect/2.0.20", "repo": "https://repo.maven.apache.org/maven2", @@ -19174,6 +21074,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-scripting-common/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-scripting-common-1.9.24.pom": { + "sha1": "d887d5d4c60791a22a98ed2d2df375c82725e1b9", + "sha256": "sha256-S9rpUqslCWFRsfqERCooGupzwW0dTNVdigLDccqJusQ=" + }, + "kotlin-scripting-common-1.9.24.jar": { + "sha1": "48e672815d9b6bb7fcebb8c1bd2de0c449e4fb16", + "sha256": "sha256-KqeY6XgokBDYByTdGdn+GQtSQkFIEQT89RjAO8OdTks=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -19234,6 +21149,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-scripting-compiler-embeddable-1.9.24.pom": { + "sha1": "6606b0a767ad1cda3172f8026327eca538631bd4", + "sha256": "sha256-FUgOkd8v/sfFfOHgpfFBBltFIrbbyJsv2yk9xsVwwMU=" + }, + "kotlin-scripting-compiler-embeddable-1.9.24.jar": { + "sha1": "1e6b33f8a691420c1265349809192b66b7e56e8b", + "sha256": "sha256-02gR+1yZeXaEH/PQqxnGt96RkomeQIK6Hz/7oH6UBfQ=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -19294,6 +21224,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-scripting-compiler-impl-embeddable-1.9.24.pom": { + "sha1": "f387a72d0d5c22e65b6e5cc0ccccc7af9d35e105", + "sha256": "sha256-Sg6yUXF8Sih6ZBfp/QRBZ4xJatxnAdhasPFi8W0s+4c=" + }, + "kotlin-scripting-compiler-impl-embeddable-1.9.24.jar": { + "sha1": "e1c67ba2d4663fbb142770f473230acc84ffdc07", + "sha256": "sha256-i/2A2RNqKjJhALC3O/saG7NX7d+uDYEiDkYSa4im7no=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -19354,6 +21299,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-scripting-jvm-1.9.24.pom": { + "sha1": "7e63ead600945ce25a151fbf0c64b6de117ed3bd", + "sha256": "sha256-kkM+M+MLpFvMS/hKxUsX0p8Dlkp2BwYW1sZS3WxhySU=" + }, + "kotlin-scripting-jvm-1.9.24.jar": { + "sha1": "f179cc31fb89102c0e229c23b7d852d9840e13c7", + "sha256": "sha256-G9aQBgqUhDl3N0pFds2J10nk7srx+3pYA2/rOuVRxKw=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-script-runtime/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -19414,6 +21374,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-script-runtime/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-script-runtime-1.9.24.pom": { + "sha1": "51507a8e5f24d78a56407cd105abd59ee7ed765b", + "sha256": "sha256-mGDF58qg5AlxmVCQEtoD01GX/teewKkKUOKPjeh1QE0=" + }, + "kotlin-script-runtime-1.9.24.jar": { + "sha1": "96771497da90fbc5af1c90fce148db2595a62502", + "sha256": "sha256-MUx9MI/nUGVDZbrGFEeAYTyRac89nh2vurkc+AvcNXw=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-stdlib-common/1.2.71", "repo": "https://repo.maven.apache.org/maven2", @@ -19789,6 +21764,25 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-stdlib-common/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-stdlib-common-1.9.24.pom": { + "sha1": "07cb3ec6397e7a1af330aaecc983ba28c0d532bb", + "sha256": "sha256-XZfiDNWGLoR6aYF1uTno3Fxr11vtmZ1vPU6ghIESFsA=" + }, + "kotlin-stdlib-common-1.9.24.jar": { + "sha1": "aeb7c2b1f05dab8319bf42e55da030377e4a74fa", + "sha256": "sha256-bTum+TuinyOZ1/yHO+R5xsOORJE2z1QvVRVfAOTs7NQ=" + }, + "kotlin-stdlib-common-1.9.24.module": { + "sha1": "d43e713100f22438a84f709a82a8a67a02408ca7", + "sha256": "sha256-6Y6oxE+zaCDQG7iwAxaOI6IhtAHLQyVtcjo/C3fWFsI=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.2.71", "repo": "https://repo.maven.apache.org/maven2", @@ -20000,16 +21994,31 @@ }, { - "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.0", + "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.20", "repo": "https://repo.maven.apache.org/maven2", "files": { - "kotlin-stdlib-jdk7-1.9.0.pom": { - "sha1": "5ce6c5278ef6e342507a96372ee534ed0b830e54", - "sha256": "sha256-wRB08MiYqYuGPGFEcdQ409+Soewzgqbjf5NdfXGVS1o=" + "kotlin-stdlib-jdk7-1.9.20.pom": { + "sha1": "4ecc926f594a40a6fe3793b118d624600d0a95ad", + "sha256": "sha256-AS4cVe1q3kF7y4JBEuvqaCrWJd++4WCFw3nM+hT68DM=" }, - "kotlin-stdlib-jdk7-1.9.0.jar": { - "sha1": "f320478990d05e0cfaadd74f9619fd6027adbf37", - "sha256": "sha256-t5eaeqyUBV8Nnx/TtHzl/+HLYDKoQrqfvnGG8IUokXg=" + "kotlin-stdlib-jdk7-1.9.20.jar": { + "sha1": "8b4b73f4e08efaae93fc01d8c6eaab58a72d2ab3", + "sha256": "sha256-xUUdZ6J/M6/QmRPGfhzro4l65wiEsk7w/3EVflW2CGU=" + } + } + }, + + { + "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-stdlib-jdk7-1.9.24.pom": { + "sha1": "2544da33aa2bb2aec8093c42ffd8fe8462b1abe8", + "sha256": "sha256-RYapN9W8vDqzBCwECaHHKWFLy6PHpylvJS1ibuNzh9Q=" + }, + "kotlin-stdlib-jdk7-1.9.24.jar": { + "sha1": "46b6e1099acabc71feca1c0013deee78e6793d07", + "sha256": "sha256-tmmbhQugeJ8ukEJ5zYvce+qRMP/RV826AB/HQl2KR7c=" } } }, @@ -20225,16 +22234,31 @@ }, { - "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.0", + "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.20", "repo": "https://repo.maven.apache.org/maven2", "files": { - "kotlin-stdlib-jdk8-1.9.0.pom": { - "sha1": "4f04e57e4a12d4a59f620c63520681c4ff1d03e6", - "sha256": "sha256-ZNWY3YjiUEZnMeIDBKtvBsu7urfuMitHA7a1n4gcT5I=" + "kotlin-stdlib-jdk8-1.9.20.pom": { + "sha1": "4d1d45eee1908adc2ee53cd0bb23af956e5e8ee4", + "sha256": "sha256-o7B96wkfKu1Z1lWYhPRPmc/135ufo1okvNa4sGnP9I0=" }, - "kotlin-stdlib-jdk8-1.9.0.jar": { - "sha1": "e000bd084353d84c9e888f6fb341dc1f5b79d948", - "sha256": "sha256-pZ+iT98f+1lLrs2/D9EAEPl3zqECNtSH/jRkl3pzd/o=" + "kotlin-stdlib-jdk8-1.9.20.jar": { + "sha1": "e2b4d1f475ae0606d063a84fce4dccdb45c7e12a", + "sha256": "sha256-+DP8yU8LscMbnni9S9p+oj9Xn/NAiuGpTi61dHCGoqs=" + } + } + }, + + { + "path": "org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-stdlib-jdk8-1.9.24.pom": { + "sha1": "e2e78f895432156561c66666221bb09bc298773b", + "sha256": "sha256-BuBt70n5aq9uXD7EKDauWdbi2mJUcAkUKBZ1Z53J8qU=" + }, + "kotlin-stdlib-jdk8-1.9.24.jar": { + "sha1": "0a2f6d82081a54b52ceb120c5a18f87402ccab0c", + "sha256": "sha256-W1u/s+EYS14TMXw9QiN/okrdRDsud4GWHuozTbE2rbE=" } } }, @@ -20660,28 +22684,82 @@ }, { - "path": "org/jetbrains/kotlin/kotlin-stdlib/1.9.21", + "path": "org/jetbrains/kotlin/kotlin-stdlib/1.9.20", "repo": "https://repo.maven.apache.org/maven2", "files": { - "kotlin-stdlib-1.9.21.pom": { - "sha1": "f359a0b7743208bf0dced0ecff1f314daa5fd6a8", - "sha256": "sha256-yAfZL3xqobZcBs+HIyNjUE5pD8o/PB4nIGYwoTIv1+A=" + "kotlin-stdlib-1.9.20.pom": { + "sha1": "3f738a2bb6623e58335de00d020e5055dc8dbc89", + "sha256": "sha256-43IWpzLI6Bqf0FtN2JLDDKwMrXtOP9ovlmP0jogHQcA=" }, - "kotlin-stdlib-1.9.21-all.jar": { + "kotlin-stdlib-1.9.20-all.jar": { "sha1": "6c69e7b26179394dafd3c90e630ef763b8c1a267", "sha256": "sha256-zsOLwzAucqiq+c3kNrWpBx7gMx4q0F6E2LuJczTX6dQ=" }, - "kotlin-stdlib-1.9.21-common.jar": { + "kotlin-stdlib-1.9.20-common.jar": { "sha1": "4c7276a1529397ee6389483a408c57a9c6d4ca7d", "sha256": "sha256-zBF0wWk6JC3Wy8gWpSfEU+BBhJTjbFDNxleL9AFxrNs=" }, - "kotlin-stdlib-1.9.21.jar": { - "sha1": "17ee3e873d439566c7d8354403b5f3d9744c4c9c", - "sha256": "sha256-O0eTE6tsrqTl4l097oyoDDAsibpz4a9Nr6oQD275KWo=" + "kotlin-stdlib-1.9.20.jar": { + "sha1": "e58b4816ac517e9cc5df1db051120c63d4cde669", + "sha256": "sha256-KKNbzf9G2GT4DzRqYX5IYoSyCNFzeMQZAN+x3pWpDmw=" }, - "kotlin-stdlib-1.9.21.module": { - "sha1": "54e2cb958990f19cb559ec25a49a1652239852a1", - "sha256": "sha256-0wGffw1xkkzkcpjJzEavAkX3UhlxmzXFkV+8x+emk5U=" + "kotlin-stdlib-1.9.20.module": { + "sha1": "3eccbf1caf5170544beef2ea9b3085625320f6f2", + "sha256": "sha256-3Mql0xVHD6s5IFAohru4Xy2myGECxl2cBEEFRO7bIBk=" + } + } + }, + + { + "path": "org/jetbrains/kotlin/kotlin-stdlib/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-stdlib-1.9.24.pom": { + "sha1": "ae5307b336e03bb7abd6138a40fef4bfa4d23d39", + "sha256": "sha256-uc6tTCIt7pDHT28BPTFqnlD4EaApMxPDNRrssvfM7V8=" + }, + "kotlin-stdlib-1.9.24-all.jar": { + "sha1": "6c69e7b26179394dafd3c90e630ef763b8c1a267", + "sha256": "sha256-zsOLwzAucqiq+c3kNrWpBx7gMx4q0F6E2LuJczTX6dQ=" + }, + "kotlin-stdlib-1.9.24-common.jar": { + "sha1": "4c7276a1529397ee6389483a408c57a9c6d4ca7d", + "sha256": "sha256-zBF0wWk6JC3Wy8gWpSfEU+BBhJTjbFDNxleL9AFxrNs=" + }, + "kotlin-stdlib-1.9.24.jar": { + "sha1": "9928532f12c66ad816a625b3f9984f8368ca6d2b", + "sha256": "sha256-hYuQJpbanPWFq52Y/8HCcSJpgoNU3+kQfjcRsISjZGg=" + }, + "kotlin-stdlib-1.9.24.module": { + "sha1": "74b9eb72eea173f0c02581227e99269239543ada", + "sha256": "sha256-8uKmVztbUmXEEtXFgfv46gDGKxC5yS1WdMnpfy8zNbM=" + } + } + }, + + { + "path": "org/jetbrains/kotlin/kotlin-stdlib/1.9.25", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-stdlib-1.9.25.pom": { + "sha1": "cd80842137758a376e09fd243351e10abb0fa13c", + "sha256": "sha256-fcMxikdte5AtDSevm1b2Y+jMQmOi0zrQUMertlpbZ6E=" + }, + "kotlin-stdlib-1.9.25-all.jar": { + "sha1": "6c69e7b26179394dafd3c90e630ef763b8c1a267", + "sha256": "sha256-zsOLwzAucqiq+c3kNrWpBx7gMx4q0F6E2LuJczTX6dQ=" + }, + "kotlin-stdlib-1.9.25-common.jar": { + "sha1": "4c7276a1529397ee6389483a408c57a9c6d4ca7d", + "sha256": "sha256-zBF0wWk6JC3Wy8gWpSfEU+BBhJTjbFDNxleL9AFxrNs=" + }, + "kotlin-stdlib-1.9.25.jar": { + "sha1": "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7", + "sha256": "sha256-+c3Nv/H13oU4CuUml35oNybCqkLbHtbm5Qronklulf0=" + }, + "kotlin-stdlib-1.9.25.module": { + "sha1": "b36cccb05e35f533bf4a44ce7ba25dca4d356a2b", + "sha256": "sha256-Q+BqZsO3XKPkxcswSWjqg1ImJHuj9WExK9Gepi3oRqc=" } } }, @@ -20758,6 +22836,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-tooling-core/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-tooling-core-1.9.24.pom": { + "sha1": "11b2027c6bdbae80921412e4d925db1f30af692e", + "sha256": "sha256-dbytE+kWgPzwEsjuGqGqxxn1m2IbOUyj/DLGJf+YclY=" + }, + "kotlin-tooling-core-1.9.24.jar": { + "sha1": "bdc01105250e7ecc8bbcf49a21805685cd557dda", + "sha256": "sha256-iTjrl+NjINqj5vsqYP0qBbIy/0pVcXPFAZ8EW4gy2fQ=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-tooling-metadata/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -20833,6 +22926,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-util-io/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-util-io-1.9.24.pom": { + "sha1": "aef498b49987356e1f412778ac7b36aaba820f46", + "sha256": "sha256-82VnN3kyTzMtOTkMeAd1h4BNEeznKv5K7uMlOtZTPFE=" + }, + "kotlin-util-io-1.9.24.jar": { + "sha1": "f402c94b93eab99bb1af746126cf979c748064cf", + "sha256": "sha256-u0z0H/UG5Q+bLDQiBkmIFupO3f6ImYqQtotDlLT6xfo=" + } + } + }, + { "path": "org/jetbrains/kotlin/kotlin-util-klib/1.6.20", "repo": "https://repo.maven.apache.org/maven2", @@ -20893,6 +23001,21 @@ } }, + { + "path": "org/jetbrains/kotlin/kotlin-util-klib/1.9.24", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "kotlin-util-klib-1.9.24.pom": { + "sha1": "4ae70269519ca011c7d423b60a7ec1b8ed860591", + "sha256": "sha256-krQjr9XnKbsRT3G1ip4DhF3+K9pWJFTrvbg8nYOyMHE=" + }, + "kotlin-util-klib-1.9.24.jar": { + "sha1": "d66bfd072c4f44b520afbed38641853770a819f8", + "sha256": "sha256-4NqKfwZIV8BIOmVyfRYtPtV84m1+R3ix8ADg0MDck3E=" + } + } + }, + { "path": "org/jetbrains/markdown-jvm/0.2.1", "repo": "https://repo.maven.apache.org/maven2", @@ -21006,6 +23129,36 @@ } }, + { + "path": "org/junit/junit-bom/5.9.2", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "junit-bom-5.9.2.pom": { + "sha1": "645a08cbe455cad14d8bfb25a35d7f594c53cafd", + "sha256": "sha256-LtB9ZYRRMfUzaoZHbJpAVrWdC1i5gVqzZ5uw82819wU=" + }, + "junit-bom-5.9.2.module": { + "sha1": "911eb82319eec8e880e4d32ab4da7323837dfc00", + "sha256": "sha256-qxN7pajjLJsGa/kSahx23VYUtyS6XAsCVJdyten0zx8=" + } + } + }, + + { + "path": "org/junit/junit-bom/5.9.3", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "junit-bom-5.9.3.pom": { + "sha1": "b1874b6a66656e4f5e4b492ab321249bcb749dc7", + "sha256": "sha256-TQMpzZ5y8kIOXKFXJMv+b/puX9KIg2FRYnEZD9w0Ltc=" + }, + "junit-bom-5.9.3.module": { + "sha1": "d70d3d9a503c573e648ef70fb2e211fbe44aa63e", + "sha256": "sha256-tAH9JZAeWCpSSqU0PEs54ovFbiSWHBBpvytLv87ka5M=" + } + } + }, + { "path": "org/junit/junit-bom/5.11.0", "repo": "https://repo.maven.apache.org/maven2", @@ -21324,6 +23477,21 @@ } }, + { + "path": "org/ow2/asm/asm-analysis/9.6", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "asm-analysis-9.6.pom": { + "sha1": "6d72da882f75491c24ba711c50c345703a0bb8c0", + "sha256": "sha256-+j+ZUCHP9PQTkwbmz/7uoHU5EGRA0psZzAanpjahOFA=" + }, + "asm-analysis-9.6.jar": { + "sha1": "9ce6c7b174bd997fc2552dff47964546bd7a5ec3", + "sha256": "sha256-2Sgy18N+3AfGDiVZrGEYsx1kLjN6ZnHty3up+uaO27s=" + } + } + }, + { "path": "org/ow2/asm/asm-bom/9.7", "repo": "https://repo.maven.apache.org/maven2", @@ -21425,6 +23593,21 @@ } }, + { + "path": "org/ow2/asm/asm-commons/9.6", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "asm-commons-9.6.pom": { + "sha1": "fb17682f6b9f1a62cb1870336ccc167363a657bf", + "sha256": "sha256-qYrkiVM0uvj/hr1mUWIQ29mgPxpuFeR92oKvz2tT13w=" + }, + "asm-commons-9.6.jar": { + "sha1": "f1a9e5508eff490744144565c47326c8648be309", + "sha256": "sha256-eu/Q1cCQFwHGn3UT/tp2X7a+M68s56oXxXgfyHZXxRE=" + } + } + }, + { "path": "org/ow2/asm/asm-commons/9.7", "repo": "https://repo.maven.apache.org/maven2", @@ -21630,6 +23813,21 @@ } }, + { + "path": "org/ow2/asm/asm-tree/9.6", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "asm-tree-9.6.pom": { + "sha1": "8871f9681c20388b2212e2db082f4d9b608a6944", + "sha256": "sha256-G8tIHX/Ba5VbtgygfIz6JCS87ni9xAW7oxx9b13C0RM=" + }, + "asm-tree-9.6.jar": { + "sha1": "c0cdda9d211e965d2a4448aa3fd86110f2f8c2de", + "sha256": "sha256-xD7PF7U5x3fhXae1uGVTs3fi05poPeYoVWfVKDiI5+8=" + } + } + }, + { "path": "org/ow2/asm/asm-tree/9.7", "repo": "https://repo.maven.apache.org/maven2", @@ -21735,6 +23933,21 @@ } }, + { + "path": "org/ow2/asm/asm-util/9.6", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "asm-util-9.6.pom": { + "sha1": "baf106bdef43eca497ce057d6feacde7a4a67e85", + "sha256": "sha256-UsXB01dAR3nRqZtJqFv506CFAluFFstz2+93yK40AF4=" + }, + "asm-util-9.6.jar": { + "sha1": "f77caf84eb93786a749b2baa40865b9613e3eaee", + "sha256": "sha256-xjWnQC9Kqb9msvQjDOpiAloP4c1j6HKa3vybGZT6xMM=" + } + } + }, + { "path": "org/ow2/asm/asm/5.0.3", "repo": "https://repo.maven.apache.org/maven2", @@ -21840,6 +24053,21 @@ } }, + { + "path": "org/ow2/asm/asm/9.6", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "asm-9.6.pom": { + "sha1": "d18179bac08cecb6a4901e36d32ab057e460bd35", + "sha256": "sha256-ku7iS8PIQ+SIHUbB3WUFRx7jFC+s+0ZrQoz+paVsa2A=" + }, + "asm-9.6.jar": { + "sha1": "aa205cf0a06dbd8e04ece91c0b37c3f5d567546a", + "sha256": "sha256-PG+sJCTbPUqFO2afTj0dnDxVIjXhmjGWc/iHCDwjA6E=" + } + } + }, + { "path": "org/ow2/asm/asm/9.7", "repo": "https://repo.maven.apache.org/maven2", @@ -21896,6 +24124,21 @@ } }, + { + "path": "org/reflections/reflections/0.10.2", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "reflections-0.10.2.pom": { + "sha1": "79c2b5f8150ae55c4f46c77a5f8f5ea9ad2850a2", + "sha256": "sha256-tsqj6301vXVu1usKKoGGi408D29CJE/q5BdgrGYwbYc=" + }, + "reflections-0.10.2.jar": { + "sha1": "b638d7ca0e0fe0146b60a0e7ba232ad852a73b31", + "sha256": "sha256-k4otCP5UBQ12ELlE2N3DoJNVcQ2ea+CqyDjbwE6aKCU=" + } + } + }, + { "path": "org/robolectric/annotations/4.7.3", "repo": "https://repo.maven.apache.org/maven2", @@ -22154,6 +24397,36 @@ } }, + { + "path": "org/slf4j/slf4j-api/1.7.32", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "slf4j-api-1.7.32.pom": { + "sha1": "dd71cee8b1ef6f54fa6e60f3814fa748f03642e2", + "sha256": "sha256-ABzeWzxrqRBwQlz+ny5pXkrri8KQotTNllMRJ6skT+U=" + }, + "slf4j-api-1.7.32.jar": { + "sha1": "cdcff33940d9f2de763bc41ea05a0be5941176c3", + "sha256": "sha256-NiT4R0wa9G11+YvAl9eGSjI8gbOAiqQ2iabhxgHAJ74=" + } + } + }, + + { + "path": "org/slf4j/slf4j-api/1.7.36", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "slf4j-api-1.7.36.pom": { + "sha1": "749f6995b1d6591a417ca4fd19cdbddabae16fd1", + "sha256": "sha256-+wRqnCKUN5KLsRwtJ8i113PriiXmDL0lPZhSEN7cJoQ=" + }, + "slf4j-api-1.7.36.jar": { + "sha1": "6c62681a2f655b49963a5983b8b0950a6120ae14", + "sha256": "sha256-0+9XXj5JeWeNwBvx3M5RAhSTtNEft/G+itmCh3wWocA=" + } + } + }, + { "path": "org/slf4j/slf4j-api/2.1.0-alpha1", "repo": "https://repo.maven.apache.org/maven2", @@ -22202,6 +24475,28 @@ } }, + { + "path": "org/slf4j/slf4j-parent/1.7.32", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "slf4j-parent-1.7.32.pom": { + "sha1": "a3cb6b2b36f7d228af85043d7b31393c6c16a4d6", + "sha256": "sha256-WrNJ0PTHvAjtDvH02ThssZQKL01vFSFQ4W277MC4PHA=" + } + } + }, + + { + "path": "org/slf4j/slf4j-parent/1.7.36", + "repo": "https://repo.maven.apache.org/maven2", + "files": { + "slf4j-parent-1.7.36.pom": { + "sha1": "5ee2b2ff107aa21d6e6c8b1d38ab28d02b5bf62e", + "sha256": "sha256-uziNN/vN083mTDzt4hg4aTIY3EUfBAQMXfNgp47X6BI=" + } + } + }, + { "path": "org/slf4j/slf4j-parent/2.1.0-alpha1", "repo": "https://repo.maven.apache.org/maven2", diff --git a/nix/deps/gradle/deps.list b/nix/deps/gradle/deps.list index ba2d2b470f..ba911fae1e 100644 --- a/nix/deps/gradle/deps.list +++ b/nix/deps/gradle/deps.list @@ -55,14 +55,14 @@ androidx.databinding:databinding-common:4.1.0 androidx.databinding:databinding-common:7.0.4 androidx.databinding:databinding-common:7.2.1 androidx.databinding:databinding-common:7.3.1 -androidx.databinding:databinding-common:8.1.1 +androidx.databinding:databinding-common:8.5.0 androidx.databinding:databinding-compiler-common:3.2.1 androidx.databinding:databinding-compiler-common:3.5.3 androidx.databinding:databinding-compiler-common:4.1.0 androidx.databinding:databinding-compiler-common:7.0.4 androidx.databinding:databinding-compiler-common:7.2.1 androidx.databinding:databinding-compiler-common:7.3.1 -androidx.databinding:databinding-compiler-common:8.1.1 +androidx.databinding:databinding-compiler-common:8.5.0 androidx.documentfile:documentfile:1.0.0 androidx.drawerlayout:drawerlayout:1.0.0 androidx.emoji2:emoji2-views-helper:1.2.0 @@ -149,6 +149,7 @@ commons-codec:commons-codec:1.9 commons-codec:commons-codec:1.10 commons-codec:commons-codec:1.11 commons-io:commons-io:2.4 +commons-io:commons-io:2.13.0 commons-logging:commons-logging:1.1.1 commons-logging:commons-logging:1.2 com.adarshr:gradle-test-logger-plugin:2.0.0 @@ -165,7 +166,7 @@ com.android.databinding:baseLibrary:4.1.0 com.android.databinding:baseLibrary:7.0.4 com.android.databinding:baseLibrary:7.2.1 com.android.databinding:baseLibrary:7.3.1 -com.android.databinding:baseLibrary:8.1.1 +com.android.databinding:baseLibrary:8.5.0 com.android.databinding:compilerCommon:1.0-rc5 com.android.databinding:compilerCommon:3.0.1 com.android.tools.analytics-library:crash:26.2.1 @@ -174,7 +175,7 @@ com.android.tools.analytics-library:crash:27.1.0 com.android.tools.analytics-library:crash:30.0.4 com.android.tools.analytics-library:crash:30.2.1 com.android.tools.analytics-library:crash:30.3.1 -com.android.tools.analytics-library:crash:31.1.1 +com.android.tools.analytics-library:crash:31.5.0 com.android.tools.analytics-library:protos:26.0.1 com.android.tools.analytics-library:protos:26.2.1 com.android.tools.analytics-library:protos:26.5.3 @@ -182,7 +183,7 @@ com.android.tools.analytics-library:protos:27.1.0 com.android.tools.analytics-library:protos:30.0.4 com.android.tools.analytics-library:protos:30.2.1 com.android.tools.analytics-library:protos:30.3.1 -com.android.tools.analytics-library:protos:31.1.1 +com.android.tools.analytics-library:protos:31.5.0 com.android.tools.analytics-library:shared:26.0.1 com.android.tools.analytics-library:shared:26.2.1 com.android.tools.analytics-library:shared:26.5.3 @@ -190,7 +191,7 @@ com.android.tools.analytics-library:shared:27.1.0 com.android.tools.analytics-library:shared:30.0.4 com.android.tools.analytics-library:shared:30.2.1 com.android.tools.analytics-library:shared:30.3.1 -com.android.tools.analytics-library:shared:31.1.1 +com.android.tools.analytics-library:shared:31.5.0 com.android.tools.analytics-library:tracker:26.0.1 com.android.tools.analytics-library:tracker:26.2.1 com.android.tools.analytics-library:tracker:26.5.3 @@ -198,7 +199,7 @@ com.android.tools.analytics-library:tracker:27.1.0 com.android.tools.analytics-library:tracker:30.0.4 com.android.tools.analytics-library:tracker:30.2.1 com.android.tools.analytics-library:tracker:30.3.1 -com.android.tools.analytics-library:tracker:31.1.1 +com.android.tools.analytics-library:tracker:31.5.0 com.android.tools.build.jetifier:jetifier-core:1.0.0-alpha10 com.android.tools.build.jetifier:jetifier-core:1.0.0-beta04 com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09 @@ -213,13 +214,13 @@ com.android.tools.build:aapt2-proto:4.1.0-6503028 com.android.tools.build:aapt2-proto:7.0.4-7396180 com.android.tools.build:aapt2-proto:7.2.1-7984345 com.android.tools.build:aapt2-proto:7.3.1-8691043 -com.android.tools.build:aapt2-proto:8.1.1-10154469 +com.android.tools.build:aapt2-proto:8.5.0-11315950 com.android.tools.build:aapt2:8.1.1-10154469 com.android.tools.build:aaptcompiler:4.1.0 com.android.tools.build:aaptcompiler:7.0.4 com.android.tools.build:aaptcompiler:7.2.1 com.android.tools.build:aaptcompiler:7.3.1 -com.android.tools.build:aaptcompiler:8.1.1 +com.android.tools.build:aaptcompiler:8.5.0 com.android.tools.build:apksig:3.0.1 com.android.tools.build:apksig:3.2.1 com.android.tools.build:apksig:3.5.3 @@ -227,14 +228,14 @@ com.android.tools.build:apksig:4.1.0 com.android.tools.build:apksig:7.0.4 com.android.tools.build:apksig:7.2.1 com.android.tools.build:apksig:7.3.1 -com.android.tools.build:apksig:8.1.1 +com.android.tools.build:apksig:8.5.0 com.android.tools.build:apkzlib:3.2.1 com.android.tools.build:apkzlib:3.5.3 com.android.tools.build:apkzlib:4.1.0 com.android.tools.build:apkzlib:7.0.4 com.android.tools.build:apkzlib:7.2.1 com.android.tools.build:apkzlib:7.3.1 -com.android.tools.build:apkzlib:8.1.1 +com.android.tools.build:apkzlib:8.5.0 com.android.tools.build:builder-model:1.3.1 com.android.tools.build:builder-model:1.5.0 com.android.tools.build:builder-model:3.0.1 @@ -244,7 +245,7 @@ com.android.tools.build:builder-model:4.1.0 com.android.tools.build:builder-model:7.0.4 com.android.tools.build:builder-model:7.2.1 com.android.tools.build:builder-model:7.3.1 -com.android.tools.build:builder-model:8.1.1 +com.android.tools.build:builder-model:8.5.0 com.android.tools.build:builder-test-api:1.3.1 com.android.tools.build:builder-test-api:1.5.0 com.android.tools.build:builder-test-api:3.0.1 @@ -254,7 +255,7 @@ com.android.tools.build:builder-test-api:4.1.0 com.android.tools.build:builder-test-api:7.0.4 com.android.tools.build:builder-test-api:7.2.1 com.android.tools.build:builder-test-api:7.3.1 -com.android.tools.build:builder-test-api:8.1.1 +com.android.tools.build:builder-test-api:8.5.0 com.android.tools.build:builder:1.3.1 com.android.tools.build:builder:1.5.0 com.android.tools.build:builder:3.0.1 @@ -264,14 +265,14 @@ com.android.tools.build:builder:4.1.0 com.android.tools.build:builder:7.0.4 com.android.tools.build:builder:7.2.1 com.android.tools.build:builder:7.3.1 -com.android.tools.build:builder:8.1.1 +com.android.tools.build:builder:8.5.0 com.android.tools.build:bundletool:0.5.0 com.android.tools.build:bundletool:0.9.0 com.android.tools.build:bundletool:0.14.0 com.android.tools.build:bundletool:1.6.0 com.android.tools.build:bundletool:1.8.2 com.android.tools.build:bundletool:1.9.0 -com.android.tools.build:bundletool:1.14.0 +com.android.tools.build:bundletool:1.16.0 com.android.tools.build:gradle-api:3.0.1 com.android.tools.build:gradle-api:3.2.1 com.android.tools.build:gradle-api:3.5.3 @@ -279,11 +280,11 @@ com.android.tools.build:gradle-api:4.1.0 com.android.tools.build:gradle-api:7.0.4 com.android.tools.build:gradle-api:7.2.1 com.android.tools.build:gradle-api:7.3.1 -com.android.tools.build:gradle-api:8.1.1 +com.android.tools.build:gradle-api:8.5.0 com.android.tools.build:gradle-core:1.3.1 com.android.tools.build:gradle-core:1.5.0 com.android.tools.build:gradle-core:3.0.1 -com.android.tools.build:gradle-settings-api:8.1.1 +com.android.tools.build:gradle-settings-api:8.5.0 com.android.tools.build:gradle:1.3.1 com.android.tools.build:gradle:1.5.0 com.android.tools.build:gradle:3.0.1 @@ -302,7 +303,7 @@ com.android.tools.build:manifest-merger:27.1.0 com.android.tools.build:manifest-merger:30.0.4 com.android.tools.build:manifest-merger:30.2.1 com.android.tools.build:manifest-merger:30.3.1 -com.android.tools.build:manifest-merger:31.1.1 +com.android.tools.build:manifest-merger:31.5.0 com.android.tools.build:transform-api:1.5.0 com.android.tools.build:transform-api:2.0.0-deprecated-use-gradle-api com.android.tools.ddms:ddmlib:24.3.1 @@ -314,7 +315,7 @@ com.android.tools.ddms:ddmlib:27.1.0 com.android.tools.ddms:ddmlib:30.0.4 com.android.tools.ddms:ddmlib:30.2.1 com.android.tools.ddms:ddmlib:30.3.1 -com.android.tools.ddms:ddmlib:31.1.1 +com.android.tools.ddms:ddmlib:31.5.0 com.android.tools.external.com-intellij:intellij-core:26.0.1 com.android.tools.external.lombok:lombok-ast:0.2.3 com.android.tools.external.org-jetbrains:uast:26.0.1 @@ -329,7 +330,7 @@ com.android.tools.layoutlib:layoutlib-api:27.1.0 com.android.tools.layoutlib:layoutlib-api:30.0.4 com.android.tools.layoutlib:layoutlib-api:30.2.1 com.android.tools.layoutlib:layoutlib-api:30.3.1 -com.android.tools.layoutlib:layoutlib-api:31.1.1 +com.android.tools.layoutlib:layoutlib-api:31.5.0 com.android.tools.lint:lint-api:24.3.1 com.android.tools.lint:lint-api:24.5.0 com.android.tools.lint:lint-api:26.0.1 @@ -343,37 +344,37 @@ com.android.tools.lint:lint-model:27.1.0 com.android.tools.lint:lint-model:30.0.4 com.android.tools.lint:lint-model:30.2.1 com.android.tools.lint:lint-model:30.3.1 -com.android.tools.lint:lint-model:31.1.1 +com.android.tools.lint:lint-model:31.5.0 com.android.tools.lint:lint-typedef-remover:30.2.1 com.android.tools.lint:lint-typedef-remover:30.3.1 -com.android.tools.lint:lint-typedef-remover:31.1.1 +com.android.tools.lint:lint-typedef-remover:31.5.0 com.android.tools.lint:lint:24.3.1 com.android.tools.lint:lint:24.5.0 com.android.tools.lint:lint:26.0.1 com.android.tools.utp:android-device-provider-ddmlib-proto:30.2.1 com.android.tools.utp:android-device-provider-ddmlib-proto:30.3.1 -com.android.tools.utp:android-device-provider-ddmlib-proto:31.1.1 +com.android.tools.utp:android-device-provider-ddmlib-proto:31.5.0 com.android.tools.utp:android-device-provider-gradle-proto:30.0.4 com.android.tools.utp:android-device-provider-gradle-proto:30.2.1 com.android.tools.utp:android-device-provider-gradle-proto:30.3.1 -com.android.tools.utp:android-device-provider-gradle-proto:31.1.1 +com.android.tools.utp:android-device-provider-gradle-proto:31.5.0 com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.2.1 com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.3.1 -com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:31.1.1 -com.android.tools.utp:android-test-plugin-host-apk-installer-proto:31.1.1 +com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:31.5.0 +com.android.tools.utp:android-test-plugin-host-apk-installer-proto:31.5.0 com.android.tools.utp:android-test-plugin-host-coverage-proto:30.2.1 com.android.tools.utp:android-test-plugin-host-coverage-proto:30.3.1 -com.android.tools.utp:android-test-plugin-host-coverage-proto:31.1.1 -com.android.tools.utp:android-test-plugin-host-emulator-control-proto:31.1.1 -com.android.tools.utp:android-test-plugin-host-logcat-proto:31.1.1 +com.android.tools.utp:android-test-plugin-host-coverage-proto:31.5.0 +com.android.tools.utp:android-test-plugin-host-emulator-control-proto:31.5.0 +com.android.tools.utp:android-test-plugin-host-logcat-proto:31.5.0 com.android.tools.utp:android-test-plugin-host-retention-proto:30.0.4 com.android.tools.utp:android-test-plugin-host-retention-proto:30.2.1 com.android.tools.utp:android-test-plugin-host-retention-proto:30.3.1 -com.android.tools.utp:android-test-plugin-host-retention-proto:31.1.1 +com.android.tools.utp:android-test-plugin-host-retention-proto:31.5.0 com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.0.4 com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.2.1 com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.3.1 -com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:31.1.1 +com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:31.5.0 com.android.tools:annotations:24.3.1 com.android.tools:annotations:24.5.0 com.android.tools:annotations:26.0.1 @@ -383,7 +384,7 @@ com.android.tools:annotations:27.1.0 com.android.tools:annotations:30.0.4 com.android.tools:annotations:30.2.1 com.android.tools:annotations:30.3.1 -com.android.tools:annotations:31.1.1 +com.android.tools:annotations:31.5.0 com.android.tools:common:24.3.1 com.android.tools:common:24.5.0 com.android.tools:common:26.0.1 @@ -393,7 +394,7 @@ com.android.tools:common:27.1.0 com.android.tools:common:30.0.4 com.android.tools:common:30.2.1 com.android.tools:common:30.3.1 -com.android.tools:common:31.1.1 +com.android.tools:common:31.5.0 com.android.tools:dvlib:24.3.1 com.android.tools:dvlib:24.5.0 com.android.tools:dvlib:26.0.1 @@ -403,7 +404,7 @@ com.android.tools:dvlib:27.1.0 com.android.tools:dvlib:30.0.4 com.android.tools:dvlib:30.2.1 com.android.tools:dvlib:30.3.1 -com.android.tools:dvlib:31.1.1 +com.android.tools:dvlib:31.5.0 com.android.tools:repository:26.0.1 com.android.tools:repository:26.2.1 com.android.tools:repository:26.5.3 @@ -411,7 +412,7 @@ com.android.tools:repository:27.1.0 com.android.tools:repository:30.0.4 com.android.tools:repository:30.2.1 com.android.tools:repository:30.3.1 -com.android.tools:repository:31.1.1 +com.android.tools:repository:31.5.0 com.android.tools:sdklib:24.3.1 com.android.tools:sdklib:24.5.0 com.android.tools:sdklib:26.0.1 @@ -421,7 +422,7 @@ com.android.tools:sdklib:27.1.0 com.android.tools:sdklib:30.0.4 com.android.tools:sdklib:30.2.1 com.android.tools:sdklib:30.3.1 -com.android.tools:sdklib:31.1.1 +com.android.tools:sdklib:31.5.0 com.android.tools:sdk-common:24.3.1 com.android.tools:sdk-common:24.5.0 com.android.tools:sdk-common:26.0.1 @@ -431,17 +432,17 @@ com.android.tools:sdk-common:27.1.0 com.android.tools:sdk-common:30.0.4 com.android.tools:sdk-common:30.2.1 com.android.tools:sdk-common:30.3.1 -com.android.tools:sdk-common:31.1.1 +com.android.tools:sdk-common:31.5.0 com.android:signflinger:4.1.0 com.android:signflinger:7.0.4 com.android:signflinger:7.2.1 com.android:signflinger:7.3.1 -com.android:signflinger:8.1.1 +com.android:signflinger:8.5.0 com.android:zipflinger:4.1.0 com.android:zipflinger:7.0.4 com.android:zipflinger:7.2.1 com.android:zipflinger:7.3.1 -com.android:zipflinger:8.1.1 +com.android:zipflinger:8.5.0 com.diffplug.durian:durian-collect:1.2.0 com.diffplug.durian:durian-core:1.2.0 com.diffplug.durian:durian-io:1.2.0 @@ -453,41 +454,41 @@ com.diffplug.spotless:spotless-plugin-gradle:6.7.2 com.diffplug.spotless:spotless-plugin-gradle:6.11.0 com.drewnoakes:metadata-extractor:2.18.0 com.facebook.conceal:conceal:1.1.3 -com.facebook.fbjni:fbjni:0.5.1 +com.facebook.fbjni:fbjni:0.6.0 com.facebook.fresco:animated-base:2.5.0 com.facebook.fresco:animated-drawable:2.5.0 com.facebook.fresco:animated-gif:2.5.0 com.facebook.fresco:drawee:2.5.0 -com.facebook.fresco:drawee:3.1.3 +com.facebook.fresco:drawee:3.2.0 com.facebook.fresco:fbcore:2.5.0 -com.facebook.fresco:fbcore:3.1.3 +com.facebook.fresco:fbcore:3.2.0 com.facebook.fresco:fresco:2.5.0 -com.facebook.fresco:fresco:3.1.3 +com.facebook.fresco:fresco:3.2.0 com.facebook.fresco:imagepipeline-base:2.5.0 -com.facebook.fresco:imagepipeline-base:3.1.3 +com.facebook.fresco:imagepipeline-base:3.2.0 com.facebook.fresco:imagepipeline-native:2.5.0 -com.facebook.fresco:imagepipeline-native:3.1.3 -com.facebook.fresco:imagepipeline-okhttp3:3.1.3 +com.facebook.fresco:imagepipeline-native:3.2.0 +com.facebook.fresco:imagepipeline-okhttp3:3.2.0 com.facebook.fresco:imagepipeline:2.5.0 -com.facebook.fresco:imagepipeline:3.1.3 +com.facebook.fresco:imagepipeline:3.2.0 com.facebook.fresco:memory-type-ashmem:2.5.0 -com.facebook.fresco:memory-type-ashmem:3.1.3 +com.facebook.fresco:memory-type-ashmem:3.2.0 com.facebook.fresco:memory-type-java:2.5.0 -com.facebook.fresco:memory-type-java:3.1.3 +com.facebook.fresco:memory-type-java:3.2.0 com.facebook.fresco:memory-type-native:2.5.0 -com.facebook.fresco:memory-type-native:3.1.3 -com.facebook.fresco:middleware:3.1.3 +com.facebook.fresco:memory-type-native:3.2.0 +com.facebook.fresco:middleware:3.2.0 com.facebook.fresco:nativeimagefilters:2.5.0 -com.facebook.fresco:nativeimagefilters:3.1.3 +com.facebook.fresco:nativeimagefilters:3.2.0 com.facebook.fresco:nativeimagetranscoder:2.5.0 -com.facebook.fresco:nativeimagetranscoder:3.1.3 -com.facebook.fresco:soloader:3.1.3 -com.facebook.fresco:ui-common:3.1.3 +com.facebook.fresco:nativeimagetranscoder:3.2.0 +com.facebook.fresco:soloader:3.2.0 +com.facebook.fresco:ui-common:3.2.0 com.facebook.infer.annotation:infer-annotation:0.18.0 -com.facebook.react:react-android:0.73.5 -com.facebook.soloader:annotation:0.10.5 -com.facebook.soloader:nativeloader:0.10.5 -com.facebook.soloader:soloader:0.10.5 +com.facebook.react:react-android:0.75.3 +com.facebook.soloader:annotation:0.11.0 +com.facebook.soloader:nativeloader:0.11.0 +com.facebook.soloader:soloader:0.11.0 com.facebook.yoga:proguard-annotations:1.19.0 com.fasterxml.jackson.core:jackson-annotations:2.11.1 com.fasterxml.jackson.core:jackson-core:2.11.1 @@ -520,6 +521,7 @@ com.google.android.material:material:1.2.0-alpha03 com.google.android:annotations:4.1.1.4 com.google.api.grpc:proto-google-common-protos:1.12.0 com.google.api.grpc:proto-google-common-protos:2.0.1 +com.google.api.grpc:proto-google-common-protos:2.17.0 com.google.auto.value:auto-value-annotations:1.6.2 com.google.auto.value:auto-value-annotations:1.6.3 com.google.auto.value:auto-value-annotations:1.7.4 @@ -531,7 +533,7 @@ com.google.code.gson:gson:2.3 com.google.code.gson:gson:2.8.0 com.google.code.gson:gson:2.8.5 com.google.code.gson:gson:2.8.6 -com.google.code.gson:gson:2.8.9 +com.google.code.gson:gson:2.10.1 com.google.crypto.tink:tink:1.3.0-rc2 com.google.crypto.tink:tink:1.7.0 com.google.dagger:dagger:2.28.3 @@ -542,7 +544,7 @@ com.google.errorprone:error_prone_annotations:2.3.2 com.google.errorprone:error_prone_annotations:2.3.4 com.google.errorprone:error_prone_annotations:2.4.0 com.google.errorprone:error_prone_annotations:2.9.0 -com.google.errorprone:error_prone_annotations:2.11.0 +com.google.errorprone:error_prone_annotations:2.18.0 com.google.flatbuffers:flatbuffers-java:1.12.0 com.google.guava:failureaccess:1.0.1 com.google.guava:guava:17.0 @@ -552,25 +554,26 @@ com.google.guava:guava:27.0.1-jre com.google.guava:guava:28.1-jre com.google.guava:guava:29.0-jre com.google.guava:guava:30.1-jre -com.google.guava:guava:31.1-jre +com.google.guava:guava:32.0.1-jre com.google.guava:listenablefuture:1.0 com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava com.google.j2objc:j2objc-annotations:1.1 com.google.j2objc:j2objc-annotations:1.3 +com.google.j2objc:j2objc-annotations:2.8 com.google.jimfs:jimfs:1.1 -com.google.prefab:cli:2.0.0 +com.google.prefab:cli:2.1.0 com.google.protobuf:protobuf-java-util:3.4.0 com.google.protobuf:protobuf-java-util:3.10.0 com.google.protobuf:protobuf-java-util:3.17.2 -com.google.protobuf:protobuf-java-util:3.19.3 +com.google.protobuf:protobuf-java-util:3.22.3 com.google.protobuf:protobuf-java:3.0.0 com.google.protobuf:protobuf-java:3.4.0 com.google.protobuf:protobuf-java:3.10.0 com.google.protobuf:protobuf-java:3.17.2 -com.google.protobuf:protobuf-java:3.19.3 +com.google.protobuf:protobuf-java:3.22.3 com.google.testing.platform:core-proto:0.0.8-alpha04 com.google.testing.platform:core-proto:0.0.8-alpha07 -com.google.testing.platform:core-proto:0.0.8-alpha08 +com.google.testing.platform:core-proto:0.0.9-alpha02 com.google.test.platform:core-proto:0.0.2-dev com.google.zxing:core:3.4.1 com.ibm.icu:icu4j:53.1 @@ -601,59 +604,60 @@ de.undercouch:gradle-download-task:4.1.1 de.undercouch:gradle-download-task:5.0.1 io.grpc:grpc-api:1.21.1 io.grpc:grpc-api:1.39.0 -io.grpc:grpc-api:1.45.1 +io.grpc:grpc-api:1.57.0 io.grpc:grpc-context:1.21.1 io.grpc:grpc-context:1.39.0 -io.grpc:grpc-context:1.45.1 +io.grpc:grpc-context:1.57.0 io.grpc:grpc-core:1.21.1 io.grpc:grpc-core:1.39.0 -io.grpc:grpc-core:1.45.1 +io.grpc:grpc-core:1.57.0 io.grpc:grpc-netty:1.21.1 io.grpc:grpc-netty:1.39.0 -io.grpc:grpc-netty:1.45.1 +io.grpc:grpc-netty:1.57.0 io.grpc:grpc-protobuf-lite:1.21.1 io.grpc:grpc-protobuf-lite:1.39.0 -io.grpc:grpc-protobuf-lite:1.45.1 +io.grpc:grpc-protobuf-lite:1.57.0 io.grpc:grpc-protobuf:1.21.1 io.grpc:grpc-protobuf:1.39.0 -io.grpc:grpc-protobuf:1.45.1 +io.grpc:grpc-protobuf:1.57.0 io.grpc:grpc-stub:1.21.1 io.grpc:grpc-stub:1.39.0 -io.grpc:grpc-stub:1.45.1 +io.grpc:grpc-stub:1.57.0 io.netty:netty-buffer:4.1.34.Final io.netty:netty-buffer:4.1.52.Final -io.netty:netty-buffer:4.1.72.Final +io.netty:netty-buffer:4.1.93.Final io.netty:netty-codec-http2:4.1.34.Final io.netty:netty-codec-http2:4.1.52.Final -io.netty:netty-codec-http2:4.1.72.Final +io.netty:netty-codec-http2:4.1.93.Final io.netty:netty-codec-http:4.1.34.Final io.netty:netty-codec-http:4.1.52.Final -io.netty:netty-codec-http:4.1.72.Final +io.netty:netty-codec-http:4.1.93.Final io.netty:netty-codec-socks:4.1.34.Final io.netty:netty-codec-socks:4.1.52.Final -io.netty:netty-codec-socks:4.1.72.Final +io.netty:netty-codec-socks:4.1.93.Final io.netty:netty-codec:4.1.34.Final io.netty:netty-codec:4.1.52.Final -io.netty:netty-codec:4.1.72.Final +io.netty:netty-codec:4.1.93.Final io.netty:netty-common:4.1.34.Final io.netty:netty-common:4.1.52.Final -io.netty:netty-common:4.1.72.Final +io.netty:netty-common:4.1.93.Final io.netty:netty-handler-proxy:4.1.34.Final io.netty:netty-handler-proxy:4.1.52.Final -io.netty:netty-handler-proxy:4.1.72.Final +io.netty:netty-handler-proxy:4.1.93.Final io.netty:netty-handler:4.1.34.Final io.netty:netty-handler:4.1.52.Final -io.netty:netty-handler:4.1.72.Final +io.netty:netty-handler:4.1.93.Final io.netty:netty-resolver:4.1.34.Final io.netty:netty-resolver:4.1.52.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-classes:2.0.46.Final +io.netty:netty-resolver:4.1.93.Final +io.netty:netty-transport-native-unix-common:4.1.93.Final io.netty:netty-transport:4.1.34.Final io.netty:netty-transport:4.1.52.Final -io.netty:netty-transport:4.1.72.Final +io.netty:netty-transport:4.1.93.Final io.opencensus:opencensus-api:0.21.0 io.opencensus:opencensus-contrib-grpc-metrics:0.21.0 io.perfmark:perfmark-api:0.23.0 +io.perfmark:perfmark-api:0.26.0 it.unimi.dsi:fastutil:7.2.0 it.unimi.dsi:fastutil:8.4.0 jakarta.activation:jakarta.activation-api:1.2.1 @@ -697,30 +701,35 @@ org.apache.httpcomponents:httpclient:4.5.2 org.apache.httpcomponents:httpclient:4.5.6 org.apache.httpcomponents:httpclient:4.5.9 org.apache.httpcomponents:httpclient:4.5.13 +org.apache.httpcomponents:httpclient:4.5.14 org.apache.httpcomponents:httpcore:4.1 org.apache.httpcomponents:httpcore:4.2.5 org.apache.httpcomponents:httpcore:4.4.5 org.apache.httpcomponents:httpcore:4.4.10 org.apache.httpcomponents:httpcore:4.4.11 org.apache.httpcomponents:httpcore:4.4.13 -org.apache.httpcomponents:httpcore:4.4.15 +org.apache.httpcomponents:httpcore:4.4.16 org.apache.httpcomponents:httpmime:4.1 org.apache.httpcomponents:httpmime:4.5.2 org.apache.httpcomponents:httpmime:4.5.6 org.bitbucket.b_c:jose4j:0.7.0 +org.bitbucket.b_c:jose4j:0.9.5 org.bouncycastle:bcpkix-jdk15on:1.48 org.bouncycastle:bcpkix-jdk15on:1.56 org.bouncycastle:bcpkix-jdk15on:1.67 +org.bouncycastle:bcpkix-jdk18on:1.77 org.bouncycastle:bcprov-jdk15on:1.48 org.bouncycastle:bcprov-jdk15on:1.56 org.bouncycastle:bcprov-jdk15on:1.60 org.bouncycastle:bcprov-jdk15on:1.67 org.bouncycastle:bcprov-jdk15on:1.68 +org.bouncycastle:bcprov-jdk18on:1.77 +org.bouncycastle:bcutil-jdk18on:1.77 org.checkerframework:checker-qual:2.5.2 org.checkerframework:checker-qual:2.8.1 org.checkerframework:checker-qual:2.11.1 org.checkerframework:checker-qual:3.5.0 -org.checkerframework:checker-qual:3.12.0 +org.checkerframework:checker-qual:3.33.0 org.codehaus.groovy:groovy-xml:3.0.9 org.codehaus.groovy:groovy-xml:3.0.10 org.codehaus.groovy:groovy:3.0.9 @@ -729,6 +738,7 @@ org.codehaus.mojo:animal-sniffer-annotations:1.14 org.codehaus.mojo:animal-sniffer-annotations:1.17 org.codehaus.mojo:animal-sniffer-annotations:1.18 org.codehaus.mojo:animal-sniffer-annotations:1.19 +org.codehaus.mojo:animal-sniffer-annotations:1.23 org.codehaus.woodstox:stax2-api:4.2.1 org.eclipse.jdt.core.compiler:ecj:4.4.2 org.eclipse.jdt.core.compiler:ecj:4.6.1 @@ -760,37 +770,38 @@ org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1 org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1 org.jetbrains.kotlin:kotlin-android-extensions:1.6.20 -org.jetbrains.kotlin:kotlin-android-extensions:1.9.0 +org.jetbrains.kotlin:kotlin-android-extensions:1.9.24 org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72 org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.6.20 org.jetbrains.kotlin:kotlin-build-common:1.6.20 -org.jetbrains.kotlin:kotlin-build-tools-api:1.9.0 -org.jetbrains.kotlin:kotlin-build-tools-impl:1.9.0 +org.jetbrains.kotlin:kotlin-build-common:1.9.24 +org.jetbrains.kotlin:kotlin-build-tools-api:1.9.24 +org.jetbrains.kotlin:kotlin-build-tools-impl:1.9.24 org.jetbrains.kotlin:kotlin-compiler-embeddable:1.6.20 -org.jetbrains.kotlin:kotlin-compiler-embeddable:1.9.0 +org.jetbrains.kotlin:kotlin-compiler-embeddable:1.9.24 org.jetbrains.kotlin:kotlin-compiler-runner:1.6.20 -org.jetbrains.kotlin:kotlin-compiler-runner:1.9.0 +org.jetbrains.kotlin:kotlin-compiler-runner:1.9.24 org.jetbrains.kotlin:kotlin-daemon-client:1.6.20 -org.jetbrains.kotlin:kotlin-daemon-client:1.9.0 +org.jetbrains.kotlin:kotlin-daemon-client:1.9.24 org.jetbrains.kotlin:kotlin-daemon-embeddable:1.6.20 -org.jetbrains.kotlin:kotlin-daemon-embeddable:1.9.0 -org.jetbrains.kotlin:kotlin-gradle-plugins-bom:1.9.0 -org.jetbrains.kotlin:kotlin-gradle-plugin-annotations:1.9.0 +org.jetbrains.kotlin:kotlin-daemon-embeddable:1.9.24 +org.jetbrains.kotlin:kotlin-gradle-plugins-bom:1.9.24 +org.jetbrains.kotlin:kotlin-gradle-plugin-annotations:1.9.24 org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.6.20 -org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.9.0 -org.jetbrains.kotlin:kotlin-gradle-plugin-idea-proto:1.9.0 -org.jetbrains.kotlin:kotlin-gradle-plugin-idea:1.9.0 +org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.9.24 +org.jetbrains.kotlin:kotlin-gradle-plugin-idea-proto:1.9.24 +org.jetbrains.kotlin:kotlin-gradle-plugin-idea:1.9.24 org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.6.20 -org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.9.0 +org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.9.24 org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.20 -org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0 +org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24 org.jetbrains.kotlin:kotlin-klib-commonizer-api:1.6.20 -org.jetbrains.kotlin:kotlin-klib-commonizer-api:1.9.0 -org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:1.9.0 +org.jetbrains.kotlin:kotlin-klib-commonizer-api:1.9.24 +org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:1.9.24 org.jetbrains.kotlin:kotlin-native-utils:1.6.20 -org.jetbrains.kotlin:kotlin-native-utils:1.9.0 +org.jetbrains.kotlin:kotlin-native-utils:1.9.24 org.jetbrains.kotlin:kotlin-project-model:1.6.20 -org.jetbrains.kotlin:kotlin-project-model:1.9.0 +org.jetbrains.kotlin:kotlin-project-model:1.9.24 org.jetbrains.kotlin:kotlin-reflect:1.1.3-2 org.jetbrains.kotlin:kotlin-reflect:1.2.0 org.jetbrains.kotlin:kotlin-reflect:1.3.50 @@ -798,42 +809,42 @@ org.jetbrains.kotlin:kotlin-reflect:1.3.72 org.jetbrains.kotlin:kotlin-reflect:1.4.32 org.jetbrains.kotlin:kotlin-reflect:1.5.31 org.jetbrains.kotlin:kotlin-reflect:1.6.10 -org.jetbrains.kotlin:kotlin-reflect:1.8.20-RC2 +org.jetbrains.kotlin:kotlin-reflect:1.9.20 org.jetbrains.kotlin:kotlin-scripting-common:1.6.20 -org.jetbrains.kotlin:kotlin-scripting-common:1.9.0 +org.jetbrains.kotlin:kotlin-scripting-common:1.9.24 org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.20 -org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.9.0 +org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.9.24 org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.6.20 -org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.9.0 +org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.9.24 org.jetbrains.kotlin:kotlin-scripting-jvm:1.6.20 -org.jetbrains.kotlin:kotlin-scripting-jvm:1.9.0 -org.jetbrains.kotlin:kotlin-script-runtime:1.9.0 +org.jetbrains.kotlin:kotlin-scripting-jvm:1.9.24 +org.jetbrains.kotlin:kotlin-script-runtime:1.9.24 org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71 org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50 org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32 org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31 org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20 -org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20-RC2 -org.jetbrains.kotlin:kotlin-stdlib-common:1.8.21 -org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0 +org.jetbrains.kotlin:kotlin-stdlib-common:1.9.24 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31 +org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.20 -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20-RC2 org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21 -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.0 +org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.20 +org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.24 org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.32 org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20-RC2 +org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10 org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 +org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.20 +org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.24 org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2 org.jetbrains.kotlin:kotlin-stdlib:1.2.71 org.jetbrains.kotlin:kotlin-stdlib:1.3.50 @@ -841,17 +852,16 @@ org.jetbrains.kotlin:kotlin-stdlib:1.3.72 org.jetbrains.kotlin:kotlin-stdlib:1.4.32 org.jetbrains.kotlin:kotlin-stdlib:1.5.31 org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -org.jetbrains.kotlin:kotlin-stdlib:1.8.20-RC2 -org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -org.jetbrains.kotlin:kotlin-stdlib:1.9.0 -org.jetbrains.kotlin:kotlin-tooling-core:1.9.0 +org.jetbrains.kotlin:kotlin-stdlib:1.9.24 +org.jetbrains.kotlin:kotlin-tooling-core:1.9.24 org.jetbrains.kotlin:kotlin-tooling-metadata:1.6.20 org.jetbrains.kotlin:kotlin-util-io:1.6.20 -org.jetbrains.kotlin:kotlin-util-io:1.9.0 +org.jetbrains.kotlin:kotlin-util-io:1.9.24 org.jetbrains.kotlin:kotlin-util-klib:1.6.20 -org.jetbrains.kotlin:kotlin-util-klib:1.9.0 +org.jetbrains.kotlin:kotlin-util-klib:1.9.24 org.jetbrains.trove4j:trove4j:20160824 org.jetbrains:annotations:13.0 +org.jetbrains:annotations:23.0.0 org.jetbrains:markdown-jvm:0.2.1 org.jetbrains:markdown:0.2.1 org.json:json:20180813 @@ -869,11 +879,13 @@ org.ow2.asm:asm-analysis:6.0 org.ow2.asm:asm-analysis:7.0 org.ow2.asm:asm-analysis:9.1 org.ow2.asm:asm-analysis:9.2 +org.ow2.asm:asm-analysis:9.6 org.ow2.asm:asm-commons:5.1 org.ow2.asm:asm-commons:6.0 org.ow2.asm:asm-commons:7.0 org.ow2.asm:asm-commons:9.1 org.ow2.asm:asm-commons:9.2 +org.ow2.asm:asm-commons:9.6 org.ow2.asm:asm-debug-all:5.0.1 org.ow2.asm:asm-tree:5.0.3 org.ow2.asm:asm-tree:5.1 @@ -881,17 +893,20 @@ org.ow2.asm:asm-tree:6.0 org.ow2.asm:asm-tree:7.0 org.ow2.asm:asm-tree:9.1 org.ow2.asm:asm-tree:9.2 +org.ow2.asm:asm-tree:9.6 org.ow2.asm:asm-util:5.1 org.ow2.asm:asm-util:6.0 org.ow2.asm:asm-util:7.0 org.ow2.asm:asm-util:9.1 org.ow2.asm:asm-util:9.2 +org.ow2.asm:asm-util:9.6 org.ow2.asm:asm:5.0.3 org.ow2.asm:asm:5.1 org.ow2.asm:asm:6.0 org.ow2.asm:asm:7.0 org.ow2.asm:asm:9.1 org.ow2.asm:asm:9.2 +org.ow2.asm:asm:9.6 org.robolectric:annotations:4.7.3 org.robolectric:junit:4.7.3 org.robolectric:nativeruntime:4.7.3 @@ -925,4 +940,11 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 com.android.tools.build:gradle:3.5.4 androidx.annotation:annotation:1.6.0 androidx.annotation:annotation-jvm:1.6.0 -com.facebook.react:hermes-android:0.73.5 \ No newline at end of file +com.facebook.react:hermes-android:0.75.3 +org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.24 +org.checkerframework:checker-qual:3.12.0 +com.android.tools.build:gradle:8.5.0 +org.junit:junit-bom:5.9.3 +org.junit:junit-bom:5.9.2 +org.codehaus.mojo:animal-sniffer-annotations:1.23 +com.android.tools.lint:lint-gradle:31.5.0 \ No newline at end of file diff --git a/nix/deps/gradle/deps.urls b/nix/deps/gradle/deps.urls index 59ddf257b2..bfccdcbe45 100644 --- a/nix/deps/gradle/deps.urls +++ b/nix/deps/gradle/deps.urls @@ -75,6 +75,7 @@ https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-common/ https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-common/7.2.1/databinding-common-7.2.1.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-common/7.3.1/databinding-common-7.3.1.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-common/8.1.1/databinding-common-8.1.1.pom +https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-common/8.5.0/databinding-common-8.5.0.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/3.2.1/databinding-compiler-common-3.2.1.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/3.5.3/databinding-compiler-common-3.5.3.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/3.5.4/databinding-compiler-common-3.5.4.pom @@ -83,6 +84,7 @@ https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compile https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/7.2.1/databinding-compiler-common-7.2.1.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/7.3.1/databinding-compiler-common-7.3.1.pom https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/8.1.1/databinding-compiler-common-8.1.1.pom +https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-compiler-common/8.5.0/databinding-compiler-common-8.5.0.pom https://dl.google.com/dl/android/maven2/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom https://dl.google.com/dl/android/maven2/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0.pom https://dl.google.com/dl/android/maven2/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom @@ -189,12 +191,14 @@ https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/7.0. https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/7.2.1/baseLibrary-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/7.3.1/baseLibrary-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/8.1.1/baseLibrary-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/8.5.0/baseLibrary-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/databinding/compilerCommon/3.0.1/compilerCommon-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/signflinger/4.1.0/signflinger-4.1.0.pom https://dl.google.com/dl/android/maven2/com/android/signflinger/7.0.4/signflinger-7.0.4.pom https://dl.google.com/dl/android/maven2/com/android/signflinger/7.2.1/signflinger-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/signflinger/7.3.1/signflinger-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/signflinger/8.1.1/signflinger-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/signflinger/8.5.0/signflinger-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/support/animated-vector-drawable/26.0.2/animated-vector-drawable-26.0.2.pom https://dl.google.com/dl/android/maven2/com/android/support/animated-vector-drawable/27.0.1/animated-vector-drawable-27.0.1.pom https://dl.google.com/dl/android/maven2/com/android/support/appcompat-v7/26.0.2/appcompat-v7-26.0.2.pom @@ -223,6 +227,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/cras https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/crash/30.2.1/crash-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/crash/30.3.1/crash-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/crash/31.1.1/crash-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/crash/31.5.0/crash-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/26.0.1/protos-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/26.2.1/protos-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/26.5.3/protos-26.5.3.pom @@ -232,6 +237,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/prot https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/30.2.1/protos-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/30.3.1/protos-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/31.1.1/protos-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/protos/31.5.0/protos-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/26.0.1/shared-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/26.2.1/shared-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/26.5.3/shared-26.5.3.pom @@ -241,6 +247,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shar https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/30.2.1/shared-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/30.3.1/shared-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/31.1.1/shared-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/shared/31.5.0/shared-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/26.0.1/tracker-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/26.2.1/tracker-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/26.5.3/tracker-26.5.3.pom @@ -250,6 +257,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/trac https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/30.2.1/tracker-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/30.3.1/tracker-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/31.1.1/tracker-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library/tracker/31.5.0/tracker-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.0.1/annotations-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.2.1/annotations-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.5.3/annotations-26.5.3.pom @@ -259,6 +267,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/annotations/30.0.4/ann https://dl.google.com/dl/android/maven2/com/android/tools/annotations/30.2.1/annotations-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/annotations/30.3.1/annotations-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/annotations/31.1.1/annotations-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/annotations/31.5.0/annotations-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.4.0/aapt2-proto-0.4.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/4.1.0-6503028/aapt2-proto-4.1.0-6503028.pom @@ -269,12 +278,14 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/7.2. https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/7.3.0-alpha07-8248216/aapt2-proto-7.3.0-alpha07-8248216.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/7.3.1-8691043/aapt2-proto-7.3.1-8691043.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/8.1.1-10154469/aapt2-proto-8.1.1-10154469.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/8.5.0-11315950/aapt2-proto-8.5.0-11315950.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/8.1.1-10154469/aapt2-8.1.1-10154469.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompiler/4.1.0/aaptcompiler-4.1.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompiler/7.0.4/aaptcompiler-7.0.4.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompiler/7.2.1/aaptcompiler-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompiler/7.3.1/aaptcompiler-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompiler/8.1.1/aaptcompiler-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompiler/8.5.0/aaptcompiler-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.0.1/apksig-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.2.1/apksig-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.5.3/apksig-3.5.3.pom @@ -284,6 +295,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/7.0.4/apk https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/7.2.1/apksig-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/7.3.1/apksig-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/8.1.1/apksig-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/8.5.0/apksig-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/3.2.1/apkzlib-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/3.5.3/apkzlib-3.5.3.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/3.5.4/apkzlib-3.5.4.pom @@ -292,6 +304,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/7.0.4/ap https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/7.2.1/apkzlib-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/7.3.1/apkzlib-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/8.1.1/apkzlib-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/8.5.0/apkzlib-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.0.1/builder-model-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.2.1/builder-model-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.5.3/builder-model-3.5.3.pom @@ -301,6 +314,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/7. https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/7.2.1/builder-model-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/7.3.1/builder-model-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/8.1.1/builder-model-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/8.5.0/builder-model-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/3.0.1/builder-test-api-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/3.2.1/builder-test-api-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/3.5.3/builder-test-api-3.5.3.pom @@ -310,6 +324,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/7.2.1/builder-test-api-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/7.3.1/builder-test-api-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/8.1.1/builder-test-api-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/8.5.0/builder-test-api-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.1/builder-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.2.1/builder-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.5.3/builder-3.5.3.pom @@ -319,6 +334,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/7.0.4/bu https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/7.2.1/builder-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/7.3.1/builder-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1.1/builder-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.5.0/builder-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.5.0/bundletool-0.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.9.0/bundletool-0.9.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.14.0/bundletool-0.14.0.pom @@ -326,6 +342,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/1.6.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/1.8.2/bundletool-1.8.2.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/1.9.0/bundletool-1.9.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/1.14.0/bundletool-1.14.0.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/1.16.0/bundletool-1.16.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.0.1/gradle-api-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.2.1/gradle-api-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.5.3/gradle-api-3.5.3.pom @@ -335,8 +352,10 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/7.0.4 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/7.2.1/gradle-api-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/7.3.1/gradle-api-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/8.1.1/gradle-api-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/8.5.0/gradle-api-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-core/3.0.1/gradle-core-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-settings-api/8.1.1/gradle-settings-api-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-settings-api/8.5.0/gradle-settings-api-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.3/gradle-3.5.3.pom @@ -346,6 +365,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.0.4/gra https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.2.1/gradle-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.3.1/gradle-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.1.1/gradle-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.5.0/gradle-8.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta04/jetifier-core-1.0.0-beta04.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta09/jetifier-core-1.0.0-beta09.pom @@ -363,6 +383,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-merger/ https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-merger/30.2.1/manifest-merger-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-merger/30.3.1/manifest-merger-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-merger/31.1.1/manifest-merger-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-merger/31.5.0/manifest-merger-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/common/26.0.1/common-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/common/26.2.1/common-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/common/26.5.3/common-26.5.3.pom @@ -372,6 +393,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/common/30.0.4/common-3 https://dl.google.com/dl/android/maven2/com/android/tools/common/30.2.1/common-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/common/30.3.1/common-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/common/31.1.1/common-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/common/31.5.0/common-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/26.0.1/ddmlib-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/26.2.1/ddmlib-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/26.5.3/ddmlib-26.5.3.pom @@ -381,6 +403,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/30.0.4/ddm https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/30.2.1/ddmlib-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/30.3.1/ddmlib-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/31.1.1/ddmlib-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/31.5.0/ddmlib-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/26.0.1/dvlib-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/26.2.1/dvlib-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/26.5.3/dvlib-26.5.3.pom @@ -390,11 +413,15 @@ https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/30.0.4/dvlib-30. https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/30.2.1/dvlib-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/30.3.1/dvlib-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/31.1.1/dvlib-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/31.5.0/dvlib-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/external/com-intellij/intellij-core/26.0.1/intellij-core-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/external/com-intellij/intellij-core/31.1.1/intellij-core-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/external/com-intellij/intellij-core/31.5.0/intellij-core-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/external/com-intellij/kotlin-compiler/31.1.1/kotlin-compiler-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/external/com-intellij/kotlin-compiler/31.5.0/kotlin-compiler-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetbrains/uast/26.0.1/uast-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetbrains/uast/31.1.1/uast-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetbrains/uast/31.5.0/uast-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/26.0.1/layoutlib-api-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/26.2.1/layoutlib-api-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/26.5.3/layoutlib-api-26.5.3.pom @@ -404,26 +431,34 @@ https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-ap https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/30.2.1/layoutlib-api-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/30.3.1/layoutlib-api-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/31.1.1/layoutlib-api-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/31.5.0/layoutlib-api-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/26.0.1/lint-api-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/31.1.1/lint-api-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/31.5.0/lint-api-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/26.0.1/lint-checks-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/31.1.1/lint-checks-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/31.5.0/lint-checks-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.2.1/lint-gradle-api-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.5.3/lint-gradle-api-26.5.3.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.5.4/lint-gradle-api-26.5.4.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/27.1.0/lint-gradle-api-27.1.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/31.1.1/lint-gradle-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/31.5.0/lint-gradle-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/27.1.0/lint-model-27.1.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/30.0.4/lint-model-30.0.4.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/30.2.1/lint-model-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/30.3.1/lint-model-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/31.1.1/lint-model-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/31.5.0/lint-model-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef-remover/30.2.1/lint-typedef-remover-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef-remover/30.3.1/lint-typedef-remover-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef-remover/31.1.1/lint-typedef-remover-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef-remover/31.5.0/lint-typedef-remover-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.1/lint-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/31.1.1/lint-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/31.5.0/lint-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/play-sdk-proto/31.1.1/play-sdk-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/play-sdk-proto/31.5.0/play-sdk-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.0.1/repository-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.2.1/repository-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.5.3/repository-26.5.3.pom @@ -433,6 +468,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/repository/30.0.4/repo https://dl.google.com/dl/android/maven2/com/android/tools/repository/30.2.1/repository-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/repository/30.3.1/repository-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/repository/31.1.1/repository-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/repository/31.5.0/repository-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/26.0.1/sdklib-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/26.2.1/sdklib-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/26.5.3/sdklib-26.5.3.pom @@ -442,6 +478,7 @@ https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/30.0.4/sdklib-3 https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/30.2.1/sdklib-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/30.3.1/sdklib-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/31.1.1/sdklib-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/31.5.0/sdklib-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/26.0.1/sdk-common-26.0.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/26.2.1/sdk-common-26.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/26.5.3/sdk-common-26.5.3.pom @@ -451,41 +488,53 @@ https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/30.0.4/sdk- https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/30.2.1/sdk-common-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/30.3.1/sdk-common-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/31.1.1/sdk-common-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/31.5.0/sdk-common-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-ddmlib-proto/30.2.1/android-device-provider-ddmlib-proto-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-ddmlib-proto/30.3.1/android-device-provider-ddmlib-proto-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-ddmlib-proto/31.1.1/android-device-provider-ddmlib-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-ddmlib-proto/31.5.0/android-device-provider-ddmlib-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-gradle-proto/30.0.4/android-device-provider-gradle-proto-30.0.4.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-gradle-proto/30.2.1/android-device-provider-gradle-proto-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-gradle-proto/30.3.1/android-device-provider-gradle-proto-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-gradle-proto/31.1.1/android-device-provider-gradle-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-device-provider-gradle-proto/31.5.0/android-device-provider-gradle-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/30.2.1/android-test-plugin-host-additional-test-output-proto-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/30.3.1/android-test-plugin-host-additional-test-output-proto-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.1.1/android-test-plugin-host-additional-test-output-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.5.0/android-test-plugin-host-additional-test-output-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.1.1/android-test-plugin-host-apk-installer-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.5.0/android-test-plugin-host-apk-installer-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-coverage-proto/30.2.1/android-test-plugin-host-coverage-proto-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-coverage-proto/30.3.1/android-test-plugin-host-coverage-proto-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.1.1/android-test-plugin-host-coverage-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.5.0/android-test-plugin-host-coverage-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.1.1/android-test-plugin-host-emulator-control-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.5.0/android-test-plugin-host-emulator-control-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.1.1/android-test-plugin-host-logcat-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.5.0/android-test-plugin-host-logcat-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-retention-proto/30.0.4/android-test-plugin-host-retention-proto-30.0.4.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-retention-proto/30.2.1/android-test-plugin-host-retention-proto-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-retention-proto/30.3.1/android-test-plugin-host-retention-proto-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-retention-proto/31.1.1/android-test-plugin-host-retention-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-host-retention-proto/31.5.0/android-test-plugin-host-retention-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/30.0.4/android-test-plugin-result-listener-gradle-proto-30.0.4.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/30.2.1/android-test-plugin-result-listener-gradle-proto-30.2.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/30.3.1/android-test-plugin-result-listener-gradle-proto-30.3.1.pom https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.1.1/android-test-plugin-result-listener-gradle-proto-31.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.5.0/android-test-plugin-result-listener-gradle-proto-31.5.0.pom https://dl.google.com/dl/android/maven2/com/android/zipflinger/4.1.0/zipflinger-4.1.0.pom https://dl.google.com/dl/android/maven2/com/android/zipflinger/7.0.4/zipflinger-7.0.4.pom https://dl.google.com/dl/android/maven2/com/android/zipflinger/7.2.1/zipflinger-7.2.1.pom https://dl.google.com/dl/android/maven2/com/android/zipflinger/7.3.1/zipflinger-7.3.1.pom https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.1.1/zipflinger-8.1.1.pom +https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.5.0/zipflinger-8.5.0.pom https://dl.google.com/dl/android/maven2/com/google/android/material/material/1.0.0/material-1.0.0.pom https://dl.google.com/dl/android/maven2/com/google/android/material/material/1.2.0-alpha03/material-1.2.0-alpha03.pom -https://dl.google.com/dl/android/maven2/com/google/prefab/cli/2.0.0/cli-2.0.0.pom +https://dl.google.com/dl/android/maven2/com/google/prefab/cli/2.1.0/cli-2.1.0.pom https://dl.google.com/dl/android/maven2/com/google/testing/platform/core-proto/0.0.8-alpha04/core-proto-0.0.8-alpha04.pom https://dl.google.com/dl/android/maven2/com/google/testing/platform/core-proto/0.0.8-alpha07/core-proto-0.0.8-alpha07.pom https://dl.google.com/dl/android/maven2/com/google/testing/platform/core-proto/0.0.8-alpha08/core-proto-0.0.8-alpha08.pom +https://dl.google.com/dl/android/maven2/com/google/testing/platform/core-proto/0.0.9-alpha02/core-proto-0.0.9-alpha02.pom https://dl.google.com/dl/android/maven2/com/google/test/platform/core-proto/0.0.2-dev/core-proto-0.0.2-dev.pom https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom https://jitpack.io/com/github/status-im/function/0.0.1/function-0.0.1.pom @@ -506,6 +555,7 @@ https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-co https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +https://repo.maven.apache.org/maven2/commons-io/commons-io/2.13.0/commons-io-2.13.0.pom https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom @@ -565,69 +615,72 @@ https://repo.maven.apache.org/maven2/com/diffplug/spotless/spotless-plugin-gradl https://repo.maven.apache.org/maven2/com/diffplug/spotless/spotless-plugin-gradle/6.11.0/spotless-plugin-gradle-6.11.0.pom https://repo.maven.apache.org/maven2/com/drewnoakes/metadata-extractor/2.18.0/metadata-extractor-2.18.0.pom https://repo.maven.apache.org/maven2/com/facebook/conceal/conceal/1.1.3/conceal-1.1.3.pom -https://repo.maven.apache.org/maven2/com/facebook/fbjni/fbjni/0.5.1/fbjni-0.5.1.pom +https://repo.maven.apache.org/maven2/com/facebook/fbjni/fbjni/0.6.0/fbjni-0.6.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/animated-base/2.5.0/animated-base-2.5.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/animated-drawable/2.5.0/animated-drawable-2.5.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/animated-gif/2.5.0/animated-gif-2.5.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/drawee/2.5.0/drawee-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/drawee/3.1.3/drawee-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/drawee/3.2.0/drawee-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/fbcore/2.5.0/fbcore-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/fbcore/3.1.3/fbcore-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/fbcore/3.2.0/fbcore-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/fresco/2.5.0/fresco-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/fresco/3.1.3/fresco-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/fresco/3.2.0/fresco-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-base/2.5.0/imagepipeline-base-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-base/3.1.3/imagepipeline-base-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-base/3.2.0/imagepipeline-base-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-native/2.5.0/imagepipeline-native-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-native/3.1.3/imagepipeline-native-3.1.3.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-okhttp3/3.1.3/imagepipeline-okhttp3-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-native/3.2.0/imagepipeline-native-3.2.0.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline-okhttp3/3.2.0/imagepipeline-okhttp3-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline/2.5.0/imagepipeline-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline/3.1.3/imagepipeline-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/imagepipeline/3.2.0/imagepipeline-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-ashmem/2.5.0/memory-type-ashmem-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-ashmem/3.1.3/memory-type-ashmem-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-ashmem/3.2.0/memory-type-ashmem-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-java/2.5.0/memory-type-java-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-java/3.1.3/memory-type-java-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-java/3.2.0/memory-type-java-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-native/2.5.0/memory-type-native-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-native/3.1.3/memory-type-native-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/memory-type-native/3.2.0/memory-type-native-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/middleware/2.5.0/middleware-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/middleware/3.1.3/middleware-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/middleware/3.2.0/middleware-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/nativeimagefilters/2.5.0/nativeimagefilters-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/nativeimagefilters/3.1.3/nativeimagefilters-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/nativeimagefilters/3.2.0/nativeimagefilters-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/nativeimagetranscoder/2.5.0/nativeimagetranscoder-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/nativeimagetranscoder/3.1.3/nativeimagetranscoder-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/nativeimagetranscoder/3.2.0/nativeimagetranscoder-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/soloader/2.5.0/soloader-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/soloader/3.1.3/soloader-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/soloader/3.2.0/soloader-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/fresco/ui-common/2.5.0/ui-common-2.5.0.pom -https://repo.maven.apache.org/maven2/com/facebook/fresco/ui-common/3.1.3/ui-common-3.1.3.pom +https://repo.maven.apache.org/maven2/com/facebook/fresco/ui-common/3.2.0/ui-common-3.2.0.pom https://repo.maven.apache.org/maven2/com/facebook/infer/annotation/infer-annotation/0.18.0/infer-annotation-0.18.0.pom -https://repo.maven.apache.org/maven2/com/facebook/react/hermes-android/0.73.5/hermes-android-0.73.5.pom -https://repo.maven.apache.org/maven2/com/facebook/react/react-android/0.73.5/react-android-0.73.5.pom +https://repo.maven.apache.org/maven2/com/facebook/react/hermes-android/0.75.3/hermes-android-0.75.3.pom +https://repo.maven.apache.org/maven2/com/facebook/react/react-android/0.75.3/react-android-0.75.3.pom https://repo.maven.apache.org/maven2/com/facebook/soloader/annotation/0.10.1/annotation-0.10.1.pom https://repo.maven.apache.org/maven2/com/facebook/soloader/annotation/0.10.5/annotation-0.10.5.pom +https://repo.maven.apache.org/maven2/com/facebook/soloader/annotation/0.11.0/annotation-0.11.0.pom https://repo.maven.apache.org/maven2/com/facebook/soloader/nativeloader/0.10.1/nativeloader-0.10.1.pom https://repo.maven.apache.org/maven2/com/facebook/soloader/nativeloader/0.10.5/nativeloader-0.10.5.pom +https://repo.maven.apache.org/maven2/com/facebook/soloader/nativeloader/0.11.0/nativeloader-0.11.0.pom https://repo.maven.apache.org/maven2/com/facebook/soloader/soloader/0.10.1/soloader-0.10.1.pom https://repo.maven.apache.org/maven2/com/facebook/soloader/soloader/0.10.5/soloader-0.10.5.pom +https://repo.maven.apache.org/maven2/com/facebook/soloader/soloader/0.11.0/soloader-0.11.0.pom https://repo.maven.apache.org/maven2/com/facebook/yoga/proguard-annotations/1.19.0/proguard-annotations-1.19.0.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.11.1/jackson-annotations-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.17.2/jackson-annotations-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.0-rc1/jackson-annotations-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.1/jackson-core-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.17.2/jackson-core-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.0-rc1/jackson-core-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.11.1/jackson-databind-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.17.2/jackson-databind-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.0-rc1/jackson-databind-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.1/jackson-dataformat-xml-2.11.1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.11.1/jackson-base-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.17.2/jackson-base-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.18.0-rc1/jackson-base-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.11.1/jackson-bom-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.18.0-rc1/jackson-bom-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.18-rc1/jackson-parent-2.18-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.11.1/jackson-modules-base-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.17.2/jackson-modules-base-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.18.0-rc1/jackson-modules-base-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.1/jackson-module-jaxb-annotations-2.11.1.pom -https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.17.2/jackson-module-jaxb-annotations-2.17.2.pom +https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.18.0-rc1/jackson-module-jaxb-annotations-2.18.0-rc1.pom https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-kotlin/2.11.1/jackson-module-kotlin-2.11.1.pom https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom -https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/58/oss-parent-58.pom +https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/61/oss-parent-61.pom https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.pom https://repo.maven.apache.org/maven2/com/github/bumptech/glide/annotations/4.12.0/annotations-4.12.0.pom https://repo.maven.apache.org/maven2/com/github/bumptech/glide/compiler/4.12.0/compiler-4.12.0.pom @@ -646,6 +699,7 @@ https://repo.maven.apache.org/maven2/com/googlecode/juniversalchardet/juniversal https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/1.12.0/proto-google-common-protos-1.12.0.pom https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.pom +https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0.pom https://repo.maven.apache.org/maven2/com/google/auto/auto-parent/3/auto-parent-3.pom https://repo.maven.apache.org/maven2/com/google/auto/auto-parent/6/auto-parent-6.pom https://repo.maven.apache.org/maven2/com/google/auto/auto-parent/7/auto-parent-7.pom @@ -668,6 +722,7 @@ https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.5/gson https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.6/gson-parent-2.8.6.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.9/gson-parent-2.8.9.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.1/gson-parent-2.9.1.pom +https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.11.0/gson-parent-2.11.0.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.3/gson-2.3.pom @@ -677,6 +732,7 @@ https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5. https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1.pom +https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.11.0/gson-2.11.0.pom https://repo.maven.apache.org/maven2/com/google/crypto/tink/tink/1.3.0-rc2/tink-1.3.0-rc2.pom https://repo.maven.apache.org/maven2/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.pom @@ -692,8 +748,9 @@ https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotatio https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom +https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.27.0/error_prone_annotations-2.27.0.pom -https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.31.0/error_prone_annotations-2.31.0.pom +https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.32.0/error_prone_annotations-2.32.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.1/error_prone_parent-2.3.1.pom @@ -705,8 +762,9 @@ https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2. https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.9.0/error_prone_parent-2.9.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.10.0/error_prone_parent-2.10.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom +https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.27.0/error_prone_parent-2.27.0.pom -https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.31.0/error_prone_parent-2.31.0.pom +https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.32.0/error_prone_parent-2.32.0.pom https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom @@ -723,6 +781,8 @@ https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/30.1-jre/guav https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.0.1-android/guava-parent-31.0.1-android.pom https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.0.1-jre/guava-parent-31.0.1-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom +https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.0.1-android/guava-parent-32.0.1-android.pom +https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.0.1-jre/guava-parent-32.0.1-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.3.0-jre/guava-parent-33.3.0-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/guava-testlib/33.3.0-jre/guava-testlib-33.3.0-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/guava/17.0/guava-17.0.pom @@ -737,11 +797,14 @@ https://repo.maven.apache.org/maven2/com/google/guava/guava/30.1-jre/guava-30.1- https://repo.maven.apache.org/maven2/com/google/guava/guava/31.0.1-android/guava-31.0.1-android.pom https://repo.maven.apache.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom +https://repo.maven.apache.org/maven2/com/google/guava/guava/32.0.1-android/guava-32.0.1-android.pom +https://repo.maven.apache.org/maven2/com/google/guava/guava/32.0.1-jre/guava-32.0.1-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/guava/33.3.0-jre/guava-33.3.0-jre.pom https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom +https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs-parent/1.1/jimfs-parent-1.1.pom https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.1/jimfs-1.1.pom @@ -751,14 +814,18 @@ https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.13.0/pro https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.17.2/protobuf-bom-3.17.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.19.2/protobuf-bom-3.19.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.19.3/protobuf-bom-3.19.3.pom -https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/4.28.0/protobuf-bom-4.28.0.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.12/protobuf-bom-3.21.12.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.22.3/protobuf-bom-3.22.3.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/4.28.1/protobuf-bom-4.28.1.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/3.17.2/protobuf-javalite-3.17.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/3.19.2/protobuf-javalite-3.19.2.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/3.22.3/protobuf-javalite-3.22.3.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.10.0/protobuf-java-util-3.10.0.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.19.3/protobuf-java-util-3.19.3.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.22.3/protobuf-java-util-3.22.3.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.0.0/protobuf-java-3.0.0.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.4.0/protobuf-java-3.4.0.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.5.1/protobuf-java-3.5.1.pom @@ -768,7 +835,9 @@ https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.13.0/pr https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.17.2/protobuf-java-3.17.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.2/protobuf-java-3.19.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3.pom -https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/4.28.0/protobuf-java-4.28.0.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.22.3/protobuf-java-3.22.3.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/4.28.1/protobuf-java-4.28.1.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-lite/3.0.1/protobuf-lite-3.0.1.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.0.0/protobuf-parent-3.0.0.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.4.0/protobuf-parent-3.4.0.pom @@ -779,7 +848,9 @@ https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.13.0/ https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.17.2/protobuf-parent-3.17.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.19.2/protobuf-parent-3.19.2.pom https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.19.3/protobuf-parent-3.19.3.pom -https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/4.28.0/protobuf-parent-4.28.0.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.12/protobuf-parent-3.21.12.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.22.3/protobuf-parent-3.22.3.pom +https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/4.28.1/protobuf-parent-4.28.1.pom https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/1.4.4/truth-parent-1.4.4.pom https://repo.maven.apache.org/maven2/com/google/truth/truth/1.4.4/truth-1.4.4.pom https://repo.maven.apache.org/maven2/com/google/zxing/core/3.4.1/core-3.4.1.pom @@ -800,7 +871,7 @@ https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/4.11.0/okhttp-4 https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.9.1/parent-3.9.1.pom https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.12.1/parent-3.12.1.pom https://repo.maven.apache.org/maven2/com/squareup/okio/okio-jvm/3.2.0/okio-jvm-3.2.0.pom -https://repo.maven.apache.org/maven2/com/squareup/okio/okio-jvm/3.9.0/okio-jvm-3.9.0.pom +https://repo.maven.apache.org/maven2/com/squareup/okio/okio-jvm/3.9.1/okio-jvm-3.9.1.pom https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.13.0/okio-parent-1.13.0.pom https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0.pom https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.17.4/okio-parent-1.17.4.pom @@ -810,7 +881,7 @@ https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.17.4/okio-1.17.4.p https://repo.maven.apache.org/maven2/com/squareup/okio/okio/2.8.0/okio-2.8.0.pom https://repo.maven.apache.org/maven2/com/squareup/okio/okio/2.9.0/okio-2.9.0.pom https://repo.maven.apache.org/maven2/com/squareup/okio/okio/3.2.0/okio-3.2.0.pom -https://repo.maven.apache.org/maven2/com/squareup/okio/okio/3.9.0/okio-3.9.0.pom +https://repo.maven.apache.org/maven2/com/squareup/okio/okio/3.9.1/okio-3.9.1.pom https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.2/all-1.2.2.pom @@ -858,74 +929,86 @@ https://repo.maven.apache.org/maven2/de/undercouch/gradle-download-task/5.0.1/gr https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.21.1/grpc-api-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.39.0/grpc-api-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.45.1/grpc-api-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.57.0/grpc-api-1.57.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.19.0/grpc-context-1.19.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.21.1/grpc-context-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.39.0/grpc-context-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.45.1/grpc-context-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.57.0/grpc-context-1.57.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.21.1/grpc-core-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.39.0/grpc-core-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.45.1/grpc-core-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.57.0/grpc-core-1.57.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-netty/1.21.1/grpc-netty-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-netty/1.39.0/grpc-netty-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-netty/1.45.1/grpc-netty-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-netty/1.57.0/grpc-netty-1.57.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.21.1/grpc-protobuf-lite-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.39.0/grpc-protobuf-lite-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.45.1/grpc-protobuf-lite-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.57.0/grpc-protobuf-lite-1.57.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.21.1/grpc-protobuf-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.39.0/grpc-protobuf-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.45.1/grpc-protobuf-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.57.0/grpc-protobuf-1.57.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.21.1/grpc-stub-1.21.1.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.39.0/grpc-stub-1.39.0.pom https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.45.1/grpc-stub-1.45.1.pom +https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.57.0/grpc-stub-1.57.0.pom https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.52.Final/netty-buffer-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.93.Final/netty-buffer-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-buffer/5.0.0.Alpha2/netty-buffer-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.34.Final/netty-codec-http2-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.52.Final/netty-codec-http2-4.1.52.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.93.Final/netty-codec-http2-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.52.Final/netty-codec-http-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.93.Final/netty-codec-http-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/5.0.0.Alpha2/netty-codec-http-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.34.Final/netty-codec-socks-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.52.Final/netty-codec-socks-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.93.Final/netty-codec-socks-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/5.0.0.Alpha2/netty-codec-socks-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.52.Final/netty-codec-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.93.Final/netty-codec-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-codec/5.0.0.Alpha2/netty-codec-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.52.Final/netty-common-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.93.Final/netty-common-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-common/5.0.0.Alpha2/netty-common-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.34.Final/netty-handler-proxy-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.52.Final/netty-handler-proxy-4.1.52.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.93.Final/netty-handler-proxy-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.52.Final/netty-handler-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.93.Final/netty-handler-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-handler/5.0.0.Alpha2/netty-handler-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.34.Final/netty-parent-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.52.Final/netty-parent-4.1.52.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.72.Final/netty-parent-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.93.Final/netty-parent-4.1.93.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.2.0.Alpha4/netty-parent-4.2.0.Alpha4.pom https://repo.maven.apache.org/maven2/io/netty/netty-parent/5.0.0.Alpha2/netty-parent-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.52.Final/netty-resolver-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.93.Final/netty-resolver-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-resolver/5.0.0.Alpha2/netty-resolver-5.0.0.Alpha2.pom -https://repo.maven.apache.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-tcnative-classes/2.0.66.Final/netty-tcnative-classes-2.0.66.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-tcnative-parent/2.0.46.Final/netty-tcnative-parent-2.0.46.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-tcnative-parent/2.0.66.Final/netty-tcnative-parent-2.0.66.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.93.Final/netty-transport-native-unix-common-4.1.93.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.2.0.Alpha4/netty-transport-native-unix-common-4.2.0.Alpha4.pom https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.52.Final/netty-transport-4.1.52.Final.pom -https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.pom +https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.93.Final/netty-transport-4.1.93.Final.pom https://repo.maven.apache.org/maven2/io/netty/netty-transport/5.0.0.Alpha2/netty-transport-5.0.0.Alpha2.pom https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.21.0/opencensus-api-0.21.0.pom https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-grpc-metrics/0.21.0/opencensus-contrib-grpc-metrics-0.21.0.pom https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0.pom +https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.26.0/perfmark-api-0.26.0.pom https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/7.2.0/fastutil-7.2.0.pom https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.4.0/fastutil-8.4.0.pom https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom @@ -942,6 +1025,7 @@ https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1. https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api-parent/2.4.0-b180830.0359/jaxb-api-parent-2.4.0-b180830.0359.pom https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/jaxb-api-2.2.12-b140109.1041.pom +https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.12/jaxb-api-2.2.12.pom https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.4.0-b180830.0359/jaxb-api-2.4.0-b180830.0359.pom https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom @@ -1002,6 +1086,7 @@ https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom https://repo.maven.apache.org/maven2/org/apache/apache/31/apache-31.pom https://repo.maven.apache.org/maven2/org/apache/apache/32/apache-32.pom https://repo.maven.apache.org/maven2/org/apache/apache/33/apache-33.pom @@ -1023,6 +1108,7 @@ https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/common https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/71/commons-parent-71.pom https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/72/commons-parent-72.pom @@ -1065,14 +1151,18 @@ https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/ht https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1.1/project-4.1.1.pom https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom https://repo.maven.apache.org/maven2/org/bitbucket/b_c/jose4j/0.7.0/jose4j-0.7.0.pom +https://repo.maven.apache.org/maven2/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.48/bcpkix-jdk15on-1.48.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.56/bcpkix-jdk15on-1.56.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.67/bcpkix-jdk15on-1.67.pom +https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk18on/1.77/bcpkix-jdk18on-1.77.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.48/bcprov-jdk15on-1.48.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.56/bcprov-jdk15on-1.56.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.67/bcprov-jdk15on-1.67.pom https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.pom +https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk18on/1.77/bcprov-jdk18on-1.77.pom +https://repo.maven.apache.org/maven2/org/bouncycastle/bcutil-jdk18on/1.77/bcutil-jdk18on-1.77.pom https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.5.6/checker-compat-qual-2.5.6.pom https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.8/checker-qual-2.5.8.pom @@ -1080,25 +1170,30 @@ https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.8.1/che https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.pom https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom -https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.46.0/checker-qual-3.46.0.pom +https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom +https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.47.0/checker-qual-3.47.0.pom https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-xml/3.0.9/groovy-xml-3.0.9.pom https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-xml/3.0.10/groovy-xml-3.0.10.pom https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.9/groovy-3.0.9.pom https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.10/groovy-3.0.10.pom +https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.17/groovy-3.0.17.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.18/animal-sniffer-annotations-1.18.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19.pom +https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.18/animal-sniffer-parent-1.18.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.19/animal-sniffer-parent-1.19.pom +https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.23/animal-sniffer-parent-1.23.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.24/animal-sniffer-parent-1.24.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/50/mojo-parent-50.pom +https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/74/mojo-parent-74.pom https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/84/mojo-parent-84.pom https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom https://repo.maven.apache.org/maven2/org/easymock/easymockclassextension/3.2/easymockclassextension-3.2.pom @@ -1144,8 +1239,10 @@ https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.12/org.jaco https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom +https://repo.maven.apache.org/maven2/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/annotations/23.0.0/annotations-23.0.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/dokka/dokka-core/1.4.32/dokka-core-1.4.32.pom https://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.pom https://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.pom @@ -1165,10 +1262,12 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-metadata-jvm/ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/1.7.22/org.jetbrains.kotlin.jvm.gradle.plugin-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/1.8.0/org.jetbrains.kotlin.jvm.gradle.plugin-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/1.9.0/org.jetbrains.kotlin.jvm.gradle.plugin-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/1.9.24/org.jetbrains.kotlin.jvm.gradle.plugin-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.6.20/kotlin-android-extensions-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.7.22/kotlin-android-extensions-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.8.0/kotlin-android-extensions-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.9.0/kotlin-android-extensions-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.9.24/kotlin-android-extensions-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-annotations-jvm/1.3.72/kotlin-annotations-jvm-1.3.72.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-annotation-processing-gradle/1.6.20/kotlin-annotation-processing-gradle-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-annotation-processing-gradle/1.7.22/kotlin-annotation-processing-gradle-1.7.22.pom @@ -1177,57 +1276,73 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1. https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1.7.22/kotlin-build-common-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1.8.0/kotlin-build-common-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1.9.0/kotlin-build-common-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1.9.24/kotlin-build-common-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.0/kotlin-build-tools-api-1.9.0.pom -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tools-impl/1.9.0/kotlin-build-tools-impl-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.24/kotlin-build-tools-api-1.9.24.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tools-impl/1.9.24/kotlin-build-tools-impl-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.6.20/kotlin-compiler-embeddable-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.7.22/kotlin-compiler-embeddable-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.8.0/kotlin-compiler-embeddable-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.0/kotlin-compiler-embeddable-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.24/kotlin-compiler-embeddable-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.6.20/kotlin-compiler-runner-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.7.22/kotlin-compiler-runner-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.8.0/kotlin-compiler-runner-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.0/kotlin-compiler-runner-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.24/kotlin-compiler-runner-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.6.20/kotlin-daemon-client-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.7.22/kotlin-daemon-client-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.8.0/kotlin-daemon-client-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.9.0/kotlin-daemon-client-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.9.24/kotlin-daemon-client-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.6.20/kotlin-daemon-embeddable-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.7.22/kotlin-daemon-embeddable-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.8.0/kotlin-daemon-embeddable-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.0/kotlin-daemon-embeddable-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.24/kotlin-daemon-embeddable-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugins-bom/1.9.0/kotlin-gradle-plugins-bom-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugins-bom/1.9.24/kotlin-gradle-plugins-bom-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.0/kotlin-gradle-plugin-annotations-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.24/kotlin-gradle-plugin-annotations-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.6.20/kotlin-gradle-plugin-api-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.7.22/kotlin-gradle-plugin-api-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.8.0/kotlin-gradle-plugin-api-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.0/kotlin-gradle-plugin-api-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.24/kotlin-gradle-plugin-api-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.7.22/kotlin-gradle-plugin-idea-proto-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.8.0/kotlin-gradle-plugin-idea-proto-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.0/kotlin-gradle-plugin-idea-proto-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.24/kotlin-gradle-plugin-idea-proto-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.7.22/kotlin-gradle-plugin-idea-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.8.0/kotlin-gradle-plugin-idea-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.0/kotlin-gradle-plugin-idea-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.24/kotlin-gradle-plugin-idea-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.6.20/kotlin-gradle-plugin-model-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.7.22/kotlin-gradle-plugin-model-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.8.0/kotlin-gradle-plugin-model-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.0/kotlin-gradle-plugin-model-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.24/kotlin-gradle-plugin-model-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.6.20/kotlin-gradle-plugin-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.7.22/kotlin-gradle-plugin-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.8.0/kotlin-gradle-plugin-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.0/kotlin-gradle-plugin-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.24/kotlin-gradle-plugin-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.6.20/kotlin-klib-commonizer-api-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.7.22/kotlin-klib-commonizer-api-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.8.0/kotlin-klib-commonizer-api-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.0/kotlin-klib-commonizer-api-1.9.0.pom -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-embeddable/1.9.0/kotlin-klib-commonizer-embeddable-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.24/kotlin-klib-commonizer-api-1.9.24.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commonizer-embeddable/1.9.24/kotlin-klib-commonizer-embeddable-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.6.20/kotlin-native-utils-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.7.22/kotlin-native-utils-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.8.0/kotlin-native-utils-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.9.0/kotlin-native-utils-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.9.24/kotlin-native-utils-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project-model/1.6.20/kotlin-project-model-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project-model/1.7.22/kotlin-project-model-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project-model/1.8.0/kotlin-project-model-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project-model/1.9.0/kotlin-project-model-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project-model/1.9.24/kotlin-project-model-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.1.3-2/kotlin-reflect-1.1.3-2.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.2.0/kotlin-reflect-1.2.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.50/kotlin-reflect-1.3.50.pom @@ -1238,27 +1353,33 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.6.10/ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.6.20/kotlin-reflect-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.7.22/kotlin-reflect-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.8.20-RC2/kotlin-reflect-1.8.20-RC2.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.9.20/kotlin-reflect-1.9.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/2.0.20/kotlin-reflect-2.0.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.6.20/kotlin-scripting-common-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.7.22/kotlin-scripting-common-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.8.0/kotlin-scripting-common-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.9.0/kotlin-scripting-common-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.9.24/kotlin-scripting-common-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.20/kotlin-scripting-compiler-embeddable-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.7.22/kotlin-scripting-compiler-embeddable-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.8.0/kotlin-scripting-compiler-embeddable-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.0/kotlin-scripting-compiler-embeddable-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.24/kotlin-scripting-compiler-embeddable-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.20/kotlin-scripting-compiler-impl-embeddable-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.7.22/kotlin-scripting-compiler-impl-embeddable-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.8.0/kotlin-scripting-compiler-impl-embeddable-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.0/kotlin-scripting-compiler-impl-embeddable-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.24/kotlin-scripting-compiler-impl-embeddable-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.20/kotlin-scripting-jvm-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.7.22/kotlin-scripting-jvm-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.8.0/kotlin-scripting-jvm-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.0/kotlin-scripting-jvm-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.24/kotlin-scripting-jvm-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.6.20/kotlin-script-runtime-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.7.22/kotlin-script-runtime-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.8.0/kotlin-script-runtime-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.9.0/kotlin-script-runtime-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.9.24/kotlin-script-runtime-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.2.71/kotlin-stdlib-common-1.2.71.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.31/kotlin-stdlib-common-1.3.31.pom @@ -1284,6 +1405,7 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.20-RC2/kotlin-stdlib-common-1.8.20-RC2.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.21/kotlin-stdlib-common-1.8.21.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.0/kotlin-stdlib-common-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.24/kotlin-stdlib-common-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.2.71/kotlin-stdlib-jdk7-1.2.71.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.50/kotlin-stdlib-jdk7-1.3.50.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.72/kotlin-stdlib-jdk7-1.3.72.pom @@ -1298,7 +1420,8 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.6 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.0/kotlin-stdlib-jdk7-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.20-RC2/kotlin-stdlib-jdk7-1.8.20-RC2.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.21/kotlin-stdlib-jdk7-1.8.21.pom -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.0/kotlin-stdlib-jdk7-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.20/kotlin-stdlib-jdk7-1.9.20.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.24/kotlin-stdlib-jdk7-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.2.71/kotlin-stdlib-jdk8-1.2.71.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.50/kotlin-stdlib-jdk8-1.3.50.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.72/kotlin-stdlib-jdk8-1.3.72.pom @@ -1313,7 +1436,8 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.6 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.0/kotlin-stdlib-jdk8-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.20-RC2/kotlin-stdlib-jdk8-1.8.20-RC2.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.21/kotlin-stdlib-jdk8-1.8.21.pom -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.0/kotlin-stdlib-jdk8-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.20/kotlin-stdlib-jdk8-1.9.20.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.24/kotlin-stdlib-jdk8-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/kotlin-stdlib-1.2.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.2.20/kotlin-stdlib-1.2.20.pom @@ -1342,20 +1466,25 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.0/ko https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.20-RC2/kotlin-stdlib-1.8.20-RC2.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.21/kotlin-stdlib-1.8.21.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.0/kotlin-stdlib-1.9.0.pom -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.21/kotlin-stdlib-1.9.21.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.20/kotlin-stdlib-1.9.20.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.24/kotlin-stdlib-1.9.24.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.0.20/kotlin-stdlib-2.0.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-core/1.7.22/kotlin-tooling-core-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-core/1.8.0/kotlin-tooling-core-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-core/1.9.0/kotlin-tooling-core-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-core/1.9.24/kotlin-tooling-core-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-metadata/1.6.20/kotlin-tooling-metadata-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/1.6.20/kotlin-util-io-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/1.7.22/kotlin-util-io-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/1.8.0/kotlin-util-io-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/1.9.0/kotlin-util-io-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/1.9.24/kotlin-util-io-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/1.6.20/kotlin-util-klib-1.6.20.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/1.7.22/kotlin-util-klib-1.7.22.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/1.8.0/kotlin-util-klib-1.8.0.pom https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/1.9.0/kotlin-util-klib-1.9.0.pom +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/1.9.24/kotlin-util-klib-1.9.24.pom https://repo.maven.apache.org/maven2/org/jetbrains/markdown-jvm/0.2.1/markdown-jvm-0.2.1.pom https://repo.maven.apache.org/maven2/org/jetbrains/markdown/0.2.1/markdown-0.2.1.pom https://repo.maven.apache.org/maven2/org/jetbrains/trove4j/trove4j/20160824/trove4j-20160824.pom @@ -1363,6 +1492,8 @@ https://repo.maven.apache.org/maven2/org/json/json/20180813/json-20180813.pom https://repo.maven.apache.org/maven2/org/json/json/20240303/json-20240303.pom https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.13.1/jsoup-1.13.1.pom https://repo.maven.apache.org/maven2/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom +https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom +https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom https://repo.maven.apache.org/maven2/org/jvnet/staxex/stax-ex/1.7.7/stax-ex-1.7.7.pom https://repo.maven.apache.org/maven2/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.pom @@ -1385,6 +1516,7 @@ https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0.1/asm-analysis-8.0.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.1/asm-analysis-9.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.pom +https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.1/asm-commons-5.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.0/asm-commons-6.0.pom @@ -1392,6 +1524,7 @@ https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0.1/asm-commons-8.0.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.1/asm-commons-9.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.pom +https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/6.0_BETA/asm-debug-all-6.0_BETA.pom @@ -1407,6 +1540,7 @@ https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0.1/asm-tree-8.0.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.1/asm-tree-9.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.pom +https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/5.1/asm-util-5.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/6.0/asm-util-6.0.pom @@ -1414,6 +1548,7 @@ https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0/asm-util-7.0.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/8.0.1/asm-util-8.0.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.1/asm-util-9.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2.pom +https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.1/asm-5.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.pom @@ -1421,10 +1556,12 @@ https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.pom +https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.6/asm-9.6.pom https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom https://repo.maven.apache.org/maven2/org/robolectric/annotations/4.7.3/annotations-4.7.3.pom https://repo.maven.apache.org/maven2/org/robolectric/junit/4.7.3/junit-4.7.3.pom https://repo.maven.apache.org/maven2/org/robolectric/nativeruntime/4.7.3/nativeruntime-4.7.3.pom @@ -1439,10 +1576,14 @@ https://repo.maven.apache.org/maven2/org/robolectric/utils-reflector/4.7.3/utils https://repo.maven.apache.org/maven2/org/robolectric/utils/4.7.3/utils-4.7.3.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom +https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.1.0-alpha1/slf4j-api-2.1.0-alpha1.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-bom/2.1.0-alpha1/slf4j-bom-2.1.0-alpha1.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom +https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.1.0-alpha1/slf4j-parent-2.1.0-alpha1.pom https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/4/oss-parent-4.pom https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom diff --git a/nix/deps/gradle/generate.sh b/nix/deps/gradle/generate.sh index 3343147073..748ba1000e 100755 --- a/nix/deps/gradle/generate.sh +++ b/nix/deps/gradle/generate.sh @@ -58,7 +58,14 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 com.android.tools.build:gradle:3.5.4 androidx.annotation:annotation:1.6.0 androidx.annotation:annotation-jvm:1.6.0 -com.facebook.react:hermes-android:0.73.5' \ +com.facebook.react:hermes-android:0.75.3 +org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.24 +org.checkerframework:checker-qual:3.12.0 +com.android.tools.build:gradle:8.5.0 +org.junit:junit-bom:5.9.3 +org.junit:junit-bom:5.9.2 +org.codehaus.mojo:animal-sniffer-annotations:1.23 +com.android.tools.lint:lint-gradle:31.5.0' \ >> "${DEPS_LIST}" } diff --git a/nix/pkgs/aapt2/default.nix b/nix/pkgs/aapt2/default.nix index 70678216d3..a6a3842dde 100644 --- a/nix/pkgs/aapt2/default.nix +++ b/nix/pkgs/aapt2/default.nix @@ -10,7 +10,7 @@ let pname = "aapt2"; # Warning: This must be the same as gradlePluginVersion android/gradle.properties - version = "8.1.1-10154469"; + version = "8.5.0-11315950"; pkgPath = "com/android/tools/build/aapt2"; repoUrl = "https://dl.google.com/dl/android/maven2"; @@ -29,20 +29,20 @@ let jar = fetchurl { url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}"; sha256 = getAttr platform { - linux = "sha256-p54GGvEfAo0yk8euVO7QTu/c3zuityZhyGdhFSV6w+E="; - osx = "sha256-bO4ljdUEfbuns7EyT1FKGLqNGz+0bms5XsplXvzD2T0="; + linux = "sha256-DjB8BoQz77xkWhhk1DgLx5kRz13jEal2+SBAyyGHOdw="; + osx = "sha256-WNIP05Kek224CbMpmYtMN/8XyGijKgsDjD2ySfAf/lU="; }; }; sha = fetchurl { url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}.sha1"; sha256 = getAttr platform { - linux = "sha256-oUJOQ9j/sJ7Yt0V9WOrRmuqYI+2UWZxeefJ/WyNoWgw="; - osx = "sha256-w+q2j4MKtIOihPMaJxuIP9IwXvRIyBxgRIJLox4E7ac="; + linux = "sha256-FFMO+i6fvKUbr2wXjw7a/FdrLCLZwvi+B8s4FuzB8Wg="; + osx = "sha256-go0UDA+ISNaQXE+4i374sDXUGH+P2lLhlGZ9oWsSnQs="; }; }; pom = fetchurl { url = "${repoUrl}/${pkgPath}/${version}/${filenames.pom}"; - sha256 = "sha256-UdUGCoMmEfJxBS2demYKGdG4lzd2DqQbDUCHt/h7Ohg="; + sha256 = "sha256-fQRRqAVn6VY+eTfrt3UZU3PPiHk9IJ6pCjj948ROnvA="; }; }; diff --git a/nix/pkgs/android-sdk/compose.nix b/nix/pkgs/android-sdk/compose.nix index 8233a3f079..ca36e81801 100644 --- a/nix/pkgs/android-sdk/compose.nix +++ b/nix/pkgs/android-sdk/compose.nix @@ -18,7 +18,7 @@ androidenv.composeAndroidPackages { platformVersions = [ "34" ]; # This version must match cmake version inside android/app/build.gradle cmakeVersions = [ "3.22.1" ]; - ndkVersion = "25.2.9519653"; + ndkVersion = "26.1.10909125"; includeNDK = true; includeExtras = [ "extras;android;m2repository" diff --git a/package.json b/package.json index 3db807dbfe..6f370461e5 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "@react-native-clipboard/clipboard": "1.13.2", "@react-native-community/audio-toolkit": "git+https://github.com/tbenr/react-native-audio-toolkit.git#refs/tags/v2.0.3-status-v6", "@react-native-community/blur": "4.4.1", + "@react-native-community/cli": "14.1.1", "@react-native-community/hooks": "^3.0.0", "@react-native-community/masked-view": "^0.1.6", "@react-native-community/netinfo": "^4.4.0", @@ -35,14 +36,14 @@ "i18n-js": "^3.3.0", "jsc-android": "^250231.0.0", "node-libs-react-native": "^1.2.1", - "react": "18.2.0", - "react-dom": "18.0.0", - "react-native": "0.73.5", + "react": "18.3.1", + "react-dom": "18.3.1", + "react-native": "0.75.3", "react-native-background-timer": "^2.1.1", "react-native-biometrics": "^3.0.1", "react-native-blob-util": "^0.13.18", "react-native-camera-kit": "git+https://github.com/status-im/react-native-camera-kit.git#refs/tags/v14.0.0-beta15-status-v1", - "react-native-config": "^1.5.0", + "react-native-config": "1.5.3", "react-native-dialogs": "1.1.2", "react-native-draggable-flatlist": "4.0.1", "react-native-fast-image": "^8.5.11", @@ -56,10 +57,10 @@ "react-native-keychain": "8.1.2", "react-native-linear-gradient": "3.0.0-alpha.1", "react-native-lottie-splash-screen": "^1.0.1", - "react-native-navigation": "7.39.0", + "react-native-navigation": "7.40.1", "react-native-orientation-locker": "^1.5.0", "react-native-permissions": "4.1.5", - "react-native-reanimated": "3.6.1", + "react-native-reanimated": "3.15.2", "react-native-redash": "18.1.0", "react-native-shadow-2": "^7.0.8", "react-native-shake": "^3.3.1", @@ -78,18 +79,23 @@ "@babel/preset-env": "^7.20.0", "@babel/preset-react": "^7.18.6", "@babel/register": "7.0.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0-0", + "@babel/plugin-proposal-optional-chaining": "^7.0.0-0", + "@babel/plugin-transform-arrow-functions": "^7.0.0-0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0-0", + "@babel/plugin-transform-template-literals": "^7.0.0-0", "@jest/globals": "^25.1.0", "@mapbox/node-pre-gyp": "^1.0.9", - "@react-native/babel-preset": "0.73.21", + "@react-native/babel-preset": "0.75.3", "@react-native/codegen": "0.73.2", - "@react-native/gradle-plugin": "0.73.4", - "@react-native/metro-config": "0.73.5", + "@react-native/gradle-plugin": "0.75.3", + "@react-native/metro-config": "0.75.3", "@testing-library/jest-native": "^5.4.3", "@testing-library/react-native": "^12.4.2", "@tsconfig/react-native": "^3.0.0", "@types/jest": "^28.1.6", "@types/react": "^18.2.6", - "@types/react-test-renderer": "^18.0.0", + "@types/react-test-renderer": "18.3.0", "babel-jest": "^29.6.3", "concurrently": "^7.6.0", "jest": "^29.7.0", diff --git a/patches/LayoutDirectionApplier.kt.patch b/patches/LayoutDirectionApplier.kt.patch new file mode 100644 index 0000000000..ef8b216412 --- /dev/null +++ b/patches/LayoutDirectionApplier.kt.patch @@ -0,0 +1,21 @@ +--- /tmp/tmp-status-mobile-65370082b/tmp.XzSnIl2ZkE/LayoutDirectionApplier.kt 2024-09-16 22:59:38.120152000 +0530 ++++ ./node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/viewcontroller/LayoutDirectionApplier.kt 2024-09-16 22:59:43.857140365 +0530 +@@ -6,10 +6,12 @@ + + class LayoutDirectionApplier { + fun apply(root: ViewController<*>, options: Options, instanceManager: ReactInstanceManager) { +- if (options.layout.direction.hasValue() && instanceManager.currentReactContext != null) { +- root.activity.window.decorView.layoutDirection = options.layout.direction.get() +- I18nUtil.getInstance().allowRTL(instanceManager.currentReactContext, options.layout.direction.isRtl) +- I18nUtil.getInstance().forceRTL(instanceManager.currentReactContext, options.layout.direction.isRtl) ++ if (options.layout.direction.hasValue()) { ++ instanceManager.currentReactContext?.let { context -> ++ root.activity.window.decorView.layoutDirection = options.layout.direction.get() ++ I18nUtil.getInstance().allowRTL(context, options.layout.direction.isRtl) ++ I18nUtil.getInstance().forceRTL(context, options.layout.direction.isRtl) ++ } + } + } +-} +\ No newline at end of file ++} diff --git a/patches/ModalContentLayout.kt.patch b/patches/ModalContentLayout.kt.patch new file mode 100644 index 0000000000..6e001f252a --- /dev/null +++ b/patches/ModalContentLayout.kt.patch @@ -0,0 +1,44 @@ +--- /tmp/tmp-status-mobile-65370082b/tmp.ZT96tMu4Rb/ModalContentLayout.kt 2024-09-16 22:51:02.779796000 +0530 ++++ ./node_modules/react-native-navigation/lib/android/app/src/reactNative71/java/com/reactnativenavigation/react/modal/ModalContentLayout.kt 2024-09-16 22:52:23.327090657 +0530 +@@ -49,17 +49,17 @@ + updateFirstChildView() + } + } +- override fun onChildStartedNativeGesture(child: View, androidEvent: MotionEvent?) { ++ override fun onChildStartedNativeGesture(child: View, androidEvent: MotionEvent) { + mJSTouchDispatcher.onChildStartedNativeGesture(androidEvent, this.getEventDispatcher()) + } +- override fun onChildStartedNativeGesture(androidEvent: MotionEvent?) { ++ override fun onChildStartedNativeGesture(androidEvent: MotionEvent) { + mJSTouchDispatcher.onChildStartedNativeGesture(androidEvent, this.getEventDispatcher()) + } +- override fun onChildEndedNativeGesture(child: View, androidEvent: MotionEvent?) { ++ override fun onChildEndedNativeGesture(child: View, androidEvent: MotionEvent) { + mJSTouchDispatcher.onChildEndedNativeGesture(androidEvent, this.getEventDispatcher()) + } + override fun requestDisallowInterceptTouchEvent(disallowIntercept: Boolean) {} +- private fun getEventDispatcher(): EventDispatcher? { ++ private fun getEventDispatcher(): EventDispatcher { + val reactContext: ReactContext = this.getReactContext() + return reactContext.getNativeModule(UIManagerModule::class.java)!!.eventDispatcher + } +@@ -73,15 +73,15 @@ + return this.context as ReactContext + } + +- override fun onInterceptTouchEvent(event: MotionEvent?): Boolean { ++ override fun onInterceptTouchEvent(event: MotionEvent): Boolean { + mJSTouchDispatcher.handleTouchEvent(event, getEventDispatcher()) + return super.onInterceptTouchEvent(event) + } + +- override fun onTouchEvent(event: MotionEvent?): Boolean { ++ override fun onTouchEvent(event: MotionEvent): Boolean { + mJSTouchDispatcher.handleTouchEvent(event, getEventDispatcher()) + super.onTouchEvent(event) + return true + } + +-} +\ No newline at end of file ++} diff --git a/patches/ReactSettingsExtension.kt.patch b/patches/ReactSettingsExtension.kt.patch new file mode 100644 index 0000000000..db783affa6 --- /dev/null +++ b/patches/ReactSettingsExtension.kt.patch @@ -0,0 +1,29 @@ +--- /tmp/tmp-status-mobile-65370082b/tmp.MuPLwTpeqQ/ReactSettingsExtension.kt 2024-09-16 15:50:03.224554000 +0530 ++++ ./node_modules/@react-native/gradle-plugin/settings-plugin/src/main/kotlin/com/facebook/react/ReactSettingsExtension.kt 2024-09-16 15:57:02.999862248 +0530 +@@ -55,6 +55,9 @@ + ) { + outputFile.parentFile.mkdirs() + ++ val logger = Logging.getLogger("ReactSettingsExtension") ++ ++ /* + val updateConfig = + object : GenerateConfig { + private val pb = +@@ -69,6 +72,16 @@ + } + + checkAndUpdateCache(updateConfig, outputFile, outputFolder, lockFiles) ++ */ ++ ++ /* ++ * We update autolinking.json manually with nix/scripts/node_modules.sh ++ * We ensure we always have latest build/generated/autolinking/autolinking.json available ++ */ ++ ++ logger.info("Working Directory is -> $workingDirectory") ++ logger.info("Lock Files are -> ${lockFiles.files.joinToString(", ") { it.name }}") ++ logger.info("Command -> $command won't be executed. Its okay.") + + linkLibraries(getLibrariesToAutolink(outputFile)) + } diff --git a/patches/ReactTypefaceUtils.java.patch b/patches/ReactTypefaceUtils.java.patch new file mode 100644 index 0000000000..13bb29c650 --- /dev/null +++ b/patches/ReactTypefaceUtils.java.patch @@ -0,0 +1,25 @@ +--- /tmp/tmp-status-mobile-65370082b/tmp.RFxwFry0k1/ReactTypefaceUtils.java 2024-09-17 09:52:39.699257000 +0530 ++++ ./node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/utils/ReactTypefaceUtils.java 2024-09-17 09:53:01.232883405 +0530 +@@ -20,6 +20,7 @@ + import com.facebook.react.bridge.ReadableArray; + import com.facebook.react.views.text.ReactFontManager; + import com.facebook.react.views.text.ReactTextShadowNode; ++import com.facebook.react.common.ReactConstants; + import java.util.ArrayList; + import java.util.List; + +@@ -96,12 +97,12 @@ + + int want = 0; + if ((weight == Typeface.BOLD) +- || ((oldStyle & Typeface.BOLD) != 0 && weight == ReactTextShadowNode.UNSET)) { ++ || ((oldStyle & Typeface.BOLD) != 0 && weight == ReactConstants.UNSET)) { + want |= Typeface.BOLD; + } + + if ((style == Typeface.ITALIC) +- || ((oldStyle & Typeface.ITALIC) != 0 && style == ReactTextShadowNode.UNSET)) { ++ || ((oldStyle & Typeface.ITALIC) != 0 && style == ReactConstants.UNSET)) { + want |= Typeface.ITALIC; + } + diff --git a/patches/ReactViewGroup.kt.patch b/patches/ReactViewGroup.kt.patch new file mode 100644 index 0000000000..94b5410363 --- /dev/null +++ b/patches/ReactViewGroup.kt.patch @@ -0,0 +1,9 @@ +--- /tmp/tmp-status-mobile-65370082b/tmp.QyEZywPVH8/ReactViewGroup.kt 2024-09-17 08:39:24.686748000 +0530 ++++ ./node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/utils/ReactViewGroup.kt 2024-09-17 08:40:47.117817983 +0530 +@@ -4,4 +4,4 @@ + import com.facebook.react.views.view.ReactViewGroup + + val ReactViewGroup.borderRadius: Float +- get() = (background as? ReactViewBackgroundDrawable)?.fullBorderRadius ?: 0f +\ No newline at end of file ++ get() = (background as? ReactViewBackgroundDrawable)?.fullBorderWidth ?: 0f diff --git a/patches/ios-configure-glog.sh.patch b/patches/ios-configure-glog.sh.patch new file mode 100644 index 0000000000..2d28d72d38 --- /dev/null +++ b/patches/ios-configure-glog.sh.patch @@ -0,0 +1,17 @@ +--- /tmp/tmp-status-mobile-17180a000/tmp.oDuVBOUX8y/ios-configure-glog.sh 2024-09-15 16:02:00.955892000 +0530 ++++ ./node_modules/react-native/scripts/ios-configure-glog.sh 2024-09-15 16:03:11.116500837 +0530 +@@ -43,14 +43,6 @@ + fi + + XCRUN="$(which xcrun)" +-if [ -n "$XCRUN" ]; then +- export CC="$(xcrun -find -sdk $PLATFORM_NAME cc) -arch $CURRENT_ARCH -isysroot $(xcrun -sdk $PLATFORM_NAME --show-sdk-path)" +- export CXX="$CC" +-else +- export CC="$CC:-$(which gcc)" +- export CXX="$CXX:-$(which g++ || true)" +-fi +-export CXX="$CXX:-$CC" + + # Remove automake symlink if it exists + if [ -h "test-driver" ]; then diff --git a/patches/react-native-script.patch b/patches/react-native-script.patch deleted file mode 100644 index 4083731aa9..0000000000 --- a/patches/react-native-script.patch +++ /dev/null @@ -1,13 +0,0 @@ -# to fix https://github.com/status-im/status-mobile/issues/18548 - ---- ./node_modules/react-native/scripts/react_native_pods_utils/script_phases.sh -+++ ./node_modules/react-native/scripts/react_native_pods_utils/script_phases-patched.sh -@@ -104,7 +104,7 @@ - mkdir -p "$RCT_SCRIPT_OUTPUT_DIR" - - # Copy all output to output_dir -- cp -R -X "$TEMP_OUTPUT_DIR/." "$RCT_SCRIPT_OUTPUT_DIR" || exit 1 -+ cp -R "$TEMP_OUTPUT_DIR/." "$RCT_SCRIPT_OUTPUT_DIR" || exit 1 - echo "$LIBRARY_NAME output has been written to $RCT_SCRIPT_OUTPUT_DIR:" >> "${SCRIPT_OUTPUT_FILE_0}" 2>&1 - ls -1 "$RCT_SCRIPT_OUTPUT_DIR" >> "${SCRIPT_OUTPUT_FILE_0}" 2>&1 - } diff --git a/patches/react-native.patch b/patches/react-native.patch deleted file mode 100755 index 402fedefe2..0000000000 --- a/patches/react-native.patch +++ /dev/null @@ -1,15 +0,0 @@ -# Fix pod issue after upgrading to MacOS Sonoma and Xcode 15 -# https://github.com/status-im/status-mobile/issues/17682 - ---- ./node_modules/react-native/scripts/ios-configure-glog.sh -+++ ./node_modules/react-native/scripts/ios-configure-glog-patched.sh -@@ -42,9 +42,6 @@ - patch -p1 config.sub fix_glog_0.3.5_apple_silicon.patch - fi - --export CC="$(xcrun -find -sdk $PLATFORM_NAME cc) -arch $CURRENT_ARCH -isysroot $(xcrun -sdk $PLATFORM_NAME --show-sdk-path)" --export CXX="$CC" -- - # Remove automake symlink if it exists - if [ -h "test-driver" ]; then - rm test-driver diff --git a/scripts/build-android.sh b/scripts/build-android.sh index 64470e7e22..2bcb2c2ab4 100755 --- a/scripts/build-android.sh +++ b/scripts/build-android.sh @@ -72,5 +72,7 @@ else nixOpts+=("--option" "build-use-sandbox" "true") fi +# needed since react-native v0.75 +source "${GIT_ROOT}/scripts/generate_autolink_android.sh" "${GIT_ROOT}/nix/scripts/build.sh" targets.mobile.android.build "${nixOpts[@]}" diff --git a/scripts/generate_autolink_android.sh b/scripts/generate_autolink_android.sh new file mode 100755 index 0000000000..c15eede599 --- /dev/null +++ b/scripts/generate_autolink_android.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash + +function generate_android_autolink() { + AUTOLINKING_DIR="android/build/generated/autolinking" + + if [ ! -d "$AUTOLINKING_DIR" ]; then + mkdir -p "$AUTOLINKING_DIR" + echo "Created directory: $AUTOLINKING_DIR" + fi + + rm "$AUTOLINKING_DIR/autolinking.json" || true + react-native config > "$AUTOLINKING_DIR/autolinking.json" + echo "Generated autolinking.json" + + ROOT_VALUE=$(jq -r '.root' "$AUTOLINKING_DIR/autolinking.json") + + if [ -z "$ROOT_VALUE" ]; then + echo "Error: 'root' key not found in autolinking.json" + exit 1 + fi + + echo "Current 'root' value: $ROOT_VALUE" + + sed -i.bak "s|$ROOT_VALUE|..|g" "$AUTOLINKING_DIR/autolinking.json" + + echo "Updated autolinking.json: replaced all occurrences of '$ROOT_VALUE' with '..'" + + rm "$AUTOLINKING_DIR/autolinking.json.bak" +} + +generate_android_autolink diff --git a/src/quo/components/buttons/button/view.cljs b/src/quo/components/buttons/button/view.cljs index 3d2c83b7ba..127421958a 100644 --- a/src/quo/components/buttons/button/view.cljs +++ b/src/quo/components/buttons/button/view.cljs @@ -54,8 +54,8 @@ (fn [] (set-pressed-state nil) (when on-press-out (on-press-out))))] - [rn/touchable-without-feedback - {:disabled (boolean disabled?) + [rn/pressable + {:disabled disabled? :accessibility-label accessibility-label :on-press-in on-press-in-cb :on-press-out on-press-out-cb diff --git a/test/jest/jestSetup.js b/test/jest/jestSetup.js index 3b1aafbc25..1276e0bfd4 100644 --- a/test/jest/jestSetup.js +++ b/test/jest/jestSetup.js @@ -3,7 +3,7 @@ const { NativeModules } = require('react-native'); mockAsyncStorage = require('@react-native-async-storage/async-storage/jest/async-storage-mock'); require('react-native-gesture-handler/jestSetup'); -require('react-native-reanimated/src/reanimated2/jestUtils').setUpTests(); +require('react-native-reanimated').setUpTests(); jest.mock('@react-native-async-storage/async-storage', () => mockAsyncStorage); diff --git a/yarn.lock b/yarn.lock index 4dcdd6825c..502609db5e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -39,6 +39,14 @@ "@babel/highlight" "^7.22.13" chalk "^2.4.2" +"@babel/code-frame@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.0.tgz#c241dc454e5b5917e40d37e525e2f4530c399298" @@ -49,6 +57,11 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730" integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== +"@babel/compat-data@^7.25.2": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb" + integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ== + "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16": version "7.17.12" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.12.tgz#b4eb2d7ebc3449b062381644c93050db545b70ee" @@ -130,6 +143,16 @@ "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" +"@babel/generator@^7.25.6": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c" + integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw== + dependencies: + "@babel/types" "^7.25.6" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + "@babel/generator@^7.4.0", "@babel/generator@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9" @@ -171,6 +194,13 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-annotate-as-pure@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-annotate-as-pure@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" @@ -215,6 +245,17 @@ lru-cache "^5.1.1" semver "^6.3.0" +"@babel/helper-compilation-targets@^7.24.7", "@babel/helper-compilation-targets@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" + integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== + dependencies: + "@babel/compat-data" "^7.25.2" + "@babel/helper-validator-option" "^7.24.8" + browserslist "^4.23.1" + lru-cache "^5.1.1" + semver "^6.3.1" + "@babel/helper-create-class-features-plugin@^7.18.0": version "7.18.0" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19" @@ -272,6 +313,19 @@ "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" +"@babel/helper-create-class-features-plugin@^7.25.4": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14" + integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-replace-supers" "^7.25.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/traverse" "^7.25.4" + semver "^6.3.1" + "@babel/helper-create-regexp-features-plugin@^7.18.6": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" @@ -298,6 +352,15 @@ regexpu-core "^5.3.1" semver "^6.3.1" +"@babel/helper-create-regexp-features-plugin@^7.24.7": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz#24c75974ed74183797ffd5f134169316cd1808d9" + integrity sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + regexpu-core "^5.3.1" + semver "^6.3.1" + "@babel/helper-create-regexp-features-plugin@^7.8.3": version "7.8.8" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" @@ -358,7 +421,7 @@ "@babel/template" "^7.16.7" "@babel/types" "^7.17.0" -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.21.0": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== @@ -447,6 +510,14 @@ dependencies: "@babel/types" "^7.23.0" +"@babel/helper-member-expression-to-functions@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" + integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== + dependencies: + "@babel/traverse" "^7.24.8" + "@babel/types" "^7.24.8" + "@babel/helper-module-imports@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" @@ -529,6 +600,13 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-optimise-call-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" + integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" @@ -559,6 +637,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== +"@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" + integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== + "@babel/helper-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" @@ -566,16 +649,6 @@ dependencies: lodash "^4.17.13" -"@babel/helper-remap-async-to-generator@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" - integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-wrap-function" "^7.18.9" - "@babel/types" "^7.18.9" - "@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": version "7.22.17" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.17.tgz#dabaa50622b3b4670bd6546fc8db23eb12d89da0" @@ -585,6 +658,15 @@ "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-wrap-function" "^7.22.17" +"@babel/helper-remap-async-to-generator@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz#d2f0fbba059a42d68e5e378feaf181ef6055365e" + integrity sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-wrap-function" "^7.25.0" + "@babel/traverse" "^7.25.0" + "@babel/helper-replace-supers@^7.16.7": version "7.18.2" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz#41fdfcc9abaf900e18ba6e5931816d9062a7b2e0" @@ -626,6 +708,15 @@ "@babel/helper-member-expression-to-functions" "^7.22.5" "@babel/helper-optimise-call-expression" "^7.22.5" +"@babel/helper-replace-supers@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9" + integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/traverse" "^7.25.0" + "@babel/helper-simple-access@^7.20.2": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" @@ -654,6 +745,14 @@ dependencies: "@babel/types" "^7.22.5" +"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" + integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helper-split-export-declaration@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" @@ -692,6 +791,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== +"@babel/helper-string-parser@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" + integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== + "@babel/helper-validator-identifier@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" @@ -717,6 +821,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== +"@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + "@babel/helper-validator-identifier@^7.9.0": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" @@ -742,15 +851,10 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== -"@babel/helper-wrap-function@^7.18.9": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" - integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== - dependencies: - "@babel/helper-function-name" "^7.19.0" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.20.5" - "@babel/types" "^7.20.5" +"@babel/helper-validator-option@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" + integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== "@babel/helper-wrap-function@^7.22.17": version "7.22.17" @@ -761,6 +865,15 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.17" +"@babel/helper-wrap-function@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz#dab12f0f593d6ca48c0062c28bcfb14ebe812f81" + integrity sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ== + dependencies: + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.0" + "@babel/types" "^7.25.0" + "@babel/helpers@^7.17.9", "@babel/helpers@^7.23.0": version "7.23.1" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.1.tgz#44e981e8ce2b9e99f8f0b703f3326a4636c16d15" @@ -797,6 +910,16 @@ chalk "^2.4.2" js-tokens "^4.0.0" +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + "@babel/highlight@^7.8.3": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" @@ -841,6 +964,13 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.3.tgz#1d285d67a19162ff9daa358d4cb41d50c06220b3" integrity sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ== +"@babel/parser@^7.25.0", "@babel/parser@^7.25.6": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f" + integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q== + dependencies: + "@babel/types" "^7.25.6" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" @@ -857,17 +987,7 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-transform-optional-chaining" "^7.22.15" -"@babel/plugin-proposal-async-generator-functions@^7.0.0": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" - integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-remap-async-to-generator" "^7.18.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.0": +"@babel/plugin-proposal-class-properties@^7.13.0": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -883,7 +1003,7 @@ "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-export-default-from" "^7.18.6" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.0": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0-0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -891,34 +1011,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.0.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" - integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@^7.20.0": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" - integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== - dependencies: - "@babel/compat-data" "^7.20.5" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.20.7" - -"@babel/plugin-proposal-optional-catch-binding@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" - integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" - -"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.20.0": +"@babel/plugin-proposal-optional-chaining@^7.0.0-0", "@babel/plugin-proposal-optional-chaining@^7.13.12": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== @@ -1093,7 +1186,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== @@ -1157,6 +1250,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-arrow-functions@^7.0.0-0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514" + integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-arrow-functions@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" @@ -1174,6 +1274,16 @@ "@babel/helper-remap-async-to-generator" "^7.22.9" "@babel/plugin-syntax-async-generators" "^7.8.4" +"@babel/plugin-transform-async-generator-functions@^7.24.3": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz#2afd4e639e2d055776c9f091b6c0c180ed8cf083" + integrity sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-remap-async-to-generator" "^7.25.0" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/traverse" "^7.25.4" + "@babel/plugin-transform-async-to-generator@^7.20.0", "@babel/plugin-transform-async-to-generator@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" @@ -1212,6 +1322,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-class-properties@^7.0.0-0", "@babel/plugin-transform-class-properties@^7.24.1": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz#bae7dbfcdcc2e8667355cd1fb5eda298f05189fd" + integrity sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.25.4" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/plugin-transform-class-properties@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" @@ -1244,6 +1362,18 @@ "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" +"@babel/plugin-transform-classes@^7.0.0-0": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz#d29dbb6a72d79f359952ad0b66d88518d65ef89a" + integrity sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-replace-supers" "^7.25.0" + "@babel/traverse" "^7.25.4" + globals "^11.1.0" + "@babel/plugin-transform-classes@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" @@ -1336,6 +1466,14 @@ "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-flow" "^7.18.6" +"@babel/plugin-transform-for-of@^7.0.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70" + integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-transform-for-of@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" @@ -1391,6 +1529,14 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" +"@babel/plugin-transform-logical-assignment-operators@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" + integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-transform-member-expression-literals@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" @@ -1474,6 +1620,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0", "@babel/plugin-transform-nullish-coalescing-operator@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" + integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": version "7.22.11" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" @@ -1490,12 +1644,13 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-assign@^7.16.7": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.23.3.tgz#64177e8cf943460c7f0e1c410277546804f59625" - integrity sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA== +"@babel/plugin-transform-numeric-separator@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" + integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" "@babel/plugin-transform-object-rest-spread@^7.22.15": version "7.22.15" @@ -1508,6 +1663,16 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.22.15" +"@babel/plugin-transform-object-rest-spread@^7.24.5": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" + integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.24.7" + "@babel/plugin-transform-object-super@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" @@ -1524,6 +1689,23 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" +"@babel/plugin-transform-optional-catch-binding@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" + integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.0.0-0", "@babel/plugin-transform-optional-chaining@^7.24.5": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz#bb02a67b60ff0406085c13d104c99a835cdf365d" + integrity sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-transform-optional-chaining@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.15.tgz#d7a5996c2f7ca4ad2ad16dbb74444e5c4385b1ba" @@ -1540,13 +1722,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15": +"@babel/plugin-transform-parameters@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-parameters@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" + integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-private-methods@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" @@ -1630,6 +1819,14 @@ "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-transform-regenerator@^7.20.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" + integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + regenerator-transform "^0.15.2" + "@babel/plugin-transform-regenerator@^7.22.10": version "7.22.10" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" @@ -1664,6 +1861,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-shorthand-properties@^7.0.0-0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73" + integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-shorthand-properties@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" @@ -1701,6 +1905,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-template-literals@^7.0.0-0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8" + integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-template-literals@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" @@ -1767,6 +1978,14 @@ "@babel/helper-create-regexp-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-unicode-regex@^7.0.0-0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f" + integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-unicode-regex@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" @@ -1980,7 +2199,7 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7": +"@babel/template@^7.0.0", "@babel/template@^7.20.7": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== @@ -2007,6 +2226,15 @@ "@babel/parser" "^7.22.15" "@babel/types" "^7.22.15" +"@babel/template@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" + integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.25.0" + "@babel/types" "^7.25.0" + "@babel/template@^7.3.3": version "7.18.10" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" @@ -2073,7 +2301,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.2": +"@babel/traverse@^7.20.7", "@babel/traverse@^7.21.2": version "7.21.3" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.3.tgz#4747c5e7903d224be71f90788b06798331896f67" integrity sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ== @@ -2089,6 +2317,19 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.4": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41" + integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.6" + "@babel/parser" "^7.25.6" + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.6" + debug "^4.3.1" + globals "^11.1.0" + "@babel/traverse@^7.4.3": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.5.tgz#6e7c56b44e2ac7011a948c21e283ddd9d9db97a2" @@ -2112,7 +2353,7 @@ "@babel/helper-validator-identifier" "^7.16.7" to-fast-properties "^2.0.0" -"@babel/types@^7.18.10", "@babel/types@^7.18.2", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.3", "@babel/types@^7.22.10", "@babel/types@^7.22.15", "@babel/types@^7.22.17", "@babel/types@^7.22.5", "@babel/types@^7.23.0": +"@babel/types@^7.18.10", "@babel/types@^7.18.2", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.3", "@babel/types@^7.22.10", "@babel/types@^7.22.15", "@babel/types@^7.22.17", "@babel/types@^7.22.5", "@babel/types@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== @@ -2130,6 +2371,15 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" +"@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.6": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6" + integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw== + dependencies: + "@babel/helper-string-parser" "^7.24.8" + "@babel/helper-validator-identifier" "^7.24.7" + to-fast-properties "^2.0.0" + "@bcoe/v8-coverage@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" @@ -2821,6 +3071,15 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + "@jridgewell/resolve-uri@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" @@ -2846,6 +3105,11 @@ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + "@jridgewell/source-map@^0.3.3": version "0.3.5" resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" @@ -2893,6 +3157,14 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + "@jridgewell/trace-mapping@^0.3.9": version "0.3.13" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea" @@ -2931,6 +3203,27 @@ semver "^7.3.5" tar "^6.1.11" +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@parcel/watcher-android-arm64@2.4.1": version "2.4.1" resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84" @@ -3058,49 +3351,79 @@ resolved "https://registry.yarnpkg.com/@react-native-community/blur/-/blur-4.4.1.tgz#72cbc0be5a84022c33091683ec6888925ebcca6e" integrity sha512-XBSsRiYxE/MOEln2ayunShfJtWztHwUxLFcSL20o+HNNRnuUDv+GXkF6FmM2zE8ZUfrnhQ/zeTqvnuDPGw6O8A== -"@react-native-community/cli-clean@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-12.3.6.tgz#e8a7910bebc97266fd5068649013a03958021fc4" - integrity sha512-gUU29ep8xM0BbnZjwz9MyID74KKwutq9x5iv4BCr2im6nly4UMf1B1D+V225wR7VcDGzbgWjaezsJShLLhC5ig== +"@react-native-community/cli-clean@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-14.1.0.tgz#fee1a178fa58c84dfe18e23ee79fd3110d974971" + integrity sha512-/C4j1yntLo6faztNgZnsDtgpGqa6j0+GYrxOY8LqaKAN03OCnoeUUKO6w78dycbYSGglc1xjJg2RZI/M2oF2AA== dependencies: - "@react-native-community/cli-tools" "12.3.6" + "@react-native-community/cli-tools" "14.1.0" chalk "^4.1.2" execa "^5.0.0" + fast-glob "^3.3.2" -"@react-native-community/cli-config@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-12.3.6.tgz#5f0be68270217908a739c32e3155a0e354773251" - integrity sha512-JGWSYQ9EAK6m2v0abXwFLEfsqJ1zkhzZ4CV261QZF9MoUNB6h57a274h1MLQR9mG6Tsh38wBUuNfEPUvS1vYew== +"@react-native-community/cli-clean@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-14.1.1.tgz#445b3fd5bbe656823eb1f70c4c0f69a69a0b1217" + integrity sha512-EKZ/M/e61oeC+48IFKMhRRrQBpmDLtyGp9sxIP/oUA3ABWR2UkxGNBZ3W8kZr/O/keeyhoqqgcBEozGr/XsX7A== dependencies: - "@react-native-community/cli-tools" "12.3.6" + "@react-native-community/cli-tools" "14.1.1" chalk "^4.1.2" - cosmiconfig "^5.1.0" + execa "^5.0.0" + fast-glob "^3.3.2" + +"@react-native-community/cli-config@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-14.1.0.tgz#8cdebb890eeb3c25d6c117ee56c952e96ea2afbf" + integrity sha512-P3FK2rPUJBD1fmQHLgTqpHxsc111pnMdEEFR7KeqprCNz+Qr2QpPxfNy0V7s15tGL5rAv+wpbOGcioIV50EbxA== + dependencies: + "@react-native-community/cli-tools" "14.1.0" + chalk "^4.1.2" + cosmiconfig "^9.0.0" deepmerge "^4.3.0" - glob "^7.1.3" + fast-glob "^3.3.2" joi "^17.2.1" -"@react-native-community/cli-debugger-ui@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.6.tgz#418027a1ae76850079684d309a732eb378c7f690" - integrity sha512-SjUKKsx5FmcK9G6Pb6UBFT0s9JexVStK5WInmANw75Hm7YokVvHEgtprQDz2Uvy5znX5g2ujzrkIU//T15KQzA== +"@react-native-community/cli-config@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-14.1.1.tgz#d2e51bc4d053e463bcaf48f6ca9815131a9288f2" + integrity sha512-bVlEHonYrKxhHI/TmmO7huZGxyEGHJGrEQ1gnprtvBxN3tSAyD1pnKjDM3wDq290RO6vt9Oo9aydq0R/onIIkA== + dependencies: + "@react-native-community/cli-tools" "14.1.1" + chalk "^4.1.2" + cosmiconfig "^9.0.0" + deepmerge "^4.3.0" + fast-glob "^3.3.2" + joi "^17.2.1" + +"@react-native-community/cli-debugger-ui@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-14.1.0.tgz#0008039ad2c386730c415d9dfc6884d68fda2c93" + integrity sha512-+YbeCL0wLcBcqDwraJFGsqzcXu9S+bwTVrfImne/4mT6itfe3Oa93yrOVJgNbstrt5pJHuwpU76ZXfXoiuncsg== dependencies: serve-static "^1.13.1" -"@react-native-community/cli-doctor@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-12.3.6.tgz#f68b51bbc6554ff4837269d98e9e405044e6f1b9" - integrity sha512-fvBDv2lTthfw4WOQKkdTop2PlE9GtfrlNnpjB818MhcdEnPjfQw5YaTUcnNEGsvGomdCs1MVRMgYXXwPSN6OvQ== +"@react-native-community/cli-debugger-ui@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-14.1.1.tgz#aeeb9fb48d2b12f4578c92baf7d02cb0b34c9bce" + integrity sha512-MAXrGkDD9V230J6n2ayN3+hw2ol4+Q7VPpLz3bxha3wv3riQVawBEobNlEJFIYsvagLYU3pmfI4oyBesna6nag== dependencies: - "@react-native-community/cli-config" "12.3.6" - "@react-native-community/cli-platform-android" "12.3.6" - "@react-native-community/cli-platform-ios" "12.3.6" - "@react-native-community/cli-tools" "12.3.6" + serve-static "^1.13.1" + +"@react-native-community/cli-doctor@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-14.1.0.tgz#129b25a7792f7bb0ed1218d17665ce74bb995d08" + integrity sha512-xIf0oQDRKt7lufUenRwcLYdINGc0x1FSXHaHjd7lQDGT5FJnCEYlIkYEDDgAl5tnVJSvM/IL2c6O+mffkNEPzQ== + dependencies: + "@react-native-community/cli-config" "14.1.0" + "@react-native-community/cli-platform-android" "14.1.0" + "@react-native-community/cli-platform-apple" "14.1.0" + "@react-native-community/cli-platform-ios" "14.1.0" + "@react-native-community/cli-tools" "14.1.0" chalk "^4.1.2" command-exists "^1.2.8" deepmerge "^4.3.0" - envinfo "^7.10.0" + envinfo "^7.13.0" execa "^5.0.0" - hermes-profile-transformer "^0.0.6" node-stream-zip "^1.9.1" ora "^5.4.1" semver "^7.5.2" @@ -3108,102 +3431,205 @@ wcwidth "^1.0.1" yaml "^2.2.1" -"@react-native-community/cli-hermes@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-12.3.6.tgz#5ac2c9ee26c69e1ce6b5047ba0f399984a6dea16" - integrity sha512-sNGwfOCl8OAIjWCkwuLpP8NZbuO0dhDI/2W7NeOGDzIBsf4/c4MptTrULWtGIH9okVPLSPX0NnRyGQ+mSwWyuQ== +"@react-native-community/cli-doctor@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-14.1.1.tgz#ec097d07346be9deed871fa4dda100ef8bdeec06" + integrity sha512-EGmwfjDiqJipI5EoW4eARcIJqG5SrlyKShkiX0P0ISI1WpHO2j9+By8notb15px18FHZCyTeUqhmaRRITp+2Gw== dependencies: - "@react-native-community/cli-platform-android" "12.3.6" - "@react-native-community/cli-tools" "12.3.6" + "@react-native-community/cli-config" "14.1.1" + "@react-native-community/cli-platform-android" "14.1.1" + "@react-native-community/cli-platform-apple" "14.1.1" + "@react-native-community/cli-platform-ios" "14.1.1" + "@react-native-community/cli-tools" "14.1.1" chalk "^4.1.2" - hermes-profile-transformer "^0.0.6" + command-exists "^1.2.8" + deepmerge "^4.3.0" + envinfo "^7.13.0" + execa "^5.0.0" + node-stream-zip "^1.9.1" + ora "^5.4.1" + semver "^7.5.2" + strip-ansi "^5.2.0" + wcwidth "^1.0.1" + yaml "^2.2.1" -"@react-native-community/cli-platform-android@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.6.tgz#e1103692c659ff0b72ee6f00b7c72578db7376ec" - integrity sha512-DeDDAB8lHpuGIAPXeeD9Qu2+/wDTFPo99c8uSW49L0hkmZJixzvvvffbGQAYk32H0TmaI7rzvzH+qzu7z3891g== +"@react-native-community/cli-platform-android@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-14.1.0.tgz#3545347a810d209bba24941f62f802fdc09e252f" + integrity sha512-4JnXkAV+ca8XdUhZ7xjgDhXAMwTVjQs8JqiwP7FTYVrayShXy2cBXm/C3HNDoe+oQOF5tPT2SqsDAF2vYTnKiQ== dependencies: - "@react-native-community/cli-tools" "12.3.6" + "@react-native-community/cli-tools" "14.1.0" chalk "^4.1.2" execa "^5.0.0" - fast-xml-parser "^4.2.4" - glob "^7.1.3" + fast-glob "^3.3.2" + fast-xml-parser "^4.4.1" logkitty "^0.7.1" -"@react-native-community/cli-platform-ios@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.6.tgz#e7decb5ee764f5fdc7a6ad1ba5e15de8929d54a5" - integrity sha512-3eZ0jMCkKUO58wzPWlvAPRqezVKm9EPZyaPyHbRPWU8qw7JqkvnRlWIaYDGpjCJgVW4k2hKsEursLtYKb188tg== +"@react-native-community/cli-platform-android@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-14.1.1.tgz#81ce624513aacad56941e303bdd6e64bdcb1f2a3" + integrity sha512-uwCC3+kk+KSMpG5qB+bdlciCzLYdftW7l6Cq5o9y8Sw3CGhQVITmXSyQYzTCqiGqIUMVa9SyeThKl5vBiHfquQ== dependencies: - "@react-native-community/cli-tools" "12.3.6" + "@react-native-community/cli-tools" "14.1.1" chalk "^4.1.2" execa "^5.0.0" - fast-xml-parser "^4.0.12" - glob "^7.1.3" + fast-glob "^3.3.2" + fast-xml-parser "^4.4.1" + logkitty "^0.7.1" + +"@react-native-community/cli-platform-apple@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-14.1.0.tgz#d232cd0fc1ec0bccd165e40dd7d8a3c4bec5f571" + integrity sha512-DExd+pZ7hHxXt8I6BBmckeYUxxq7PQ+o4YSmGIeQx0xUpi+f82obBct2WNC3VWU72Jw6obwfoN6Fwe6F7Wxp5Q== + dependencies: + "@react-native-community/cli-tools" "14.1.0" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + fast-xml-parser "^4.4.1" ora "^5.4.1" -"@react-native-community/cli-plugin-metro@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.6.tgz#ae62de18e998478db60a3fe10dc746162c272dbd" - integrity sha512-3jxSBQt4fkS+KtHCPSyB5auIT+KKIrPCv9Dk14FbvOaEh9erUWEm/5PZWmtboW1z7CYeNbFMeXm9fM2xwtVOpg== - -"@react-native-community/cli-server-api@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-12.3.6.tgz#cd78122954a02d22c7821c365938635b51ddd1bd" - integrity sha512-80NIMzo8b2W+PL0Jd7NjiJW9mgaT8Y8wsIT/lh6mAvYH7mK0ecDJUYUTAAv79Tbo1iCGPAr3T295DlVtS8s4yQ== +"@react-native-community/cli-platform-apple@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-14.1.1.tgz#81d247b838ffef056a3199f07436ae1e28cc1813" + integrity sha512-qEc3Z7oCs0cD7QGaEfO0I6Pg8oqj1gCJTEPM65LlwzXmjzOcLADeC8jmV/ZJJbw4eNJ/CD3V4Aj/VlXW7vTWhw== dependencies: - "@react-native-community/cli-debugger-ui" "12.3.6" - "@react-native-community/cli-tools" "12.3.6" + "@react-native-community/cli-tools" "14.1.1" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + fast-xml-parser "^4.4.1" + ora "^5.4.1" + +"@react-native-community/cli-platform-ios@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-14.1.0.tgz#e3b7ae8a97b69da4c7c89d9767ea58fb90c9c05f" + integrity sha512-ah/ZTiJXUdCVHujyRJ4OmCL5nTq8OWcURcE3UXa1z0sIIiA8io06n+v5n299T9rtPKMwRtVJlQjtO/nbODABPQ== + dependencies: + "@react-native-community/cli-platform-apple" "14.1.0" + +"@react-native-community/cli-platform-ios@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-14.1.1.tgz#fadb3c1a88cb7f6bbb2d49786e1ebee7843188ec" + integrity sha512-g5+AMN++/qXE7eTYUIvXZRtOtLZ4yCJtEwAY2N0NLEZRVmREFqBzLLbd30Nr+l+18hdYNwLXeZM8B4dJ1DPRnQ== + dependencies: + "@react-native-community/cli-platform-apple" "14.1.1" + +"@react-native-community/cli-server-api@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-14.1.0.tgz#b658f96014f6d725ddb50da69833eacdbb8263c8" + integrity sha512-1k2LBQaYsy9RDWFIfKVne3frOye73O33MV6eYMoRPff7wqxHCrsX1CYJQkmwpgVigZHxYwalHj+Axtu3gpomCA== + dependencies: + "@react-native-community/cli-debugger-ui" "14.1.0" + "@react-native-community/cli-tools" "14.1.0" compression "^1.7.1" connect "^3.6.5" errorhandler "^1.5.1" nocache "^3.0.1" pretty-format "^26.6.2" serve-static "^1.13.1" - ws "^7.5.1" + ws "^6.2.3" -"@react-native-community/cli-tools@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-12.3.6.tgz#c39965982347635dfaf1daa7b3c0133b3bd45e64" - integrity sha512-FPEvZn19UTMMXUp/piwKZSh8cMEfO8G3KDtOwo53O347GTcwNrKjgZGtLSPELBX2gr+YlzEft3CoRv2Qmo83fQ== +"@react-native-community/cli-server-api@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-14.1.1.tgz#54c463d2c68f3eb694b220f5f8a0650d5b47cc10" + integrity sha512-jr2hmIqiyaMd4OnEkusldKh/QyNyLUc2HmOjcD9wI+LScxS5YaLNC6W2q7Z49HTOdGyBjqZ7BFQNN/gRPGISUA== + dependencies: + "@react-native-community/cli-debugger-ui" "14.1.1" + "@react-native-community/cli-tools" "14.1.1" + compression "^1.7.1" + connect "^3.6.5" + errorhandler "^1.5.1" + nocache "^3.0.1" + pretty-format "^26.6.2" + serve-static "^1.13.1" + ws "^6.2.3" + +"@react-native-community/cli-tools@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-14.1.0.tgz#fbbd40e9ccd93842992c8e45c10dfd8eeb56ff4a" + integrity sha512-r1KxSu2+OSuhWFoE//1UR7aSTXMLww/UYWQprEw4bSo/kvutGX//4r9ywgXSWp+39udpNN4jQpNTHuWhGZd/Bg== dependencies: appdirsjs "^1.2.4" chalk "^4.1.2" + execa "^5.0.0" find-up "^5.0.0" mime "^2.4.1" - node-fetch "^2.6.0" open "^6.2.0" ora "^5.4.1" semver "^7.5.2" shell-quote "^1.7.3" sudo-prompt "^9.0.0" -"@react-native-community/cli-types@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-12.3.6.tgz#239de348800fe1ffba3eb1fe0edbeb9306981e57" - integrity sha512-xPqTgcUtZowQ8WKOkI9TLGBwH2bGggOC4d2FFaIRST3gTcjrEeGRNeR5aXCzJFIgItIft8sd7p2oKEdy90+01Q== +"@react-native-community/cli-tools@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-14.1.1.tgz#553f6dde3e3d520f2fb4e6209f060da58d8d746a" + integrity sha512-6wh4kFs0cb/76UKoBtas1ydyIoRETZ3BmzuFUgQCDuAIJ9TT8zLYgCJfqpAddx8yPCXvlxQT3btrvqgaXlwCOg== + dependencies: + appdirsjs "^1.2.4" + chalk "^4.1.2" + execa "^5.0.0" + find-up "^5.0.0" + mime "^2.4.1" + open "^6.2.0" + ora "^5.4.1" + semver "^7.5.2" + shell-quote "^1.7.3" + sudo-prompt "^9.0.0" + +"@react-native-community/cli-types@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-14.1.0.tgz#0ea5dad716f30cd49d2edd5d9fdea8e552cb44e8" + integrity sha512-aJwZI9mGRx3HdP8U4CGhqjt3S4r8GmeOqv4kRagC1UHDk4QNMC+bZ8JgPA4W7FrGiPey+lJQHMDPAXOo51SOUw== dependencies: joi "^17.2.1" -"@react-native-community/cli@12.3.6": - version "12.3.6" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-12.3.6.tgz#7a323b78725b959bb8a31cca1145918263ff3c8d" - integrity sha512-647OSi6xBb8FbwFqX9zsJxOzu685AWtrOUWHfOkbKD+5LOpGORw+GQo0F9rWZnB68rLQyfKUZWJeaD00pGv5fw== +"@react-native-community/cli-types@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-14.1.1.tgz#16f5fbff6394d951bafa76ee51823dc53849af42" + integrity sha512-ej71FKmPE6FrlDBKDgGFEOzXwoYDnIUPs4fxBzi8TQSmNhuzL+7fUv+57CaV7DOChiamDGba4JpdBR5N+b/APA== dependencies: - "@react-native-community/cli-clean" "12.3.6" - "@react-native-community/cli-config" "12.3.6" - "@react-native-community/cli-debugger-ui" "12.3.6" - "@react-native-community/cli-doctor" "12.3.6" - "@react-native-community/cli-hermes" "12.3.6" - "@react-native-community/cli-plugin-metro" "12.3.6" - "@react-native-community/cli-server-api" "12.3.6" - "@react-native-community/cli-tools" "12.3.6" - "@react-native-community/cli-types" "12.3.6" + joi "^17.2.1" + +"@react-native-community/cli@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-14.1.0.tgz#bbcc14e9b7ee54589e645c7cd42da0cc79307f41" + integrity sha512-k7aTdKNZIec7WMSqMJn9bDVLWPPOaYmshXcnjWy6t5ItsJnREju9p2azMTR5tXY5uIeynose3cxettbhk2Tbnw== + dependencies: + "@react-native-community/cli-clean" "14.1.0" + "@react-native-community/cli-config" "14.1.0" + "@react-native-community/cli-debugger-ui" "14.1.0" + "@react-native-community/cli-doctor" "14.1.0" + "@react-native-community/cli-server-api" "14.1.0" + "@react-native-community/cli-tools" "14.1.0" + "@react-native-community/cli-types" "14.1.0" chalk "^4.1.2" commander "^9.4.1" deepmerge "^4.3.0" execa "^5.0.0" - find-up "^4.1.0" + find-up "^5.0.0" + fs-extra "^8.1.0" + graceful-fs "^4.1.3" + prompts "^2.4.2" + semver "^7.5.2" + +"@react-native-community/cli@14.1.1": + version "14.1.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-14.1.1.tgz#1453890d4fa89064e6f9284a71bcbbb0769b68d8" + integrity sha512-nUQfdglPbCMQ3OQaS4wCKrIaRTiQ6ezNZGRQMSs9GFWzk27UnvgdPWd15FEUenUnu9vQaZ4RTQyBIxfvmcsU0g== + dependencies: + "@react-native-community/cli-clean" "14.1.1" + "@react-native-community/cli-config" "14.1.1" + "@react-native-community/cli-debugger-ui" "14.1.1" + "@react-native-community/cli-doctor" "14.1.1" + "@react-native-community/cli-server-api" "14.1.1" + "@react-native-community/cli-tools" "14.1.1" + "@react-native-community/cli-types" "14.1.1" + chalk "^4.1.2" + commander "^9.4.1" + deepmerge "^4.3.0" + execa "^5.0.0" + find-up "^5.0.0" fs-extra "^8.1.0" graceful-fs "^4.1.3" prompts "^2.4.2" @@ -3236,48 +3662,50 @@ resolved "https://registry.yarnpkg.com/@react-native-community/slider/-/slider-3.0.0.tgz#ffbf78689fc0572fb5c1e2ccb61b2ef074d3dcd2" integrity sha512-deNc3JHBHz24YN+0DTAocXfrYFIFc1DvsIriMJSsJlR/MvsLzoq2+qwaEN+0/LJ37pstv85wZWY0pNugk4e41g== -"@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/assets-registry@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.75.3.tgz#a4371bfc6d553d47495de5c901d3c37003b67a25" + integrity sha512-i7MaRbYR06WdpJWv3a0PQ2ScFBUeevwcJ0tVopnFwTg0tBWp3NFEMDIcU8lyXVy9Y59WmrP1V2ROaRDaPiESgg== -"@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== +"@react-native/babel-plugin-codegen@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.3.tgz#8771593119200a4824eb16a5f9e492e1fa097f7a" + integrity sha512-8JmXEKq+Efb9AffsV48l8gmKe/ZQ2PbBygZjHdIf8DNZZhO/z5mt27J4B43MWNdp5Ww1l59T0mEaf8l/uywQUg== dependencies: - "@react-native/codegen" "0.73.3" + "@react-native/codegen" "0.75.3" -"@react-native/babel-preset@0.73.21": - version "0.73.21" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.73.21.tgz#174c16493fa4e311b2f5f0c58d4f3c6a5a68bbea" - integrity sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA== +"@react-native/babel-preset@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.75.3.tgz#d52012e83ec1110901ff9a3b97a8e48be002214c" + integrity sha512-VZQkQEj36DKEGApXFYdVcFtqdglbnoVr7aOZpjffURSgPcIA9vWTm1b+OL4ayOaRZXTZKiDBNQCXvBX5E5AgQg== 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-generator-functions" "^7.24.3" "@babel/plugin-transform-async-to-generator" "^7.20.0" "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-class-properties" "^7.24.1" "@babel/plugin-transform-classes" "^7.0.0" "@babel/plugin-transform-computed-properties" "^7.0.0" "@babel/plugin-transform-destructuring" "^7.20.0" "@babel/plugin-transform-flow-strip-types" "^7.20.0" + "@babel/plugin-transform-for-of" "^7.0.0" "@babel/plugin-transform-function-name" "^7.0.0" "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.1" "@babel/plugin-transform-modules-commonjs" "^7.0.0" "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.1" + "@babel/plugin-transform-numeric-separator" "^7.24.1" + "@babel/plugin-transform-object-rest-spread" "^7.24.5" + "@babel/plugin-transform-optional-catch-binding" "^7.24.1" + "@babel/plugin-transform-optional-chaining" "^7.24.5" "@babel/plugin-transform-parameters" "^7.0.0" "@babel/plugin-transform-private-methods" "^7.22.5" "@babel/plugin-transform-private-property-in-object" "^7.22.11" @@ -3285,6 +3713,7 @@ "@babel/plugin-transform-react-jsx" "^7.0.0" "@babel/plugin-transform-react-jsx-self" "^7.0.0" "@babel/plugin-transform-react-jsx-source" "^7.0.0" + "@babel/plugin-transform-regenerator" "^7.20.0" "@babel/plugin-transform-runtime" "^7.0.0" "@babel/plugin-transform-shorthand-properties" "^7.0.0" "@babel/plugin-transform-spread" "^7.0.0" @@ -3292,7 +3721,7 @@ "@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" + "@react-native/babel-plugin-codegen" "0.75.3" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" @@ -3309,28 +3738,29 @@ mkdirp "^0.5.1" nullthrows "^1.1.1" -"@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== +"@react-native/codegen@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.75.3.tgz#f4a9d2fcbca0e7d34dfc357a0831995f20a56fd4" + integrity sha512-I0bz5jwOkiR7vnhYLGoV22RGmesErUg03tjsCiQgmsMpbyCYumudEtLNN5+DplHGK56bu8KyzBqKkWXGSKSCZQ== dependencies: "@babel/parser" "^7.20.0" - flow-parser "^0.206.0" glob "^7.1.1" + hermes-parser "0.22.0" invariant "^2.2.4" jscodeshift "^0.14.0" mkdirp "^0.5.1" nullthrows "^1.1.1" + yargs "^17.6.2" -"@react-native/community-cli-plugin@0.73.17": - version "0.73.17" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.17.tgz#37b381a8b503a3296eaa6727e0c52ea8835add28" - integrity sha512-F3PXZkcHg+1ARIr6FRQCQiB7ZAA+MQXGmq051metRscoLvgYJwj7dgC8pvgy0kexzUkHu5BNKrZeySzUft3xuQ== +"@react-native/community-cli-plugin@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.3.tgz#b8982fa90398647c45eee441753ac014f57ae3cd" + integrity sha512-njsYm+jBWzfLcJcxavAY5QFzYTrmPtjbxq/64GSqwcQYzy9qAkI7LNTK/Wprq1I/4HOuHJO7Km+EddCXB+ByRQ== dependencies: - "@react-native-community/cli-server-api" "12.3.6" - "@react-native-community/cli-tools" "12.3.6" - "@react-native/dev-middleware" "0.73.8" - "@react-native/metro-babel-transformer" "0.73.15" + "@react-native-community/cli-server-api" "14.1.0" + "@react-native-community/cli-tools" "14.1.0" + "@react-native/dev-middleware" "0.75.3" + "@react-native/metro-babel-transformer" "0.75.3" chalk "^4.0.0" execa "^5.1.1" metro "^0.80.3" @@ -3339,67 +3769,68 @@ node-fetch "^2.2.0" readline "^1.3.0" -"@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.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.75.3.tgz#095b196fafef5e84d2d3c5adbcbfc5f55aa1078f" + integrity sha512-99bLQsUwsxUMNR7Wa9eV2uyR38yfd6mOEqfN+JIm8/L9sKA926oh+CZkjDy1M8RmCB6spB5N9fVFVkrVdf2yFA== -"@react-native/dev-middleware@0.73.8": - 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== +"@react-native/dev-middleware@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.75.3.tgz#534587f86b922b27c5e87a7c6dfa869ce2e155b2" + integrity sha512-h2/6+UGmeMWjnT43axy27jNqoDRsE1C1qpjRC3sYpD4g0bI0jSTkY1kAgj8uqGGXLnHXiHOtjLDGdbAgZrsPaA== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.73.3" + "@react-native/debugger-frontend" "0.75.3" chrome-launcher "^0.15.2" - chromium-edge-launcher "^1.0.0" + chromium-edge-launcher "^0.2.0" connect "^3.6.5" debug "^2.2.0" node-fetch "^2.2.0" + nullthrows "^1.1.1" open "^7.0.3" + selfsigned "^2.4.1" serve-static "^1.13.1" - temp-dir "^2.0.0" ws "^6.2.2" -"@react-native/gradle-plugin@0.73.4": - version "0.73.4" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.73.4.tgz#aa55784a8c2b471aa89934db38c090d331baf23b" - integrity sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg== +"@react-native/gradle-plugin@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.75.3.tgz#ae51e47995bb5cd4782f47ccb56d6d8814d7d4a8" + integrity sha512-mSfa/Mq/AsALuG/kvXz5ECrc6HdY5waMHal2sSfa8KA0Gt3JqYQVXF9Pdwd4yR5ClPZDI2HRa1tdE8GVlhMvPA== -"@react-native/js-polyfills@0.73.1": - version "0.73.1" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz#730b0a7aaab947ae6f8e5aa9d995e788977191ed" - integrity sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g== +"@react-native/js-polyfills@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.75.3.tgz#a49714021ddf99aeec214db33289c1ee336708e1" + integrity sha512-+JVFJ351GSJT3V7LuXscMqfnpR/UxzsAjbBjfAHBR3kqTbVqrAmBccqPCA3NLzgb/RY8khLJklwMUVlWrn8iFg== -"@react-native/metro-babel-transformer@0.73.15": - version "0.73.15" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.15.tgz#c516584dde62d65a46668074084359c03e6a50f1" - integrity sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw== +"@react-native/metro-babel-transformer@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.3.tgz#7550e1cf68403a81f07c24c4b081c887b559ce1f" + integrity sha512-gDlEl6C2mwQPLxFOR+yla5MpJpDPNOFD6J5Hd9JM9+lOdUq6MNujh1Xn4ZMvglW7rfViq3nMjg4xPQeGUhDG+w== dependencies: "@babel/core" "^7.20.0" - "@react-native/babel-preset" "0.73.21" - hermes-parser "0.15.0" + "@react-native/babel-preset" "0.75.3" + hermes-parser "0.22.0" nullthrows "^1.1.1" -"@react-native/metro-config@0.73.5": - version "0.73.5" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.73.5.tgz#791242ca93057d7299ce18379ea11d3bdb368ea9" - integrity sha512-3bNWoHzOzP/+qoLJtRhOVXrnxKmSY3i4y5PXyMQlIvvOI/GQbXulPpEZxK/yUrf1MmeXHLLFufFbQWlfDEDoxA== +"@react-native/metro-config@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.75.3.tgz#279c3f3cc4a4c21ea5651ffbe52fa809e301889e" + integrity sha512-BKvJGCzKMtGPfKU4v8+16xtv6iXPbnSeeD6ONvzW0Hm9amPxAP9GGweiUTwnOXUqt9XcfRhytZosiOmGa39Wqg== dependencies: - "@react-native/js-polyfills" "0.73.1" - "@react-native/metro-babel-transformer" "0.73.15" + "@react-native/js-polyfills" "0.75.3" + "@react-native/metro-babel-transformer" "0.75.3" metro-config "^0.80.3" metro-runtime "^0.80.3" -"@react-native/normalize-colors@0.73.2", "@react-native/normalize-colors@^0.73.0": - version "0.73.2" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz#cc8e48fbae2bbfff53e12f209369e8d2e4cf34ec" - integrity sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w== +"@react-native/normalize-colors@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.75.3.tgz#3407ac591f17e5462e297784b04bc25e4d62e788" + integrity sha512-3mhF8AJFfIN0E5bEs/DQ4U2LzMJYm+FPSwY5bJ1DZhrxW1PFAh24bAPrSd8PwS0iarQ7biLdr1lWf/8LFv8pDA== -"@react-native/virtualized-lists@0.73.4": - version "0.73.4" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.73.4.tgz#640e594775806f63685435b5d9c3d05c378ccd8c" - integrity sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog== +"@react-native/virtualized-lists@0.75.3": + version "0.75.3" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.75.3.tgz#c8fef0cba53648b769a17b106ef5df0477eb1147" + integrity sha512-cTLm7k7Y//SvV8UK8esrDHEw5OrwwSJ4Fqc3x52Imi6ROuhshfGIPFwhtn4pmAg9nWHzHwwqiJ+9hCSVnXXX+g== dependencies: invariant "^2.2.4" nullthrows "^1.1.1" @@ -3715,6 +4146,13 @@ expect "^28.0.0" pretty-format "^28.0.0" +"@types/node-forge@^1.3.0": + version "1.3.11" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da" + integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== + dependencies: + "@types/node" "*" + "@types/node@*": version "18.11.9" resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" @@ -3725,10 +4163,10 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== -"@types/react-test-renderer@^18.0.0": - version "18.0.1" - resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.0.1.tgz#d3f308912fcc4491e4fbc134b906bb65bdee73f6" - integrity sha512-LjEF+jTUCjzd+Qq4eWqsmZvEWPA/l4L0my+YWN5US8Fo3wZOMiyrpBshHDFbkO8usjdO1B430mEWNU/i1MF7Qg== +"@types/react-test-renderer@18.3.0": + version "18.3.0" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz#839502eae70058a4ae161f63385a8e7929cef4c0" + integrity sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw== dependencies: "@types/react" "*" @@ -4296,6 +4734,11 @@ argparse@^1.0.7: dependencies: sprintf-js "~1.0.2" +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + asap@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" @@ -4673,6 +5116,16 @@ browserslist@^4.21.3, browserslist@^4.21.5: node-releases "^2.0.8" update-browserslist-db "^1.0.10" +browserslist@^4.23.1: + version "4.23.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800" + integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== + dependencies: + caniuse-lite "^1.0.30001646" + electron-to-chromium "^1.5.4" + node-releases "^2.0.18" + update-browserslist-db "^1.1.0" + bser@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" @@ -4799,6 +5252,11 @@ caniuse-lite@^1.0.30001517: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001532.tgz#c6a4d5d2da6d2b967f0ee5e12e7f680db6ad2fca" integrity sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw== +caniuse-lite@^1.0.30001646: + version "1.0.30001660" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001660.tgz#31218de3463fabb44d0b7607b652e56edf2e2355" + integrity sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg== + chalk@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" @@ -4905,10 +5363,10 @@ chrome-launcher@^0.15.2: is-wsl "^2.2.0" lighthouse-logger "^1.0.0" -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== +chromium-edge-launcher@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/chromium-edge-launcher/-/chromium-edge-launcher-0.2.0.tgz#0c378f28c99aefc360705fa155de0113997f62fc" + integrity sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg== dependencies: "@types/node" "*" escape-string-regexp "^4.0.0" @@ -5230,7 +5688,7 @@ core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= -cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: +cosmiconfig@^5.0.5: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== @@ -5240,6 +5698,16 @@ cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: js-yaml "^3.13.1" parse-json "^4.0.0" +cosmiconfig@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d" + integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== + dependencies: + env-paths "^2.2.1" + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + cp-file@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-6.2.0.tgz#40d5ea4a1def2a9acdd07ba5c0b0246ef73dc10d" @@ -5414,6 +5882,13 @@ debug@^4.1.0, debug@^4.1.1: dependencies: ms "^2.1.1" +debug@^4.3.1: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -5500,15 +5975,6 @@ depd@2.0.0: resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== -deprecated-react-native-prop-types@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-5.0.0.tgz#02a12f090da7bd9e8c3ac53c31cf786a1315d302" - integrity sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ== - dependencies: - "@react-native/normalize-colors" "^0.73.0" - invariant "^2.2.4" - prop-types "^15.8.1" - des.js@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" @@ -5648,6 +6114,11 @@ electron-to-chromium@^1.4.477: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.513.tgz#41a50bf749aa7d8058ffbf7a131fc3327a7b1675" integrity sha512-cOB0xcInjm+E5qIssHeXJ29BaUyWpMyFKT5RB3bsLENDheCja0wMkHJyiPl0NBE/VzDI7JDuNEQWhe6RitEUcw== +electron-to-chromium@^1.5.4: + version "1.5.23" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.23.tgz#6dabd8f7fec5cbf618b732ff4c42950dcc7a3be5" + integrity sha512-mBhODedOXg4v5QWwl21DjM5amzjmI1zw9EPrPK/5Wx7C8jt33bpZNrC7OhHUG3pxRtbLpr3W2dXT+Ph1SsfRZA== + elliptic@6.5.4: version "6.5.4" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" @@ -5711,10 +6182,15 @@ entities@^4.2.0: resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== -envinfo@^7.10.0: - version "7.11.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" - integrity sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg== +env-paths@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +envinfo@^7.13.0: + version "7.14.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.14.0.tgz#26dac5db54418f2a4c1159153a0b2ae980838aae" + integrity sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg== error-ex@^1.3.1: version "1.3.2" @@ -5775,6 +6251,11 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +escalade@^3.1.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + escape-goat@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" @@ -5990,6 +6471,17 @@ fast-base64-decode@^1.0.0: resolved "https://registry.yarnpkg.com/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz#b434a0dd7d92b12b43f26819300d2dafb83ee418" integrity sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q== +fast-glob@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -6010,19 +6502,19 @@ fast-text-encoding@^1.0.6: resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz#0aa25f7f638222e3396d72bf936afcf1d42d6867" integrity sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w== -fast-xml-parser@^4.0.12: - version "4.2.7" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz#871f2ca299dc4334b29f8da3658c164e68395167" - integrity sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig== +fast-xml-parser@^4.4.1: + version "4.5.0" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz#2882b7d01a6825dfdf909638f2de0256351def37" + integrity sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg== dependencies: strnum "^1.0.5" -fast-xml-parser@^4.2.4: - version "4.3.2" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.3.2.tgz#761e641260706d6e13251c4ef8e3f5694d4b0d79" - integrity sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg== +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: - strnum "^1.0.5" + reusify "^1.0.4" fault@^1.0.0: version "1.0.4" @@ -6265,7 +6757,7 @@ get-stream@^8.0.1: resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== -glob-parent@~5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -6454,22 +6946,15 @@ hastscript@^6.0.0: property-information "^5.0.0" space-separated-tokens "^1.0.0" -hermes-estree@0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.15.0.tgz#e32f6210ab18c7b705bdcb375f7700f2db15d6ba" - integrity sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ== - hermes-estree@0.18.2: version "0.18.2" resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.18.2.tgz#fd450fa1659cf074ceaa2ddeeb21674f3b2342f3" integrity sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ== -hermes-parser@0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.15.0.tgz#f611a297c2a2dbbfbce8af8543242254f604c382" - integrity sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q== - dependencies: - hermes-estree "0.15.0" +hermes-estree@0.22.0: + version "0.22.0" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.22.0.tgz#38559502b119f728901d2cfe2ef422f277802a1d" + integrity sha512-FLBt5X9OfA8BERUdc6aZS36Xz3rRuB0Y/mfocSADWEJfomc1xfene33GdyAmtTkKTBXTN/EgAy+rjTKkkZJHlw== hermes-parser@0.18.2: version "0.18.2" @@ -6478,12 +6963,12 @@ hermes-parser@0.18.2: dependencies: hermes-estree "0.18.2" -hermes-profile-transformer@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b" - integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== +hermes-parser@0.22.0: + version "0.22.0" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.22.0.tgz#fc8e0e6c7bfa8db85b04c9f9544a102c4fcb4040" + integrity sha512-gn5RfZiEXCsIWsFGsKiykekktUoh0PdFWYocXsUdZIyWSckT6UIyPcyyUIPSR3kpnELWeK3n3ztAse7Mat6PSA== dependencies: - source-map "^0.7.3" + hermes-estree "0.22.0" highlight.js@^10.4.1, highlight.js@~10.7.0: version "10.7.3" @@ -6605,6 +7090,14 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" +import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + import-lazy@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" @@ -7578,6 +8071,13 @@ js-yaml@^3.13.1: argparse "^1.0.7" esprima "^4.0.0" +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + jsc-android@^250231.0.0: version "250231.0.0" resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262" @@ -7966,6 +8466,11 @@ merge-stream@^2.0.0: resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + metro-babel-transformer@0.80.4: version "0.80.4" resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.80.4.tgz#67dd300dd794d35ce24e22c17f317750669dd2b2" @@ -8310,7 +8815,7 @@ ms@2.1.2, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3: +ms@2.1.3, ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -8377,7 +8882,7 @@ node-fetch-native@^1.6.1, node-fetch-native@^1.6.2, node-fetch-native@^1.6.3: resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e" integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ== -node-fetch@^2.2.0, node-fetch@^2.6.0: +node-fetch@^2.2.0: version "2.6.9" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== @@ -8398,7 +8903,7 @@ node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" -node-forge@^1.3.1: +node-forge@^1, node-forge@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== @@ -8476,6 +8981,11 @@ node-releases@^2.0.13: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + node-releases@^2.0.8: version "2.0.10" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" @@ -8815,6 +9325,13 @@ pako@~1.0.5: resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + parse-asn1@^5.0.0, parse-asn1@^5.1.5: version "5.1.6" resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" @@ -8946,6 +9463,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== + picomatch@^2.0.4, picomatch@^2.0.5: version "2.2.2" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" @@ -9173,15 +9695,6 @@ prop-types@15.x.x, prop-types@^15.7.2: object-assign "^4.1.1" react-is "^16.8.1" -prop-types@^15.8.1: - version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - property-information@^5.0.0: version "5.6.0" resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" @@ -9271,6 +9784,11 @@ querystring@0.2.0: resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + queue@6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" @@ -9318,23 +9836,23 @@ rc@^1.2.8: minimist "^1.2.0" strip-json-comments "~2.0.1" -react-devtools-core@^4.27.7: - version "4.28.5" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.5.tgz#c8442b91f068cdf0c899c543907f7f27d79c2508" - integrity sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA== +react-devtools-core@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.1.tgz#d57f5b8f74f16e622bd6a7bc270161e4ba162666" + integrity sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw== dependencies: shell-quote "^1.6.1" ws "^7" -react-dom@18.0.0: - version "18.0.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023" - integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw== +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.21.0" + scheduler "^0.23.2" -react-is@^16.12.0, react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.1: +react-is@^16.12.0, react-is@^16.7.0, react-is@^16.8.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -9376,10 +9894,10 @@ react-native-blob-util@^0.13.18: version "14.0.0-beta15" resolved "git+https://github.com/status-im/react-native-camera-kit.git#90821bc45c950c98119acc896651997a5357dd4f" -react-native-config@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/react-native-config/-/react-native-config-1.5.0.tgz#ff5a78fbbc2c2a0525788e5f3c86101110651ba4" - integrity sha512-slecooA/0tCwhb+RuWEbwLqtKirGh9vWPRpgDfH7uPAraCciqHNH2XjS9ylW+Spn4FUrHg5KWTqUGs9BdBADHg== +react-native-config@1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/react-native-config/-/react-native-config-1.5.3.tgz#1286c0c117adb367a948b31005430146e88c9c2e" + integrity sha512-3D05Abgk5DfDw9w258EzXvX5AkU7eqj3u9H0H0L4gUga4nYg/zuupcrpGbpF4QeXBcJ84jjs6g8JaEP6VBT7Pg== react-native-crypto@^2.0.1: version "2.2.0" @@ -9478,10 +9996,10 @@ react-native-lottie-splash-screen@^1.0.1: lottie-ios "3.2.3" lottie-react-native "^5.1.3" -react-native-navigation@7.39.0: - version "7.39.0" - resolved "https://registry.yarnpkg.com/react-native-navigation/-/react-native-navigation-7.39.0.tgz#41655d5a822d53362dc1028e5d185d167f52f0bb" - integrity sha512-7xc4aGp3v/Eeh8MgIjApoZEE0GuefiMRQh/wpa43t1l1v5hqxzYV9J6dMd5XLzSbIYnJ1ZLd0gCHR5WQdE4O2Q== +react-native-navigation@7.40.1: + version "7.40.1" + resolved "https://registry.yarnpkg.com/react-native-navigation/-/react-native-navigation-7.40.1.tgz#774a3cf5e6a98c9847519f3f427c487dd2ea5c3b" + integrity sha512-GQ6Azdhf6EtkUVdYv/3hbid3tDiEQnJf47TL6Joc0R92DUEA3c1tpXG0z9Y/D7lzYFOaIBPg3efnMHrpk74GeA== dependencies: hoist-non-react-statics "3.x.x" lodash "4.17.x" @@ -9507,12 +10025,19 @@ react-native-randombytes@^3.5.1: buffer "^4.9.1" sjcl "^1.0.3" -react-native-reanimated@3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.6.1.tgz#5add41efafac6d0befd9786e752e7f26dbe903b7" - integrity sha512-F4vG9Yf9PKmE3GaWtVGUpzj3SM6YY2cx1yRHCwiMd1uY7W0gU017LfcVUorboJnj0y5QZqEriEK1Usq2Y8YZqg== +react-native-reanimated@3.15.2: + version "3.15.2" + resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.15.2.tgz#d0fe19006255f7ac350ff27de0b56b8fa11ef270" + integrity sha512-2kg80jhPCYAxoT+xx/+oTvOkc2YbzD0mfodQ8y7OtR1aZUECXd3UnHb6uN2J19TFF4si1TKS5Qi17R4qOENBHA== dependencies: - "@babel/plugin-transform-object-assign" "^7.16.7" + "@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" @@ -9584,30 +10109,31 @@ react-native-webview@13.6.3: escape-string-regexp "2.0.0" invariant "2.2.4" -react-native@0.73.5: - version "0.73.5" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.73.5.tgz#724fd1ae8ec8fee1dcf619c82bdd1695d3cff463" - integrity sha512-iHgDArmF4CrhL0qTj+Rn+CBN5pZWUL9lUGl8ub+V9Hwu/vnzQQh8rTMVSwVd2sV6N76KjpE5a4TfIAHkpIHhKg== +react-native@0.75.3: + version "0.75.3" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.75.3.tgz#31a6555a22228b75c06babe5b5edddb3ed1a457a" + integrity sha512-+Ne6u5H+tPo36sme19SCd1u2UID2uo0J/XzAJarxmrDj4Nsdi44eyUDKtQHmhgxjRGsuVJqAYrMK0abLSq8AHw== dependencies: "@jest/create-cache-key-function" "^29.6.3" - "@react-native-community/cli" "12.3.6" - "@react-native-community/cli-platform-android" "12.3.6" - "@react-native-community/cli-platform-ios" "12.3.6" - "@react-native/assets-registry" "0.73.1" - "@react-native/codegen" "0.73.3" - "@react-native/community-cli-plugin" "0.73.17" - "@react-native/gradle-plugin" "0.73.4" - "@react-native/js-polyfills" "0.73.1" - "@react-native/normalize-colors" "0.73.2" - "@react-native/virtualized-lists" "0.73.4" + "@react-native-community/cli" "14.1.0" + "@react-native-community/cli-platform-android" "14.1.0" + "@react-native-community/cli-platform-ios" "14.1.0" + "@react-native/assets-registry" "0.75.3" + "@react-native/codegen" "0.75.3" + "@react-native/community-cli-plugin" "0.75.3" + "@react-native/gradle-plugin" "0.75.3" + "@react-native/js-polyfills" "0.75.3" + "@react-native/normalize-colors" "0.75.3" + "@react-native/virtualized-lists" "0.75.3" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" base64-js "^1.5.1" chalk "^4.0.0" - deprecated-react-native-prop-types "^5.0.0" + commander "^9.4.1" event-target-shim "^5.0.1" flow-enums-runtime "^0.0.6" + glob "^7.1.1" invariant "^2.2.4" jest-environment-node "^29.6.3" jsc-android "^250231.0.0" @@ -9618,11 +10144,11 @@ react-native@0.73.5: nullthrows "^1.1.1" pretty-format "^26.5.2" promise "^8.3.0" - react-devtools-core "^4.27.7" + react-devtools-core "^5.3.1" react-refresh "^0.14.0" - react-shallow-renderer "^16.15.0" regenerator-runtime "^0.13.2" scheduler "0.24.0-canary-efb381bbf-20230505" + semver "^7.1.3" stacktrace-parser "^0.1.10" whatwg-fetch "^3.0.0" ws "^6.2.2" @@ -9661,10 +10187,10 @@ react-test-renderer@18.1.0: react-shallow-renderer "^16.15.0" scheduler "^0.22.0" -react@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== +react@18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== dependencies: loose-envify "^1.1.0" @@ -9965,6 +10491,11 @@ restore-cursor@^3.1.0: onetime "^5.1.0" signal-exit "^3.0.2" +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + rimraf@^2.6.2, rimraf@^2.6.3: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" @@ -9994,6 +10525,13 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + rxjs@^7.0.0: version "7.8.0" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4" @@ -10028,13 +10566,6 @@ scheduler@0.24.0-canary-efb381bbf-20230505: dependencies: loose-envify "^1.1.0" -scheduler@^0.21.0: - version "0.21.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820" - integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ== - dependencies: - loose-envify "^1.1.0" - scheduler@^0.22.0: version "0.22.0" resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.22.0.tgz#83a5d63594edf074add9a7198b1bae76c3db01b8" @@ -10042,11 +10573,26 @@ scheduler@^0.22.0: dependencies: loose-envify "^1.1.0" +scheduler@^0.23.2: + version "0.23.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" + integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== + dependencies: + loose-envify "^1.1.0" + scrypt-js@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== +selfsigned@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== + dependencies: + "@types/node-forge" "^1.3.0" + node-forge "^1" + semver-diff@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" @@ -10069,6 +10615,11 @@ semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== +semver@^7.1.3: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + semver@^7.3.4, semver@^7.3.5: version "7.3.7" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" @@ -10265,11 +10816,6 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.3: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - space-separated-tokens@^1.0.0: version "1.1.5" resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" @@ -10590,11 +11136,6 @@ tar@^6.1.11: mkdirp "^1.0.3" yallist "^4.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== - temp@^0.8.4: version "0.8.4" resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" @@ -10925,6 +11466,14 @@ update-browserslist-db@^1.0.11: escalade "^3.1.1" picocolors "^1.0.0" +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + update-notifier@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" @@ -11214,6 +11763,13 @@ ws@^6.2.2: dependencies: async-limiter "~1.0.0" +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== + dependencies: + async-limiter "~1.0.0" + ws@^7, ws@^7.4.6: version "7.5.9" resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"