From 3c4cc59542762786ce4e70131a578ee7508f57e3 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Mon, 2 Oct 2023 04:09:10 -0400 Subject: [PATCH 1/8] Move hermes-engine.podspec and hermes-utils.rb from hermes-engine to hermes folders when building (#39575) --- scripts/testing-utils.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/scripts/testing-utils.js b/scripts/testing-utils.js index be4bc78b9c7f61..b48d1a85d25d29 100644 --- a/scripts/testing-utils.js +++ b/scripts/testing-utils.js @@ -214,7 +214,19 @@ function buildArtifactsLocally( expandHermesSourceTarball(); } - // need to move the scripts inside the local hermes cloned folder + // need to move the podspec file from hermes-engine to hermes folder + // cp sdks/hermes-engine/hermes-engine.podspec /hermes-engine.podspec + cp( + `${reactNativePackagePath}/sdks/hermes-engine/hermes-engine.podspec`, + `${reactNativePackagePath}/sdks/hermes/hermes-engine.podspec`, + ); + // need to move the hermes-utils file from hermes-engine to hermes folder + // cp sdks/hermes-engine/hermes-utils.rb /hermes-utils.rb + cp( + `${reactNativePackagePath}/sdks/hermes-engine/hermes-utils.rb`, + `${reactNativePackagePath}/sdks/hermes/hermes-utils.rb`, + ); + // need to move the shell scripts file from hermes-engine to hermes folder // cp sdks/hermes-engine/utils/*.sh /utils/. cp( `${reactNativePackagePath}/sdks/hermes-engine/utils/*.sh`, From 355025dae436ac9ec7635069042d2a9a4e24f680 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Fri, 29 Sep 2023 10:22:36 -0700 Subject: [PATCH 2/8] Update Xcode 15 patches to be more robust (#39710) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39710 Last week Apple released Xcode 15, which required us to ship a workaround for the new linker. Unfortunately, the previous fix was not good enough and there were some edge cases that were not covered. For example, in some occasions the flags are read as an array and the `-Wl` and the `-ld_classic` flags were separated and not properly removed when moving from Xcode 15 to Xcpde 14.3.1. This change fixes those edge cases, with a more robust solution where: - We convert the flags to a string. - We trim the string and the values properly. - We add the flags when running `pod install` with Xcode 15 as the default iOS toolchain. - We remove the flags when running `pod install` with Xcode <15 as the default iOS toolchain. ## Changelog: [Internal] - Make the Xcode 15 workaround more robust. Reviewed By: dmytrorykun Differential Revision: D49748844 fbshipit-source-id: 34976d148f123c5aacba6487a500874bb938fe99 # Conflicts: # packages/react-native/scripts/cocoapods/__tests__/utils-test.rb # packages/react-native/scripts/cocoapods/utils.rb --- .../scripts/cocoapods/__tests__/utils-test.rb | 4 ++-- .../react-native/scripts/cocoapods/utils.rb | 24 ++++++++++++------- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/packages/react-native/scripts/cocoapods/__tests__/utils-test.rb b/packages/react-native/scripts/cocoapods/__tests__/utils-test.rb index 845e60836e3b95..47d6c632dbabb9 100644 --- a/packages/react-native/scripts/cocoapods/__tests__/utils-test.rb +++ b/packages/react-native/scripts/cocoapods/__tests__/utils-test.rb @@ -526,7 +526,7 @@ def test_applyXcode15Patch_whenXcodebuild15_correctlyAppliesNecessaryPatch # Assert user_project_mock.build_configurations.each do |config| assert_equal("$(inherited) _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION", config.build_settings["GCC_PREPROCESSOR_DEFINITIONS"]) - assert_equal("$(inherited) -Wl -ld_classic ", config.build_settings["OTHER_LDFLAGS"]) + assert_equal("$(inherited) -Wl -ld_classic", config.build_settings["OTHER_LDFLAGS"]) end # User project and Pods project @@ -576,7 +576,7 @@ def test_applyXcode15Patch_whenXcodebuild14ButProjectHasSettings_correctlyRemove # Assert user_project_mock.build_configurations.each do |config| assert_equal("$(inherited) _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION", config.build_settings["GCC_PREPROCESSOR_DEFINITIONS"]) - assert_equal("$(inherited) ", config.build_settings["OTHER_LDFLAGS"]) + assert_equal("$(inherited)", config.build_settings["OTHER_LDFLAGS"]) end # User project and Pods project diff --git a/packages/react-native/scripts/cocoapods/utils.rb b/packages/react-native/scripts/cocoapods/utils.rb index d34b17e01e017b..f80085f6952e9c 100644 --- a/packages/react-native/scripts/cocoapods/utils.rb +++ b/packages/react-native/scripts/cocoapods/utils.rb @@ -298,20 +298,26 @@ def self.safe_init(config, setting_name) def self.add_value_to_setting_if_missing(config, setting_name, value) old_config = config.build_settings[setting_name] - if !old_config.include?(value) - config.build_settings[setting_name] << value + if old_config.is_a?(Array) + old_config = old_config.join(" ") + end + + trimmed_value = value.strip() + if !old_config.include?(trimmed_value) + config.build_settings[setting_name] = "#{old_config.strip()} #{trimmed_value}".strip() end end def self.remove_value_to_setting_if_present(config, setting_name, value) old_config = config.build_settings[setting_name] - if old_config.include?(value) - # Old config can be either an Array or a String - if old_config.is_a?(Array) - old_config = old_config.join(" ") - end - new_config = old_config.gsub(value, "") - config.build_settings[setting_name] = new_config + if old_config.is_a?(Array) + old_config = old_config.join(" ") + end + + trimmed_value = value.strip() + if old_config.include?(trimmed_value) + new_config = old_config.gsub(trimmed_value, "") + config.build_settings[setting_name] = new_config.strip() end end From 785f91b67a5d97e4e54d341279c878483a3d9a11 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 5 Oct 2023 04:42:30 -0700 Subject: [PATCH 3/8] Fix Gemfile, setting Active support to < 7.1.0 (#39828) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39828 Active Suppert released a new Gem which is incompatible with Cocoapods 1.13.0, the latest release, as they removed a method used by cocoapods. This fix ensures that we install compatible versions of the Gem. ## Changelog: [iOS][Fixed] - Set the max version of Active support to 7.0.8 Reviewed By: hoxyq Differential Revision: D49949782 fbshipit-source-id: 278097502d3a416567cc8c0b90090fee4fb21503 # Conflicts: # Gemfile --- Gemfile | 2 +- packages/react-native/template/Gemfile | 3 ++- packages/rn-tester/Gemfile | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 34784a7cd94f43..1183ee81ded66b 100644 --- a/Gemfile +++ b/Gemfile @@ -4,4 +4,4 @@ source 'https://rubygems.org' ruby ">= 2.6.10" gem 'cocoapods', '~> 1.12' -gem 'activesupport', '>= 6.1.7.1' +gem 'activesupport', '>= 6.1.7.1', '< 7.1.0' diff --git a/packages/react-native/template/Gemfile b/packages/react-native/template/Gemfile index 1fa2c2e1abdee6..6a7d5c7a49c357 100644 --- a/packages/react-native/template/Gemfile +++ b/packages/react-native/template/Gemfile @@ -3,4 +3,5 @@ source 'https://rubygems.org' # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version ruby ">= 2.6.10" -gem 'cocoapods', '~> 1.12' +gem 'cocoapods', '~> 1.13' +gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' diff --git a/packages/rn-tester/Gemfile b/packages/rn-tester/Gemfile index a66fd6c04cbc12..4de6c10e5d6df3 100644 --- a/packages/rn-tester/Gemfile +++ b/packages/rn-tester/Gemfile @@ -3,3 +3,4 @@ source 'https://rubygems.org' gem 'cocoapods', '~> 1.12' gem 'rexml' +gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' From 9b3bd637231e5e9e7d8b729c71842f3b7a2da373 Mon Sep 17 00:00:00 2001 From: Tim Yung Date: Tue, 19 Sep 2023 08:04:17 -0700 Subject: [PATCH 4/8] RN: Switch EventEmitter to `Array.from(...)` (#39525) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39525 Switches `EventEmitter#emit` to use `Array.from` instead of the spread operator. This should be functionally identical (with marginally less overhead of the runtime having to determine the type of `registrations`), but there seems to be [some unexpected Babel configurations in the community](https://github.com/facebook/react-native/issues/35577#issuecomment-1723218934) that causes this line of code to do the wrong things. Although we should independently root cause the Babel plugin configuration problems, this change might provide immediate relief and is also not any worse (e.g. in terms of code readability). This also adds a descriptive comment explaining the intention of the call to `Array.from`. Changelog: [Fixed][General] - Fix a potential bug in `EventEmitter` when used with certain Babel configurations that incorrectly polyfill the spread operator for iterables. Reviewed By: javache Differential Revision: D49389813 fbshipit-source-id: 7caf63734fc047496afe2f1ed6d918c22747258a --- .../react-native/Libraries/vendor/emitter/EventEmitter.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/react-native/Libraries/vendor/emitter/EventEmitter.js b/packages/react-native/Libraries/vendor/emitter/EventEmitter.js index 6bd20257222d73..a98ce92939b3c1 100644 --- a/packages/react-native/Libraries/vendor/emitter/EventEmitter.js +++ b/packages/react-native/Libraries/vendor/emitter/EventEmitter.js @@ -109,7 +109,9 @@ export default class EventEmitter Registration<$ElementType>, > = this._registry[eventType]; if (registrations != null) { - for (const registration of [...registrations]) { + // Copy `registrations` to take a snapshot when we invoke `emit`, in case + // registrations are added or removed when listeners are invoked. + for (const registration of Array.from(registrations)) { registration.listener.apply(registration.context, args); } } From 6e3a130860bf5ae0fd37df0ddaaeb226cffe7312 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 12 Oct 2023 13:49:58 +0100 Subject: [PATCH 5/8] [Local] Fix CI for 0.72, with Acitve Support and Xcode15 (#40855) --- .gitignore | 2 + Gemfile | 2 +- Gemfile.lock | 2 +- .../react-native/scripts/cocoapods/utils.rb | 4 +- packages/rn-tester/Podfile.lock | 1032 +++++++++-------- 5 files changed, 573 insertions(+), 469 deletions(-) diff --git a/.gitignore b/.gitignore index 6acb4ded1775f1..7adaf008e98dbc 100644 --- a/.gitignore +++ b/.gitignore @@ -107,6 +107,8 @@ package-lock.json /packages/react-native/template/vendor .ruby-version /**/.ruby-version +./vendor/ +vendor/ # iOS / CocoaPods /packages/react-native/template/ios/build/ diff --git a/Gemfile b/Gemfile index 1183ee81ded66b..1f657254243488 100644 --- a/Gemfile +++ b/Gemfile @@ -4,4 +4,4 @@ source 'https://rubygems.org' ruby ">= 2.6.10" gem 'cocoapods', '~> 1.12' -gem 'activesupport', '>= 6.1.7.1', '< 7.1.0' +gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' diff --git a/Gemfile.lock b/Gemfile.lock index 9d2fbb59b3a69d..2be896853d8551 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -89,7 +89,7 @@ PLATFORMS ruby DEPENDENCIES - activesupport (>= 6.1.7.1) + activesupport (>= 6.1.7.3, < 7.1.0) cocoapods (~> 1.12) RUBY VERSION diff --git a/packages/react-native/scripts/cocoapods/utils.rb b/packages/react-native/scripts/cocoapods/utils.rb index f80085f6952e9c..d4bf3a09478b70 100644 --- a/packages/react-native/scripts/cocoapods/utils.rb +++ b/packages/react-native/scripts/cocoapods/utils.rb @@ -140,7 +140,7 @@ def self.apply_xcode_15_patch(installer, xcodebuild_manager: Xcodebuild) if self.is_using_xcode15_or_greter(:xcodebuild_manager => xcodebuild_manager) self.add_value_to_setting_if_missing(config, other_ld_flags_key, xcode15_compatibility_flags) else - self.remove_value_to_setting_if_present(config, other_ld_flags_key, xcode15_compatibility_flags) + self.remove_value_from_setting_if_present(config, other_ld_flags_key, xcode15_compatibility_flags) end end project.save() @@ -308,7 +308,7 @@ def self.add_value_to_setting_if_missing(config, setting_name, value) end end - def self.remove_value_to_setting_if_present(config, setting_name, value) + def self.remove_value_from_setting_if_present(config, setting_name, value) old_config = config.build_settings[setting_name] if old_config.is_a?(Array) old_config = old_config.join(" ") diff --git a/packages/rn-tester/Podfile.lock b/packages/rn-tester/Podfile.lock index 9e2d6d6aa9a8fd..6bec2783e93764 100644 --- a/packages/rn-tester/Podfile.lock +++ b/packages/rn-tester/Podfile.lock @@ -1,25 +1,81 @@ PODS: - boost (1.76.0) + - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - FBLazyVector (0.72.4) - - FBReactNativeSpec (0.72.4): + - FBLazyVector (0.72.5) + - FBReactNativeSpec (0.72.5): - RCT-Folly (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) - - React-Core (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) + - React-Core (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - Flipper (0.182.0): + - Flipper-Folly (~> 2.6) + - Flipper-Boost-iOSX (1.76.0.1.11) + - Flipper-DoubleConversion (3.2.0.1) + - Flipper-Fmt (7.1.7) + - Flipper-Folly (2.6.10): + - Flipper-Boost-iOSX + - Flipper-DoubleConversion + - Flipper-Fmt (= 7.1.7) + - Flipper-Glog + - libevent (~> 2.1.12) + - OpenSSL-Universal (= 1.1.1100) + - Flipper-Glog (0.5.0.5) + - Flipper-PeerTalk (0.0.4) + - FlipperKit (0.182.0): + - FlipperKit/Core (= 0.182.0) + - FlipperKit/Core (0.182.0): + - Flipper (~> 0.182.0) + - FlipperKit/CppBridge + - FlipperKit/FBCxxFollyDynamicConvert + - FlipperKit/FBDefines + - FlipperKit/FKPortForwarding + - SocketRocket (~> 0.6.0) + - FlipperKit/CppBridge (0.182.0): + - Flipper (~> 0.182.0) + - FlipperKit/FBCxxFollyDynamicConvert (0.182.0): + - Flipper-Folly (~> 2.6) + - FlipperKit/FBDefines (0.182.0) + - FlipperKit/FKPortForwarding (0.182.0): + - CocoaAsyncSocket (~> 7.6) + - Flipper-PeerTalk (~> 0.0.4) + - FlipperKit/FlipperKitHighlightOverlay (0.182.0) + - FlipperKit/FlipperKitLayoutHelpers (0.182.0): + - FlipperKit/Core + - FlipperKit/FlipperKitHighlightOverlay + - FlipperKit/FlipperKitLayoutTextSearchable + - FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0): + - FlipperKit/Core + - FlipperKit/FlipperKitHighlightOverlay + - FlipperKit/FlipperKitLayoutHelpers + - YogaKit (~> 1.18) + - FlipperKit/FlipperKitLayoutPlugin (0.182.0): + - FlipperKit/Core + - FlipperKit/FlipperKitHighlightOverlay + - FlipperKit/FlipperKitLayoutHelpers + - FlipperKit/FlipperKitLayoutIOSDescriptors + - FlipperKit/FlipperKitLayoutTextSearchable + - YogaKit (~> 1.18) + - FlipperKit/FlipperKitLayoutTextSearchable (0.182.0) + - FlipperKit/FlipperKitNetworkPlugin (0.182.0): + - FlipperKit/Core + - FlipperKit/FlipperKitReactPlugin (0.182.0): + - FlipperKit/Core + - FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0): + - FlipperKit/Core + - FlipperKit/SKIOSNetworkPlugin (0.182.0): + - FlipperKit/Core + - FlipperKit/FlipperKitNetworkPlugin - fmt (6.2.1) - glog (0.3.5) - - hermes-engine (0.72.4): - - hermes-engine/Hermes (= 0.72.4) - - hermes-engine/JSI (= 0.72.4) - - hermes-engine/Public (= 0.72.4) - - hermes-engine/Hermes (0.72.4) - - hermes-engine/JSI (0.72.4) - - hermes-engine/Public (0.72.4) + - hermes-engine (0.72.5): + - hermes-engine/Pre-built (= 0.72.5) + - hermes-engine/Pre-built (0.72.5) - libevent (2.1.12) - OCMock (3.9.1) + - OpenSSL-Universal (1.1.1100) - RCT-Folly (2021.07.22.00): - boost - DoubleConversion @@ -42,26 +98,26 @@ PODS: - fmt (~> 6.2.1) - glog - libevent - - RCTRequired (0.72.4) - - RCTTypeSafety (0.72.4): - - FBLazyVector (= 0.72.4) - - RCTRequired (= 0.72.4) - - React-Core (= 0.72.4) - - React (0.72.4): - - React-Core (= 0.72.4) - - React-Core/DevSupport (= 0.72.4) - - React-Core/RCTWebSocket (= 0.72.4) - - React-RCTActionSheet (= 0.72.4) - - React-RCTAnimation (= 0.72.4) - - React-RCTBlob (= 0.72.4) - - React-RCTImage (= 0.72.4) - - React-RCTLinking (= 0.72.4) - - React-RCTNetwork (= 0.72.4) - - React-RCTSettings (= 0.72.4) - - React-RCTText (= 0.72.4) - - React-RCTVibration (= 0.72.4) - - React-callinvoker (0.72.4) - - React-Codegen (0.72.4): + - RCTRequired (0.72.5) + - RCTTypeSafety (0.72.5): + - FBLazyVector (= 0.72.5) + - RCTRequired (= 0.72.5) + - React-Core (= 0.72.5) + - React (0.72.5): + - React-Core (= 0.72.5) + - React-Core/DevSupport (= 0.72.5) + - React-Core/RCTWebSocket (= 0.72.5) + - React-RCTActionSheet (= 0.72.5) + - React-RCTAnimation (= 0.72.5) + - React-RCTBlob (= 0.72.5) + - React-RCTImage (= 0.72.5) + - React-RCTLinking (= 0.72.5) + - React-RCTNetwork (= 0.72.5) + - React-RCTSettings (= 0.72.5) + - React-RCTText (= 0.72.5) + - React-RCTVibration (= 0.72.5) + - React-callinvoker (0.72.5) + - React-Codegen (0.72.5): - DoubleConversion - FBReactNativeSpec - glog @@ -80,11 +136,11 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-Core (0.72.4): + - React-Core (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.72.4) + - React-Core/Default (= 0.72.5) - React-cxxreact - React-hermes - React-jsi @@ -94,7 +150,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/CoreModulesHeaders (0.72.4): + - React-Core/CoreModulesHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -108,7 +164,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/Default (0.72.4): + - React-Core/Default (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -121,23 +177,23 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/DevSupport (0.72.4): + - React-Core/DevSupport (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.72.4) - - React-Core/RCTWebSocket (= 0.72.4) + - React-Core/Default (= 0.72.5) + - React-Core/RCTWebSocket (= 0.72.5) - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - - React-jsinspector (= 0.72.4) + - React-jsinspector (= 0.72.5) - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.72.4): + - React-Core/RCTActionSheetHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -151,7 +207,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTAnimationHeaders (0.72.4): + - React-Core/RCTAnimationHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -165,7 +221,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTBlobHeaders (0.72.4): + - React-Core/RCTBlobHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -179,7 +235,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTImageHeaders (0.72.4): + - React-Core/RCTImageHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -193,7 +249,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTLinkingHeaders (0.72.4): + - React-Core/RCTLinkingHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -207,7 +263,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTNetworkHeaders (0.72.4): + - React-Core/RCTNetworkHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -221,7 +277,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTPushNotificationHeaders (0.72.4): + - React-Core/RCTPushNotificationHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -235,7 +291,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTSettingsHeaders (0.72.4): + - React-Core/RCTSettingsHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -249,7 +305,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTTextHeaders (0.72.4): + - React-Core/RCTTextHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -263,7 +319,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTVibrationHeaders (0.72.4): + - React-Core/RCTVibrationHeaders (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -277,11 +333,11 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTWebSocket (0.72.4): + - React-Core/RCTWebSocket (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.72.4) + - React-Core/Default (= 0.72.5) - React-cxxreact - React-hermes - React-jsi @@ -291,591 +347,591 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-CoreModules (0.72.4): + - React-CoreModules (0.72.5): - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.4) - - React-Codegen (= 0.72.4) - - React-Core/CoreModulesHeaders (= 0.72.4) - - React-jsi (= 0.72.4) + - RCTTypeSafety (= 0.72.5) + - React-Codegen (= 0.72.5) + - React-Core/CoreModulesHeaders (= 0.72.5) + - React-jsi (= 0.72.5) - React-RCTBlob - - React-RCTImage (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) + - React-RCTImage (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) - SocketRocket (= 0.6.1) - - React-cxxreact (0.72.4): + - React-cxxreact (0.72.5): - boost (= 1.76.0) - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.72.4) - - React-debug (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsinspector (= 0.72.4) - - React-logger (= 0.72.4) - - React-perflogger (= 0.72.4) - - React-runtimeexecutor (= 0.72.4) - - React-debug (0.72.4) - - React-Fabric (0.72.4): + - React-callinvoker (= 0.72.5) + - React-debug (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsinspector (= 0.72.5) + - React-logger (= 0.72.5) + - React-perflogger (= 0.72.5) + - React-runtimeexecutor (= 0.72.5) + - React-debug (0.72.5) + - React-Fabric (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-Fabric/animations (= 0.72.4) - - React-Fabric/attributedstring (= 0.72.4) - - React-Fabric/butter (= 0.72.4) - - React-Fabric/componentregistry (= 0.72.4) - - React-Fabric/componentregistrynative (= 0.72.4) - - React-Fabric/components (= 0.72.4) - - React-Fabric/config (= 0.72.4) - - React-Fabric/core (= 0.72.4) - - React-Fabric/debug_renderer (= 0.72.4) - - React-Fabric/imagemanager (= 0.72.4) - - React-Fabric/leakchecker (= 0.72.4) - - React-Fabric/mapbuffer (= 0.72.4) - - React-Fabric/mounting (= 0.72.4) - - React-Fabric/scheduler (= 0.72.4) - - React-Fabric/telemetry (= 0.72.4) - - React-Fabric/templateprocessor (= 0.72.4) - - React-Fabric/textlayoutmanager (= 0.72.4) - - React-Fabric/uimanager (= 0.72.4) - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-Fabric/animations (= 0.72.5) + - React-Fabric/attributedstring (= 0.72.5) + - React-Fabric/butter (= 0.72.5) + - React-Fabric/componentregistry (= 0.72.5) + - React-Fabric/componentregistrynative (= 0.72.5) + - React-Fabric/components (= 0.72.5) + - React-Fabric/config (= 0.72.5) + - React-Fabric/core (= 0.72.5) + - React-Fabric/debug_renderer (= 0.72.5) + - React-Fabric/imagemanager (= 0.72.5) + - React-Fabric/leakchecker (= 0.72.5) + - React-Fabric/mapbuffer (= 0.72.5) + - React-Fabric/mounting (= 0.72.5) + - React-Fabric/scheduler (= 0.72.5) + - React-Fabric/telemetry (= 0.72.5) + - React-Fabric/templateprocessor (= 0.72.5) + - React-Fabric/textlayoutmanager (= 0.72.5) + - React-Fabric/uimanager (= 0.72.5) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/animations (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/animations (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/attributedstring (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/attributedstring (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/butter (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/butter (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/componentregistry (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/componentregistry (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/componentregistrynative (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/componentregistrynative (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-Fabric/components/activityindicator (= 0.72.4) - - React-Fabric/components/image (= 0.72.4) - - React-Fabric/components/inputaccessory (= 0.72.4) - - React-Fabric/components/legacyviewmanagerinterop (= 0.72.4) - - React-Fabric/components/modal (= 0.72.4) - - React-Fabric/components/rncore (= 0.72.4) - - React-Fabric/components/root (= 0.72.4) - - React-Fabric/components/safeareaview (= 0.72.4) - - React-Fabric/components/scrollview (= 0.72.4) - - React-Fabric/components/text (= 0.72.4) - - React-Fabric/components/textinput (= 0.72.4) - - React-Fabric/components/unimplementedview (= 0.72.4) - - React-Fabric/components/view (= 0.72.4) - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-Fabric/components/activityindicator (= 0.72.5) + - React-Fabric/components/image (= 0.72.5) + - React-Fabric/components/inputaccessory (= 0.72.5) + - React-Fabric/components/legacyviewmanagerinterop (= 0.72.5) + - React-Fabric/components/modal (= 0.72.5) + - React-Fabric/components/rncore (= 0.72.5) + - React-Fabric/components/root (= 0.72.5) + - React-Fabric/components/safeareaview (= 0.72.5) + - React-Fabric/components/scrollview (= 0.72.5) + - React-Fabric/components/text (= 0.72.5) + - React-Fabric/components/textinput (= 0.72.5) + - React-Fabric/components/unimplementedview (= 0.72.5) + - React-Fabric/components/view (= 0.72.5) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/activityindicator (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/activityindicator (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/image (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/image (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/inputaccessory (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/inputaccessory (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/legacyviewmanagerinterop (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/legacyviewmanagerinterop (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/modal (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/modal (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/rncore (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/rncore (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/root (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/root (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/safeareaview (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/safeareaview (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/scrollview (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/scrollview (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/text (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/text (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/textinput (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/textinput (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/unimplementedview (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/unimplementedview (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/components/view (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/components/view (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) + - ReactCommon/turbomodule/core (= 0.72.5) - Yoga - - React-Fabric/config (0.72.4): + - React-Fabric/config (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/core (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/core (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/debug_renderer (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/debug_renderer (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/imagemanager (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/imagemanager (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/leakchecker (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/leakchecker (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/mapbuffer (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/mapbuffer (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/mounting (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/mounting (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/scheduler (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/scheduler (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/telemetry (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/telemetry (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/templateprocessor (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/templateprocessor (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/textlayoutmanager (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/textlayoutmanager (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - React-Fabric/uimanager - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-Fabric/uimanager (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-Fabric/uimanager (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.4) - - RCTTypeSafety (= 0.72.4) + - RCTRequired (= 0.72.5) + - RCTTypeSafety (= 0.72.5) - React-Core - React-debug - - React-graphics (= 0.72.4) - - React-jsi (= 0.72.4) - - React-jsiexecutor (= 0.72.4) + - React-graphics (= 0.72.5) + - React-jsi (= 0.72.5) + - React-jsiexecutor (= 0.72.5) - React-logger - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.4) - - React-graphics (0.72.4): + - ReactCommon/turbomodule/core (= 0.72.5) + - React-graphics (0.72.5): - glog - RCT-Folly/Fabric (= 2021.07.22.00) - - React-Core/Default (= 0.72.4) - - React-hermes (0.72.4): + - React-Core/Default (= 0.72.5) + - React-hermes (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - RCT-Folly/Futures (= 2021.07.22.00) - - React-cxxreact (= 0.72.4) + - React-cxxreact (= 0.72.5) - React-jsi - - React-jsiexecutor (= 0.72.4) - - React-jsinspector (= 0.72.4) - - React-perflogger (= 0.72.4) - - React-ImageManager (0.72.4): + - React-jsiexecutor (= 0.72.5) + - React-jsinspector (= 0.72.5) + - React-perflogger (= 0.72.5) + - React-ImageManager (0.72.5): - glog - RCT-Folly/Fabric - React-Core/Default @@ -883,24 +939,24 @@ PODS: - React-Fabric - React-RCTImage - React-utils - - React-jsi (0.72.4): + - React-jsi (0.72.5): - boost (= 1.76.0) - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-jsiexecutor (0.72.4): + - React-jsiexecutor (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-cxxreact (= 0.72.4) - - React-jsi (= 0.72.4) - - React-perflogger (= 0.72.4) - - React-jsinspector (0.72.4) - - React-logger (0.72.4): + - React-cxxreact (= 0.72.5) + - React-jsi (= 0.72.5) + - React-perflogger (= 0.72.5) + - React-jsinspector (0.72.5) + - React-logger (0.72.5): - glog - - React-NativeModulesApple (0.72.4): + - React-NativeModulesApple (0.72.5): - hermes-engine - React-callinvoker - React-Core @@ -909,17 +965,17 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.72.4) - - React-RCTActionSheet (0.72.4): - - React-Core/RCTActionSheetHeaders (= 0.72.4) - - React-RCTAnimation (0.72.4): + - React-perflogger (0.72.5) + - React-RCTActionSheet (0.72.5): + - React-Core/RCTActionSheetHeaders (= 0.72.5) + - React-RCTAnimation (0.72.5): - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.4) - - React-Codegen (= 0.72.4) - - React-Core/RCTAnimationHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTAppDelegate (0.72.4): + - RCTTypeSafety (= 0.72.5) + - React-Codegen (= 0.72.5) + - React-Core/RCTAnimationHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTAppDelegate (0.72.5): - RCT-Folly - RCTRequired - RCTTypeSafety @@ -931,78 +987,78 @@ PODS: - React-RCTNetwork - React-runtimescheduler - ReactCommon/turbomodule/core - - React-RCTBlob (0.72.4): + - React-RCTBlob (0.72.5): - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-Codegen (= 0.72.4) - - React-Core/RCTBlobHeaders (= 0.72.4) - - React-Core/RCTWebSocket (= 0.72.4) - - React-jsi (= 0.72.4) - - React-RCTNetwork (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTFabric (0.72.4): + - React-Codegen (= 0.72.5) + - React-Core/RCTBlobHeaders (= 0.72.5) + - React-Core/RCTWebSocket (= 0.72.5) + - React-jsi (= 0.72.5) + - React-RCTNetwork (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTFabric (0.72.5): - glog - hermes-engine - RCT-Folly/Fabric (= 2021.07.22.00) - - React-Core (= 0.72.4) - - React-Fabric (= 0.72.4) + - React-Core (= 0.72.5) + - React-Fabric (= 0.72.5) - React-ImageManager - - React-RCTImage (= 0.72.4) + - React-RCTImage (= 0.72.5) - React-RCTText - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.72.4): + - React-RCTImage (0.72.5): - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.4) - - React-Codegen (= 0.72.4) - - React-Core/RCTImageHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - React-RCTNetwork (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTLinking (0.72.4): - - React-Codegen (= 0.72.4) - - React-Core/RCTLinkingHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTNetwork (0.72.4): + - RCTTypeSafety (= 0.72.5) + - React-Codegen (= 0.72.5) + - React-Core/RCTImageHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - React-RCTNetwork (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTLinking (0.72.5): + - React-Codegen (= 0.72.5) + - React-Core/RCTLinkingHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTNetwork (0.72.5): - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.4) - - React-Codegen (= 0.72.4) - - React-Core/RCTNetworkHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTPushNotification (0.72.4): - - RCTTypeSafety (= 0.72.4) - - React-Codegen (= 0.72.4) - - React-Core/RCTPushNotificationHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTSettings (0.72.4): + - RCTTypeSafety (= 0.72.5) + - React-Codegen (= 0.72.5) + - React-Core/RCTNetworkHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTPushNotification (0.72.5): + - RCTTypeSafety (= 0.72.5) + - React-Codegen (= 0.72.5) + - React-Core/RCTPushNotificationHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTSettings (0.72.5): - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.4) - - React-Codegen (= 0.72.4) - - React-Core/RCTSettingsHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTTest (0.72.4): + - RCTTypeSafety (= 0.72.5) + - React-Codegen (= 0.72.5) + - React-Core/RCTSettingsHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTTest (0.72.5): - RCT-Folly (= 2021.07.22.00) - - React-Core (= 0.72.4) - - React-CoreModules (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-RCTText (0.72.4): - - React-Core/RCTTextHeaders (= 0.72.4) - - React-RCTVibration (0.72.4): + - React-Core (= 0.72.5) + - React-CoreModules (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-RCTText (0.72.5): + - React-Core/RCTTextHeaders (= 0.72.5) + - React-RCTVibration (0.72.5): - RCT-Folly (= 2021.07.22.00) - - React-Codegen (= 0.72.4) - - React-Core/RCTVibrationHeaders (= 0.72.4) - - React-jsi (= 0.72.4) - - ReactCommon/turbomodule/core (= 0.72.4) - - React-rncore (0.72.4) - - React-runtimeexecutor (0.72.4): - - React-jsi (= 0.72.4) - - React-runtimescheduler (0.72.4): + - React-Codegen (= 0.72.5) + - React-Core/RCTVibrationHeaders (= 0.72.5) + - React-jsi (= 0.72.5) + - ReactCommon/turbomodule/core (= 0.72.5) + - React-rncore (0.72.5) + - React-runtimeexecutor (0.72.5): + - React-jsi (= 0.72.5) + - React-runtimescheduler (0.72.5): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) @@ -1010,11 +1066,11 @@ PODS: - React-debug - React-jsi - React-runtimeexecutor - - React-utils (0.72.4): + - React-utils (0.72.5): - glog - RCT-Folly (= 2021.07.22.00) - React-debug - - ReactCommon-Samples (0.72.4): + - ReactCommon-Samples (0.72.5): - DoubleConversion - hermes-engine - RCT-Folly @@ -1023,41 +1079,64 @@ PODS: - React-cxxreact - React-NativeModulesApple - ReactCommon/turbomodule/core - - ReactCommon/turbomodule/bridging (0.72.4): + - ReactCommon/turbomodule/bridging (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.72.4) - - React-cxxreact (= 0.72.4) - - React-jsi (= 0.72.4) - - React-logger (= 0.72.4) - - React-perflogger (= 0.72.4) - - ReactCommon/turbomodule/core (0.72.4): + - React-callinvoker (= 0.72.5) + - React-cxxreact (= 0.72.5) + - React-jsi (= 0.72.5) + - React-logger (= 0.72.5) + - React-perflogger (= 0.72.5) + - ReactCommon/turbomodule/core (0.72.5): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.72.4) - - React-cxxreact (= 0.72.4) - - React-jsi (= 0.72.4) - - React-logger (= 0.72.4) - - React-perflogger (= 0.72.4) + - React-callinvoker (= 0.72.5) + - React-cxxreact (= 0.72.5) + - React-jsi (= 0.72.5) + - React-logger (= 0.72.5) + - React-perflogger (= 0.72.5) - ScreenshotManager (0.0.1): - RCT-Folly (= 2021.07.22.00) - React-Core - SocketRocket (0.6.1) - Yoga (1.14.0) + - YogaKit (1.18.1): + - Yoga (~> 1.14) DEPENDENCIES: - boost (from `../react-native/third-party-podspecs/boost.podspec`) - DoubleConversion (from `../react-native/third-party-podspecs/DoubleConversion.podspec`) - FBLazyVector (from `../react-native/Libraries/FBLazyVector`) - FBReactNativeSpec (from `../react-native/React/FBReactNativeSpec`) + - Flipper (= 0.182.0) + - Flipper-Boost-iOSX (= 1.76.0.1.11) + - Flipper-DoubleConversion (= 3.2.0.1) + - Flipper-Fmt (= 7.1.7) + - Flipper-Folly (= 2.6.10) + - Flipper-Glog (= 0.5.0.5) + - Flipper-PeerTalk (= 0.0.4) + - FlipperKit (= 0.182.0) + - FlipperKit/Core (= 0.182.0) + - FlipperKit/CppBridge (= 0.182.0) + - FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0) + - FlipperKit/FBDefines (= 0.182.0) + - FlipperKit/FKPortForwarding (= 0.182.0) + - FlipperKit/FlipperKitHighlightOverlay (= 0.182.0) + - FlipperKit/FlipperKitLayoutPlugin (= 0.182.0) + - FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0) + - FlipperKit/FlipperKitNetworkPlugin (= 0.182.0) + - FlipperKit/FlipperKitReactPlugin (= 0.182.0) + - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0) + - FlipperKit/SKIOSNetworkPlugin (= 0.182.0) - glog (from `../react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../react-native/sdks/hermes-engine/hermes-engine.podspec`) - libevent (~> 2.1.12) - OCMock (~> 3.9.1) + - OpenSSL-Universal (= 1.1.1100) - RCT-Folly (from `../react-native/third-party-podspecs/RCT-Folly.podspec`) - RCT-Folly/Fabric (from `../react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTRequired (from `../react-native/Libraries/RCTRequired`) @@ -1066,6 +1145,7 @@ DEPENDENCIES: - React-callinvoker (from `../react-native/ReactCommon/callinvoker`) - React-Codegen (from `build/generated/ios`) - React-Core (from `../react-native/`) + - React-Core/DevSupport (from `../react-native/`) - React-Core/RCTWebSocket (from `../react-native/`) - React-CoreModules (from `../react-native/React/CoreModules`) - React-cxxreact (from `../react-native/ReactCommon/cxxreact`) @@ -1104,10 +1184,21 @@ DEPENDENCIES: SPEC REPOS: trunk: + - CocoaAsyncSocket + - Flipper + - Flipper-Boost-iOSX + - Flipper-DoubleConversion + - Flipper-Fmt + - Flipper-Folly + - Flipper-Glog + - Flipper-PeerTalk + - FlipperKit - fmt - libevent - OCMock + - OpenSSL-Universal - SocketRocket + - YogaKit EXTERNAL SOURCES: boost: @@ -1208,57 +1299,68 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 57d2868c099736d80fcd648bf211b4431e51a558 + CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 - FBLazyVector: 5d4a3b7f411219a45a6d952f77d2c0a6c9989da5 - FBReactNativeSpec: be23280a4f9ace91746c88be25b524f97007afa6 + FBLazyVector: 71803c074f6325f10b5ec891c443b6bbabef0ca7 + FBReactNativeSpec: 205267901c7e35f68af8c55a646120b6c0fca3a4 + Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818 + Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c + Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30 + Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b + Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3 + Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446 + Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 + FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b - hermes-engine: d6b0f7383443a062c1a6155a0a3486e4d18bcc6a + hermes-engine: f6cf92a471053245614d9d8097736f6337d5b86c libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OCMock: 9491e4bec59e0b267d52a9184ff5605995e74be8 + OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 - RCTRequired: c0569ecc035894e4a68baecb30fe6a7ea6e399f9 - RCTTypeSafety: e90354072c21236e0bcf1699011e39acd25fea2f - React: a1be3c6dc0a6e949ccd3e659781aa47bbae1868f - React-callinvoker: 1020b33f6cb1a1824f9ca2a86609fbce2a73c6ed - React-Codegen: 9dc9ce39d004aa9a7c481e0c367d6e585e558c62 - React-Core: 52075b80f10c26f62219d7b5d13d7d8089f027b3 - React-CoreModules: 21abab85d7ad9038ce2b1c33d39e3baaf7dc9244 - React-cxxreact: 4ad1cc861e32fb533dad6ff7a4ea25680fa1c994 - React-debug: 17366a3d5c5d2f5fc04f09101a4af38cb42b54ae - React-Fabric: bd595702c2a473faca32b59c427d927e9d3a4cc1 - React-graphics: 89d631f399096ffb5f93e19ca6908ba93a123797 - React-hermes: 37377d0a56aa0cf55c65248271866ce3268cde3f - React-ImageManager: e57287a6a9d34b95c5f348a2f8773d9f6007c507 - React-jsi: 6de8b0ccc6b765b58e4eee9ee38049dbeaf5c221 - React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594 - React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f - React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77 - React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f - React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58 - React-RCTActionSheet: 02904b932b50e680f4e26e7a686b33ebf7ef3c00 - React-RCTAnimation: 88feaf0a85648fb8fd497ce749829774910276d6 - React-RCTAppDelegate: 5792ac0f0feccb584765fdd7aa81ea320c4d9b0b - React-RCTBlob: 0dbc9e2a13d241b37d46b53e54630cbad1f0e141 - React-RCTFabric: 0d443ab3cc3f0af82442ec95747d503cee955f26 - React-RCTImage: b111645ab901f8e59fc68fbe31f5731bdbeef087 - React-RCTLinking: 3d719727b4c098aad3588aa3559361ee0579f5de - React-RCTNetwork: b44d3580be05d74556ba4efbf53570f17e38f734 - React-RCTPushNotification: e8e403bd93e63051855334eae1851f5a3ef23ede - React-RCTSettings: c0c54b330442c29874cd4dae6e94190dc11a6f6f - React-RCTTest: 3dc1bbd75178ca6fe1dddbcdcafd5f02dd6e6935 - React-RCTText: 9b9f5589d9b649d7246c3f336e116496df28cfe6 - React-RCTVibration: 691c67f3beaf1d084ceed5eb5c1dddd9afa8591e - React-rncore: 24d25af89f365c9537f1d3f99e0175d10e41d227 - React-runtimeexecutor: d465ba0c47ef3ed8281143f59605cacc2244d5c7 - React-runtimescheduler: 4941cc1b3cf08b792fbf666342c9fc95f1969035 - React-utils: b79f2411931f9d3ea5781404dcbb2fa8a837e13a - ReactCommon: 4b2bdcb50a3543e1c2b2849ad44533686610826d - ReactCommon-Samples: f5369d4fca506f8bf51155f8512cf26c094b2db9 + RCTRequired: df81ab637d35fac9e6eb94611cfd20f0feb05455 + RCTTypeSafety: 4636e4a36c7c2df332bda6d59b19b41c443d4287 + React: e0cc5197a804031a6c53fb38483c3485fcb9d6f3 + React-callinvoker: 1a635856fe0c3d8b13fccd4ed7e76283b99b0868 + React-Codegen: 03363aad02c23c96a268293f0de3fb61a74f5f2d + React-Core: 252f8e9ca5a4e91af9b9be58670846d662b1c49f + React-CoreModules: f8b9e91fac7bd5d18729ce961a4978c70b5031cc + React-cxxreact: 70284b32dcd367439d7dae84d9f72660544181b5 + React-debug: ee33d7ba43766d9b10b32561527b57ccfbcb6bd1 + React-Fabric: 03aad7b2c0b4df23d72ad480fe8965788d41ba29 + React-graphics: 50db6eb731c3faf9ab74a74946e2f469ba8d465a + React-hermes: 91f97ea2669dc5847e1f26c243aaad913319c570 + React-ImageManager: a64dd40c4eb20412adea18d746453c691330723d + React-jsi: bd68b7779746014f01ea72d1b738809e132d7f1e + React-jsiexecutor: ff70a72027dea5cc7d71cfcc6fad7f599f63987a + React-jsinspector: aef73cbd43b70675f572214d10fa438c89bf11ba + React-logger: 2e4aee3e11b3ec4fa6cfd8004610bbb3b8d6cca4 + React-NativeModulesApple: 797bc6078d566eef3fb3f74127e6e1d2e945a15f + React-perflogger: cd8886513f68e1c135a1e79d20575c6489641597 + React-RCTActionSheet: 726d2615ca62a77ce3e2c13d87f65379cdc73498 + React-RCTAnimation: 8f2716b881c37c64858e4ecee0f58bfa57ff9afd + React-RCTAppDelegate: d4a213f29e81682f6b9c7d22f62a2ccab6d125ae + React-RCTBlob: dfaa933231c3497915bbcc9d98fcff7b6b60582c + React-RCTFabric: a7c36529eb41d7ba14751c30ddbc35732e74a5c1 + React-RCTImage: 747e3d7b656a67470f9c234baedb8d41bbc4e745 + React-RCTLinking: 148332b5b0396b280b05534f7d168e560a3bbd5f + React-RCTNetwork: 1d818121a8e678f064de663a6db7aaefc099e53c + React-RCTPushNotification: f843b7bdd33e4c5db94b75b9baa958fa48add08c + React-RCTSettings: 4b95d26ebc88bfd3b6535b2d7904914ff88dbfc2 + React-RCTTest: 1fbeb76d64f5c54af9787ad614311ec2682a8a5f + React-RCTText: ce4499e4f2d8f85dc4b93ff0559313a016c4f3e2 + React-RCTVibration: 45372e61b35e96d16893540958d156675afbeb63 + React-rncore: 1bda313fa5cb97e8140f993d2a5b318a9a2545a6 + React-runtimeexecutor: 7e31e2bc6d0ecc83d4ba05eadc98401007abc10c + React-runtimescheduler: cc32add98c45c5df18436a6a52a7e1f6edec102c + React-utils: 7a9918a1ffdd39aba67835d42386f592ea3f8e76 + ReactCommon: 91ece8350ebb3dd2be9cef662abd78b6948233c0 + ReactCommon-Samples: 0e28678a39b229b068ac256758fccd4ff1776304 ScreenshotManager: 4e5729bfcd19014d277e57eb60e8e75db64b2953 SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 - Yoga: 3efc43e0d48686ce2e8c60f99d4e6bd349aff981 + Yoga: 86fed2e4d425ee4c6eab3813ba1791101ee153c6 + YogaKit: f782866e155069a2cca2517aafea43200b01fd5a PODFILE CHECKSUM: 9fa6f105e2187b680e978d57b28e2f700c8bd295 -COCOAPODS: 1.12.1 +COCOAPODS: 1.13.0 From 4fd3da2a877d5c4dc07ea26067f2eec98ac4fb19 Mon Sep 17 00:00:00 2001 From: Distiller Date: Thu, 12 Oct 2023 15:02:49 +0000 Subject: [PATCH 6/8] [0.72.6] Bump version numbers --- Gemfile.lock | 2 +- packages/react-native/Libraries/Core/ReactNativeVersion.js | 2 +- packages/react-native/React/Base/RCTVersion.m | 2 +- packages/react-native/ReactAndroid/gradle.properties | 2 +- .../facebook/react/modules/systeminfo/ReactNativeVersion.java | 2 +- packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h | 2 +- packages/react-native/package.json | 2 +- packages/react-native/template/package.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2be896853d8551..49ea432421ea71 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -57,7 +57,7 @@ GEM escape (0.0.4) ethon (0.16.0) ffi (>= 1.15.0) - ffi (1.16.1) + ffi (1.16.3) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) diff --git a/packages/react-native/Libraries/Core/ReactNativeVersion.js b/packages/react-native/Libraries/Core/ReactNativeVersion.js index 6dab16597e0904..d6749c75e6524a 100644 --- a/packages/react-native/Libraries/Core/ReactNativeVersion.js +++ b/packages/react-native/Libraries/Core/ReactNativeVersion.js @@ -12,6 +12,6 @@ exports.version = { major: 0, minor: 72, - patch: 5, + patch: 6, prerelease: null, }; diff --git a/packages/react-native/React/Base/RCTVersion.m b/packages/react-native/React/Base/RCTVersion.m index 5e55a32eafcdce..3cfd3c28f04d76 100644 --- a/packages/react-native/React/Base/RCTVersion.m +++ b/packages/react-native/React/Base/RCTVersion.m @@ -23,7 +23,7 @@ __rnVersion = @{ RCTVersionMajor: @(0), RCTVersionMinor: @(72), - RCTVersionPatch: @(5), + RCTVersionPatch: @(6), RCTVersionPrerelease: [NSNull null], }; }); diff --git a/packages/react-native/ReactAndroid/gradle.properties b/packages/react-native/ReactAndroid/gradle.properties index 828a27569c1ecb..7c3b5d2ea2f6f1 100644 --- a/packages/react-native/ReactAndroid/gradle.properties +++ b/packages/react-native/ReactAndroid/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.72.5 +VERSION_NAME=0.72.6 GROUP=com.facebook.react # JVM Versions diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java index a6694a8993838d..f9da6987613e32 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java @@ -17,6 +17,6 @@ public class ReactNativeVersion { public static final Map VERSION = MapBuilder.of( "major", 0, "minor", 72, - "patch", 5, + "patch", 6, "prerelease", null); } diff --git a/packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h b/packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h index 1bea8e04d2c08e..ffabd8f3ff04e7 100644 --- a/packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h +++ b/packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h @@ -17,7 +17,7 @@ namespace facebook::react { constexpr struct { int32_t Major = 0; int32_t Minor = 72; - int32_t Patch = 5; + int32_t Patch = 6; std::string_view Prerelease = ""; } ReactNativeVersion; diff --git a/packages/react-native/package.json b/packages/react-native/package.json index 0750f1ffffe413..cb56d2c9b2747a 100644 --- a/packages/react-native/package.json +++ b/packages/react-native/package.json @@ -1,6 +1,6 @@ { "name": "react-native", - "version": "0.72.5", + "version": "0.72.6", "bin": "./cli.js", "description": "A framework for building native apps using React", "license": "MIT", diff --git a/packages/react-native/template/package.json b/packages/react-native/template/package.json index b7e4eb4d3824f9..96710f5cd1cbe0 100644 --- a/packages/react-native/template/package.json +++ b/packages/react-native/template/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "react": "18.2.0", - "react-native": "0.72.5" + "react-native": "0.72.6" }, "devDependencies": { "@babel/core": "^7.20.0", From e031c05cdc5650f17231caf7f60820e1df744788 Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Thu, 12 Oct 2023 16:45:38 +0100 Subject: [PATCH 7/8] Bump deprecated-react-native-prop-types to ^4.2.3 This version correctly sets a dependency on `"@react-native/normalize-colors": "<0.73.0"` (from `"*"`), preventing future unwanted breakages. --- packages/react-native/package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/react-native/package.json b/packages/react-native/package.json index cb56d2c9b2747a..99427fd52e7403 100644 --- a/packages/react-native/package.json +++ b/packages/react-native/package.json @@ -91,7 +91,7 @@ "abort-controller": "^3.0.0", "anser": "^1.4.9", "base64-js": "^1.1.2", - "deprecated-react-native-prop-types": "4.1.0", + "deprecated-react-native-prop-types": "^4.2.3", "event-target-shim": "^5.0.1", "flow-enums-runtime": "^0.0.5", "invariant": "^2.2.4", diff --git a/yarn.lock b/yarn.lock index 9c98b30366cfb5..2d98be6f8e1559 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3968,14 +3968,14 @@ depd@~1.1.2: resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= -deprecated-react-native-prop-types@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-4.1.0.tgz#8ed03a64c21b7fbdd2d000957b6838d4f38d2c66" - integrity sha512-WfepZHmRbbdTvhcolb8aOKEvQdcmTMn5tKLbqbXmkBvjFjRVWAYqsXk/DBsV8TZxws8SdGHLuHaJrHSQUPRdfw== +deprecated-react-native-prop-types@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-4.2.3.tgz#0ef845c1a80ef1636bd09060e4cdf70f9727e5ad" + integrity sha512-2rLTiMKidIFFYpIVM69UnQKngLqQfL6I11Ch8wGSBftS18FUXda+o2we2950X+1dmbgps28niI3qwyH4eX3Z1g== dependencies: - "@react-native/normalize-colors" "*" - invariant "*" - prop-types "*" + "@react-native/normalize-colors" "<0.73.0" + invariant "^2.2.4" + prop-types "^15.8.1" deprecation@^2.0.0, deprecation@^2.3.1: version "2.3.1" @@ -5287,7 +5287,7 @@ interpret@^1.0.0: resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" integrity sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ= -invariant@*, invariant@^2.2.4: +invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -7392,7 +7392,7 @@ prompts@^2.0.1, prompts@^2.4.0: kleur "^3.0.3" sisteransi "^1.0.5" -prop-types@*, prop-types@^15.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== From 3a4d79e77525378de318f746a5f9f12b1d0b84fa Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Tue, 3 Oct 2023 13:24:09 -0700 Subject: [PATCH 8/8] Fix broken Loading/Refreshing indicator on Android Summary: The Loading.../Refreshing... indicator is currently broken on Android. The reason is related to D42599220 We used to have a Toast shown to users on Android as a fallback, but as the DevLoadingView is not always loaded as a module in the core package, this ends up in the banner never beign shown to the user (on RN Tester or template apps). Changelog: [Android] [Fixed] - Fix broken Loading/Refreshing indicator on Android Reviewed By: cipolleschi Differential Revision: D49876757 fbshipit-source-id: 400e002327ebca908e3e7a7f81c5066888ac4e9b --- .../main/java/com/facebook/react/shell/MainReactPackage.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.java index 5fa72a0ffd02b0..41e4a62c2fc1ce 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.java @@ -25,6 +25,7 @@ import com.facebook.react.modules.blob.FileReaderModule; import com.facebook.react.modules.camera.ImageStoreManager; import com.facebook.react.modules.clipboard.ClipboardModule; +import com.facebook.react.modules.devloading.DevLoadingModule; import com.facebook.react.modules.devtoolssettings.DevToolsSettingsManagerModule; import com.facebook.react.modules.dialog.DialogModule; import com.facebook.react.modules.fresco.FrescoModule; @@ -72,6 +73,7 @@ AppearanceModule.class, AppStateModule.class, BlobModule.class, + DevLoadingModule.class, FileReaderModule.class, ClipboardModule.class, DialogModule.class, @@ -113,6 +115,8 @@ public MainReactPackage(MainPackageConfig config) { return new AppStateModule(context); case BlobModule.NAME: return new BlobModule(context); + case DevLoadingModule.NAME: + return new DevLoadingModule(context); case FileReaderModule.NAME: return new FileReaderModule(context); case ClipboardModule.NAME: @@ -371,6 +375,7 @@ public ReactModuleInfoProvider getReactModuleInfoProvider() { AppearanceModule.class, AppStateModule.class, BlobModule.class, + DevLoadingModule.class, FileReaderModule.class, ClipboardModule.class, DialogModule.class,