From 99596ca52f2b31fa0e4b31cc8fea909004ad0fab Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 10 Jun 2021 17:11:19 +0200 Subject: [PATCH 01/22] Add bridge methods for React native crash logging --- .../Gutenberg/GutenbergViewController.swift | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index 0603c963138c..286f5f04f3e3 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -930,6 +930,12 @@ extension GutenbergViewController: GutenbergBridgeDelegate { handleMissingBlockAlertButtonPressed() } } + + func gutenbergDidLogSentryEnvelope(_ envelope: [String: Any]) { + DispatchQueue.main.async { + WordPressAppDelegate.crashLogging?.logEnvelope(envelope) + } + } } // MARK: - Suggestions implementation @@ -1038,6 +1044,18 @@ extension GutenbergViewController: GutenbergBridgeDataSource { ].compactMap { $0 } } + func attachScopeToSentryEvent(_ event: [String: Any]) -> [String: Any]? { + return WordPressAppDelegate.crashLogging?.attachScopeToEvent(event) + } + + func getSentryOptions() -> [String: Any]? { + return WordPressAppDelegate.crashLogging?.getOptionsDict() + } + + func shouldSendSentryEvent() -> Bool? { + return WordPressAppDelegate.crashLogging?.shouldSendEvent() + } + func gutenbergCapabilities() -> [Capabilities: Bool] { let isFreeWPCom = post.blog.isHostedAtWPcom && !post.blog.hasPaidPlan let isWPComSite = post.blog.isHostedAtWPcom || post.blog.isAtomic() From ed72263ad88ff392ab8e03035a210f7151b6f5df Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Tue, 15 Jun 2021 18:28:56 +0200 Subject: [PATCH 02/22] Autocorrect lint issues --- .../ViewRelated/Gutenberg/GutenbergViewController.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index 286f5f04f3e3..49cf64d7916b 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -930,7 +930,7 @@ extension GutenbergViewController: GutenbergBridgeDelegate { handleMissingBlockAlertButtonPressed() } } - + func gutenbergDidLogSentryEnvelope(_ envelope: [String: Any]) { DispatchQueue.main.async { WordPressAppDelegate.crashLogging?.logEnvelope(envelope) @@ -1047,15 +1047,15 @@ extension GutenbergViewController: GutenbergBridgeDataSource { func attachScopeToSentryEvent(_ event: [String: Any]) -> [String: Any]? { return WordPressAppDelegate.crashLogging?.attachScopeToEvent(event) } - + func getSentryOptions() -> [String: Any]? { return WordPressAppDelegate.crashLogging?.getOptionsDict() } - + func shouldSendSentryEvent() -> Bool? { return WordPressAppDelegate.crashLogging?.shouldSendEvent() } - + func gutenbergCapabilities() -> [Capabilities: Bool] { let isFreeWPCom = post.blog.isHostedAtWPcom && !post.blog.hasPaidPlan let isWPComSite = post.blog.isHostedAtWPcom || post.blog.isAtomic() From 2ef19201cd40767c7890fe674bac6a7705217ef0 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 16 Jun 2021 17:06:57 +0200 Subject: [PATCH 03/22] Add getSentryUser to Gutenberg view controller --- .../ViewRelated/Gutenberg/GutenbergViewController.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index 49cf64d7916b..88cec949b156 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -1052,6 +1052,10 @@ extension GutenbergViewController: GutenbergBridgeDataSource { return WordPressAppDelegate.crashLogging?.getOptionsDict() } + func getSentryUser() -> [String: Any]? { + return WordPressAppDelegate.crashLogging?.getSentryUserDict() + } + func shouldSendSentryEvent() -> Bool? { return WordPressAppDelegate.crashLogging?.shouldSendEvent() } From edd59e58a9941129205a3820c6f7c994cc257adf Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 16 Jun 2021 17:14:31 +0200 Subject: [PATCH 04/22] Add upload Gutenberg source maps lane to Fastfile --- fastlane/Fastfile | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1520eda1e5a1..72e2fe00e0a4 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -405,6 +405,9 @@ import "./ScreenshotFastfile" dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH], ) + # Upload Gutenberg source maps + upload_gutenberg_sourcemaps(internal: true) + download_url = Actions.lane_context[SharedValues::APPCENTER_DOWNLOAD_LINK] UI.message("Successfully built and uploaded installable build here: #{download_url}") install_url = "https://install.appcenter.ms/orgs/automattic/apps/WPiOS-One-Offs/" @@ -462,6 +465,9 @@ import "./ScreenshotFastfile" dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH], ) + # Upload Gutenberg source maps + upload_gutenberg_sourcemaps(internal: false) + end ##################################################################################### @@ -506,6 +512,9 @@ import "./ScreenshotFastfile" dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH] ) + # Upload Gutenberg source maps + upload_gutenberg_sourcemaps(internal: false) + if (options[:create_release]) archive_zip_path = File.join(PROJECT_ROOT_FOLDER, "WordPress.xarchive.zip") zip(path: lane_context[SharedValues::XCODEBUILD_ARCHIVE], output_path: archive_zip_path) @@ -664,6 +673,41 @@ import "./ScreenshotFastfile" ) end + ##################################################################################### + # upload_gutenberg_sourcemaps + # ----------------------------------------------------------------------------------- + # This lane uploads the Gutenberg source maps + # ----------------------------------------------------------------------------------- + # Usage: + # bundle exec fastlane upload_gutenberg_sourcemaps [internal:] + # + # Example: + # bundle exec fastlane upload_gutenberg_sourcemaps internal:true + ##################################################################################### + lane :upload_gutenberg_sourcemaps do | options | + build_version = ios_get_build_version(internal: options[:internal]) + + gutenberg_bundle = File.join(PROJECT_ROOT_FOLDER, "Pods/Gutenberg/bundle/ios") + sourcemaps_folder = File.join(gutenberg_bundle, "sourcemaps") + FileUtils.mkdir_p(sourcemaps_folder) + # Name of bundle file must be set to main.jsbundle + FileUtils.cp(File.join(gutenberg_bundle, 'App.js'), File.join(sourcemaps_folder, 'main.jsbundle')) + FileUtils.cp(File.join(gutenberg_bundle, 'App.js.map'), File.join(sourcemaps_folder, 'main.jsbundle.map')) + + sentry_upload_sourcemap( + auth_token: get_required_env("SENTRY_AUTH_TOKEN"), + org_slug: 'a8c', + project_slug: 'wordpress-ios', + version: build_version, + dist: build_version, + rewrite: true, + strip_common_prefix: true, + sourcemap: sourcemaps_folder + ) + + FileUtils.rm_rf(sourcemaps_folder) + end + ######################################################################## # Configure Lanes ######################################################################## From 23d2a62c2d324ddfaede5b7e56868dfdf50f5c87 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 17 Jun 2021 13:25:52 +0200 Subject: [PATCH 05/22] Update Tracks ref --- Podfile | 4 +- Podfile.lock | 183 +++++++++++++++++++++++++-------------------------- 2 files changed, 90 insertions(+), 97 deletions(-) diff --git a/Podfile b/Podfile index f31bd1d2e57a..892f82b94621 100644 --- a/Podfile +++ b/Podfile @@ -190,9 +190,9 @@ abstract_target 'Apps' do # Production - pod 'Automattic-Tracks-iOS', '~> 0.8.5' + #pod 'Automattic-Tracks-iOS', '~> 0.8.5' # While in PR - # pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :branch => '' + pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :branch => 'crash-logging-hybrid-sdk-helpers' # Local Development #pod 'Automattic-Tracks-iOS', :path => '~/Projects/Automattic-Tracks-iOS' diff --git a/Podfile.lock b/Podfile.lock index f82bb11d8f1c..412bc93ea70b 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -438,19 +438,19 @@ DEPENDENCIES: - AMScrollingNavbar (= 5.6.0) - AppCenter (= 4.1.1) - AppCenter/Distribute (= 4.1.1) - - Automattic-Tracks-iOS (~> 0.8.5) + - Automattic-Tracks-iOS (from `https://github.com/Automattic/Automattic-Tracks-iOS.git`, branch `crash-logging-hybrid-sdk-helpers`) - Charts (~> 3.2.2) - CocoaLumberjack (~> 3.0) - CropViewController (= 2.5.3) - Down (~> 0.6.6) - - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBLazyVector.podspec.json`) - - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBReactNativeSpec.podspec.json`) - - Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Folly.podspec.json`) + - FBLazyVector (from `../gutenberg-mobile/third-party-podspecs/FBLazyVector.podspec.json`) + - FBReactNativeSpec (from `../gutenberg-mobile/third-party-podspecs/FBReactNativeSpec.podspec.json`) + - Folly (from `../gutenberg-mobile/third-party-podspecs/Folly.podspec.json`) - FSInteractiveMap (from `https://github.com/wordpress-mobile/FSInteractiveMap.git`, tag `0.2.0`) - Gifu (= 3.2.0) - - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/glog.podspec.json`) + - glog (from `../gutenberg-mobile/third-party-podspecs/glog.podspec.json`) - Gridicons (~> 1.1.0) - - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, tag `v1.55.0-alpha1`) + - Gutenberg (from `../gutenberg-mobile`) - JTAppleCalendar (~> 8.0.2) - Kanvas (~> 1.2.7) - MediaEditor (~> 1.2.1) @@ -460,41 +460,41 @@ DEPENDENCIES: - "NSURL+IDN (~> 0.4)" - OCMock (~> 3.4.3) - OHHTTPStubs/Swift (~> 9.1.0) - - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTRequired.podspec.json`) - - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTTypeSafety.podspec.json`) + - RCTRequired (from `../gutenberg-mobile/third-party-podspecs/RCTRequired.podspec.json`) + - RCTTypeSafety (from `../gutenberg-mobile/third-party-podspecs/RCTTypeSafety.podspec.json`) - Reachability (= 3.2) - - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React.podspec.json`) - - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-Core.podspec.json`) - - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-CoreModules.podspec.json`) - - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-cxxreact.podspec.json`) - - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsi.podspec.json`) - - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsiexecutor.podspec.json`) - - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsinspector.podspec.json`) - - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-blur.podspec.json`) - - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-get-random-values.podspec.json`) - - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) - - react-native-linear-gradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-linear-gradient.podspec.json`) - - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area.podspec.json`) - - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area-context.podspec.json`) - - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-slider.podspec.json`) - - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-video.podspec.json`) - - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTActionSheet.podspec.json`) - - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTAnimation.podspec.json`) - - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTBlob.podspec.json`) - - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTImage.podspec.json`) - - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTLinking.podspec.json`) - - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTNetwork.podspec.json`) - - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTSettings.podspec.json`) - - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTText.podspec.json`) - - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTVibration.podspec.json`) - - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactCommon.podspec.json`) - - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactNativeDarkMode.podspec.json`) - - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNCMaskedView.podspec.json`) - - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNGestureHandler.podspec.json`) - - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNReanimated.podspec.json`) - - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNScreens.podspec.json`) - - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNSVG.podspec.json`) - - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, tag `v1.55.0-alpha1`) + - React (from `../gutenberg-mobile/third-party-podspecs/React.podspec.json`) + - React-Core (from `../gutenberg-mobile/third-party-podspecs/React-Core.podspec.json`) + - React-CoreModules (from `../gutenberg-mobile/third-party-podspecs/React-CoreModules.podspec.json`) + - React-cxxreact (from `../gutenberg-mobile/third-party-podspecs/React-cxxreact.podspec.json`) + - React-jsi (from `../gutenberg-mobile/third-party-podspecs/React-jsi.podspec.json`) + - React-jsiexecutor (from `../gutenberg-mobile/third-party-podspecs/React-jsiexecutor.podspec.json`) + - React-jsinspector (from `../gutenberg-mobile/third-party-podspecs/React-jsinspector.podspec.json`) + - react-native-blur (from `../gutenberg-mobile/third-party-podspecs/react-native-blur.podspec.json`) + - react-native-get-random-values (from `../gutenberg-mobile/third-party-podspecs/react-native-get-random-values.podspec.json`) + - react-native-keyboard-aware-scroll-view (from `../gutenberg-mobile/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) + - react-native-linear-gradient (from `../gutenberg-mobile/third-party-podspecs/react-native-linear-gradient.podspec.json`) + - react-native-safe-area (from `../gutenberg-mobile/third-party-podspecs/react-native-safe-area.podspec.json`) + - react-native-safe-area-context (from `../gutenberg-mobile/third-party-podspecs/react-native-safe-area-context.podspec.json`) + - react-native-slider (from `../gutenberg-mobile/third-party-podspecs/react-native-slider.podspec.json`) + - react-native-video (from `../gutenberg-mobile/third-party-podspecs/react-native-video.podspec.json`) + - React-RCTActionSheet (from `../gutenberg-mobile/third-party-podspecs/React-RCTActionSheet.podspec.json`) + - React-RCTAnimation (from `../gutenberg-mobile/third-party-podspecs/React-RCTAnimation.podspec.json`) + - React-RCTBlob (from `../gutenberg-mobile/third-party-podspecs/React-RCTBlob.podspec.json`) + - React-RCTImage (from `../gutenberg-mobile/third-party-podspecs/React-RCTImage.podspec.json`) + - React-RCTLinking (from `../gutenberg-mobile/third-party-podspecs/React-RCTLinking.podspec.json`) + - React-RCTNetwork (from `../gutenberg-mobile/third-party-podspecs/React-RCTNetwork.podspec.json`) + - React-RCTSettings (from `../gutenberg-mobile/third-party-podspecs/React-RCTSettings.podspec.json`) + - React-RCTText (from `../gutenberg-mobile/third-party-podspecs/React-RCTText.podspec.json`) + - React-RCTVibration (from `../gutenberg-mobile/third-party-podspecs/React-RCTVibration.podspec.json`) + - ReactCommon (from `../gutenberg-mobile/third-party-podspecs/ReactCommon.podspec.json`) + - ReactNativeDarkMode (from `../gutenberg-mobile/third-party-podspecs/ReactNativeDarkMode.podspec.json`) + - RNCMaskedView (from `../gutenberg-mobile/third-party-podspecs/RNCMaskedView.podspec.json`) + - RNGestureHandler (from `../gutenberg-mobile/third-party-podspecs/RNGestureHandler.podspec.json`) + - RNReanimated (from `../gutenberg-mobile/third-party-podspecs/RNReanimated.podspec.json`) + - RNScreens (from `../gutenberg-mobile/third-party-podspecs/RNScreens.podspec.json`) + - RNSVG (from `../gutenberg-mobile/third-party-podspecs/RNSVG.podspec.json`) + - RNTAztecView (from `../gutenberg-mobile`) - Starscream (= 3.0.6) - SVProgressHUD (= 2.2.5) - WordPress-Editor-iOS (~> 1.19.4) @@ -504,7 +504,7 @@ DEPENDENCIES: - WordPressShared (~> 1.16.0) - WordPressUI (~> 1.12.0) - WPMediaPicker (~> 1.7.2) - - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Yoga.podspec.json`) + - Yoga (from `../gutenberg-mobile/third-party-podspecs/Yoga.podspec.json`) - ZendeskSupportSDK (= 5.2.0) - ZIPFoundation (~> 0.9.8) @@ -520,7 +520,6 @@ SPEC REPOS: - AMScrollingNavbar - AppAuth - AppCenter - - Automattic-Tracks-iOS - boost-for-react-native - Charts - CocoaLumberjack @@ -566,106 +565,100 @@ SPEC REPOS: - ZIPFoundation EXTERNAL SOURCES: + Automattic-Tracks-iOS: + :branch: crash-logging-hybrid-sdk-helpers + :git: https://github.com/Automattic/Automattic-Tracks-iOS.git FBLazyVector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBLazyVector.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/FBLazyVector.podspec.json" FBReactNativeSpec: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBReactNativeSpec.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/FBReactNativeSpec.podspec.json" Folly: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Folly.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/Folly.podspec.json" FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 glog: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/glog.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/glog.podspec.json" Gutenberg: - :git: https://github.com/wordpress-mobile/gutenberg-mobile.git - :submodules: true - :tag: v1.55.0-alpha1 + :path: "../gutenberg-mobile" RCTRequired: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTRequired.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RCTRequired.podspec.json" RCTTypeSafety: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTTypeSafety.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RCTTypeSafety.podspec.json" React: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React.podspec.json" React-Core: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-Core.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-Core.podspec.json" React-CoreModules: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-CoreModules.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-CoreModules.podspec.json" React-cxxreact: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-cxxreact.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-cxxreact.podspec.json" React-jsi: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsi.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-jsi.podspec.json" React-jsiexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsiexecutor.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-jsiexecutor.podspec.json" React-jsinspector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsinspector.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-jsinspector.podspec.json" react-native-blur: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-blur.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-blur.podspec.json" react-native-get-random-values: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-get-random-values.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-get-random-values.podspec.json" react-native-keyboard-aware-scroll-view: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json" react-native-linear-gradient: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-linear-gradient.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-linear-gradient.podspec.json" react-native-safe-area: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-safe-area.podspec.json" react-native-safe-area-context: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area-context.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-safe-area-context.podspec.json" react-native-slider: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-slider.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-slider.podspec.json" react-native-video: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-video.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-video.podspec.json" React-RCTActionSheet: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTActionSheet.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTActionSheet.podspec.json" React-RCTAnimation: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTAnimation.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTAnimation.podspec.json" React-RCTBlob: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTBlob.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTBlob.podspec.json" React-RCTImage: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTImage.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTImage.podspec.json" React-RCTLinking: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTLinking.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTLinking.podspec.json" React-RCTNetwork: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTNetwork.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTNetwork.podspec.json" React-RCTSettings: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTSettings.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTSettings.podspec.json" React-RCTText: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTText.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTText.podspec.json" React-RCTVibration: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTVibration.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTVibration.podspec.json" ReactCommon: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactCommon.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/ReactCommon.podspec.json" ReactNativeDarkMode: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactNativeDarkMode.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/ReactNativeDarkMode.podspec.json" RNCMaskedView: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNCMaskedView.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RNCMaskedView.podspec.json" RNGestureHandler: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNGestureHandler.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RNGestureHandler.podspec.json" RNReanimated: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNReanimated.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RNReanimated.podspec.json" RNScreens: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNScreens.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RNScreens.podspec.json" RNSVG: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNSVG.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/RNSVG.podspec.json" RNTAztecView: - :git: https://github.com/wordpress-mobile/gutenberg-mobile.git - :submodules: true - :tag: v1.55.0-alpha1 + :path: "../gutenberg-mobile" Yoga: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Yoga.podspec.json + :podspec: "../gutenberg-mobile/third-party-podspecs/Yoga.podspec.json" CHECKOUT OPTIONS: + Automattic-Tracks-iOS: + :commit: 4bb9e6058d3ce2205050ff38e8a7175467180aac + :git: https://github.com/Automattic/Automattic-Tracks-iOS.git FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 - Gutenberg: - :git: https://github.com/wordpress-mobile/gutenberg-mobile.git - :submodules: true - :tag: v1.55.0-alpha1 - RNTAztecView: - :git: https://github.com/wordpress-mobile/gutenberg-mobile.git - :submodules: true - :tag: v1.55.0-alpha1 SPEC CHECKSUMS: 1PasswordExtension: f97cc80ae58053c331b2b6dc8843ba7103b33794 @@ -763,6 +756,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: e100a7a0a1bb5d7d43abbde3338727d985a4986d ZIPFoundation: e27423c004a5a1410c15933407747374e7c6cb6e -PODFILE CHECKSUM: 4e0d122d1f71597e7f24b5221e94653023ba5757 +PODFILE CHECKSUM: 9f0bae0eeee4e7132f99e222837c1df1906cfbb4 COCOAPODS: 1.10.1 From 4d40f39a975bcb881cfa0353f86dfaf393739e83 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 17 Jun 2021 17:40:37 +0200 Subject: [PATCH 06/22] Update Podfile.lock --- Podfile.lock | 172 +++++++++++++++++++++++++++------------------------ 1 file changed, 92 insertions(+), 80 deletions(-) diff --git a/Podfile.lock b/Podfile.lock index 412bc93ea70b..65bd4360d0c8 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -443,14 +443,14 @@ DEPENDENCIES: - CocoaLumberjack (~> 3.0) - CropViewController (= 2.5.3) - Down (~> 0.6.6) - - FBLazyVector (from `../gutenberg-mobile/third-party-podspecs/FBLazyVector.podspec.json`) - - FBReactNativeSpec (from `../gutenberg-mobile/third-party-podspecs/FBReactNativeSpec.podspec.json`) - - Folly (from `../gutenberg-mobile/third-party-podspecs/Folly.podspec.json`) + - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBLazyVector.podspec.json`) + - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBReactNativeSpec.podspec.json`) + - Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Folly.podspec.json`) - FSInteractiveMap (from `https://github.com/wordpress-mobile/FSInteractiveMap.git`, tag `0.2.0`) - Gifu (= 3.2.0) - - glog (from `../gutenberg-mobile/third-party-podspecs/glog.podspec.json`) + - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/glog.podspec.json`) - Gridicons (~> 1.1.0) - - Gutenberg (from `../gutenberg-mobile`) + - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, tag `v1.55.0-alpha1`) - JTAppleCalendar (~> 8.0.2) - Kanvas (~> 1.2.7) - MediaEditor (~> 1.2.1) @@ -460,41 +460,41 @@ DEPENDENCIES: - "NSURL+IDN (~> 0.4)" - OCMock (~> 3.4.3) - OHHTTPStubs/Swift (~> 9.1.0) - - RCTRequired (from `../gutenberg-mobile/third-party-podspecs/RCTRequired.podspec.json`) - - RCTTypeSafety (from `../gutenberg-mobile/third-party-podspecs/RCTTypeSafety.podspec.json`) + - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTRequired.podspec.json`) + - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTTypeSafety.podspec.json`) - Reachability (= 3.2) - - React (from `../gutenberg-mobile/third-party-podspecs/React.podspec.json`) - - React-Core (from `../gutenberg-mobile/third-party-podspecs/React-Core.podspec.json`) - - React-CoreModules (from `../gutenberg-mobile/third-party-podspecs/React-CoreModules.podspec.json`) - - React-cxxreact (from `../gutenberg-mobile/third-party-podspecs/React-cxxreact.podspec.json`) - - React-jsi (from `../gutenberg-mobile/third-party-podspecs/React-jsi.podspec.json`) - - React-jsiexecutor (from `../gutenberg-mobile/third-party-podspecs/React-jsiexecutor.podspec.json`) - - React-jsinspector (from `../gutenberg-mobile/third-party-podspecs/React-jsinspector.podspec.json`) - - react-native-blur (from `../gutenberg-mobile/third-party-podspecs/react-native-blur.podspec.json`) - - react-native-get-random-values (from `../gutenberg-mobile/third-party-podspecs/react-native-get-random-values.podspec.json`) - - react-native-keyboard-aware-scroll-view (from `../gutenberg-mobile/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) - - react-native-linear-gradient (from `../gutenberg-mobile/third-party-podspecs/react-native-linear-gradient.podspec.json`) - - react-native-safe-area (from `../gutenberg-mobile/third-party-podspecs/react-native-safe-area.podspec.json`) - - react-native-safe-area-context (from `../gutenberg-mobile/third-party-podspecs/react-native-safe-area-context.podspec.json`) - - react-native-slider (from `../gutenberg-mobile/third-party-podspecs/react-native-slider.podspec.json`) - - react-native-video (from `../gutenberg-mobile/third-party-podspecs/react-native-video.podspec.json`) - - React-RCTActionSheet (from `../gutenberg-mobile/third-party-podspecs/React-RCTActionSheet.podspec.json`) - - React-RCTAnimation (from `../gutenberg-mobile/third-party-podspecs/React-RCTAnimation.podspec.json`) - - React-RCTBlob (from `../gutenberg-mobile/third-party-podspecs/React-RCTBlob.podspec.json`) - - React-RCTImage (from `../gutenberg-mobile/third-party-podspecs/React-RCTImage.podspec.json`) - - React-RCTLinking (from `../gutenberg-mobile/third-party-podspecs/React-RCTLinking.podspec.json`) - - React-RCTNetwork (from `../gutenberg-mobile/third-party-podspecs/React-RCTNetwork.podspec.json`) - - React-RCTSettings (from `../gutenberg-mobile/third-party-podspecs/React-RCTSettings.podspec.json`) - - React-RCTText (from `../gutenberg-mobile/third-party-podspecs/React-RCTText.podspec.json`) - - React-RCTVibration (from `../gutenberg-mobile/third-party-podspecs/React-RCTVibration.podspec.json`) - - ReactCommon (from `../gutenberg-mobile/third-party-podspecs/ReactCommon.podspec.json`) - - ReactNativeDarkMode (from `../gutenberg-mobile/third-party-podspecs/ReactNativeDarkMode.podspec.json`) - - RNCMaskedView (from `../gutenberg-mobile/third-party-podspecs/RNCMaskedView.podspec.json`) - - RNGestureHandler (from `../gutenberg-mobile/third-party-podspecs/RNGestureHandler.podspec.json`) - - RNReanimated (from `../gutenberg-mobile/third-party-podspecs/RNReanimated.podspec.json`) - - RNScreens (from `../gutenberg-mobile/third-party-podspecs/RNScreens.podspec.json`) - - RNSVG (from `../gutenberg-mobile/third-party-podspecs/RNSVG.podspec.json`) - - RNTAztecView (from `../gutenberg-mobile`) + - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React.podspec.json`) + - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-Core.podspec.json`) + - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-CoreModules.podspec.json`) + - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-cxxreact.podspec.json`) + - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsi.podspec.json`) + - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsiexecutor.podspec.json`) + - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsinspector.podspec.json`) + - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-blur.podspec.json`) + - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-get-random-values.podspec.json`) + - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) + - react-native-linear-gradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-linear-gradient.podspec.json`) + - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area.podspec.json`) + - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area-context.podspec.json`) + - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-slider.podspec.json`) + - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-video.podspec.json`) + - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTActionSheet.podspec.json`) + - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTAnimation.podspec.json`) + - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTBlob.podspec.json`) + - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTImage.podspec.json`) + - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTLinking.podspec.json`) + - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTNetwork.podspec.json`) + - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTSettings.podspec.json`) + - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTText.podspec.json`) + - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTVibration.podspec.json`) + - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactCommon.podspec.json`) + - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactNativeDarkMode.podspec.json`) + - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNCMaskedView.podspec.json`) + - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNGestureHandler.podspec.json`) + - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNReanimated.podspec.json`) + - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNScreens.podspec.json`) + - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNSVG.podspec.json`) + - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, tag `v1.55.0-alpha1`) - Starscream (= 3.0.6) - SVProgressHUD (= 2.2.5) - WordPress-Editor-iOS (~> 1.19.4) @@ -504,7 +504,7 @@ DEPENDENCIES: - WordPressShared (~> 1.16.0) - WordPressUI (~> 1.12.0) - WPMediaPicker (~> 1.7.2) - - Yoga (from `../gutenberg-mobile/third-party-podspecs/Yoga.podspec.json`) + - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Yoga.podspec.json`) - ZendeskSupportSDK (= 5.2.0) - ZIPFoundation (~> 0.9.8) @@ -569,88 +569,92 @@ EXTERNAL SOURCES: :branch: crash-logging-hybrid-sdk-helpers :git: https://github.com/Automattic/Automattic-Tracks-iOS.git FBLazyVector: - :podspec: "../gutenberg-mobile/third-party-podspecs/FBLazyVector.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBLazyVector.podspec.json FBReactNativeSpec: - :podspec: "../gutenberg-mobile/third-party-podspecs/FBReactNativeSpec.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBReactNativeSpec.podspec.json Folly: - :podspec: "../gutenberg-mobile/third-party-podspecs/Folly.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Folly.podspec.json FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 glog: - :podspec: "../gutenberg-mobile/third-party-podspecs/glog.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/glog.podspec.json Gutenberg: - :path: "../gutenberg-mobile" + :git: https://github.com/wordpress-mobile/gutenberg-mobile.git + :submodules: true + :tag: v1.55.0-alpha1 RCTRequired: - :podspec: "../gutenberg-mobile/third-party-podspecs/RCTRequired.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTRequired.podspec.json RCTTypeSafety: - :podspec: "../gutenberg-mobile/third-party-podspecs/RCTTypeSafety.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTTypeSafety.podspec.json React: - :podspec: "../gutenberg-mobile/third-party-podspecs/React.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React.podspec.json React-Core: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-Core.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-Core.podspec.json React-CoreModules: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-CoreModules.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-CoreModules.podspec.json React-cxxreact: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-cxxreact.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-cxxreact.podspec.json React-jsi: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-jsi.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsi.podspec.json React-jsiexecutor: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-jsiexecutor.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsiexecutor.podspec.json React-jsinspector: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-jsinspector.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsinspector.podspec.json react-native-blur: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-blur.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-blur.podspec.json react-native-get-random-values: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-get-random-values.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-get-random-values.podspec.json react-native-keyboard-aware-scroll-view: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json react-native-linear-gradient: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-linear-gradient.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-linear-gradient.podspec.json react-native-safe-area: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-safe-area.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area.podspec.json react-native-safe-area-context: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-safe-area-context.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area-context.podspec.json react-native-slider: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-slider.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-slider.podspec.json react-native-video: - :podspec: "../gutenberg-mobile/third-party-podspecs/react-native-video.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-video.podspec.json React-RCTActionSheet: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTActionSheet.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTActionSheet.podspec.json React-RCTAnimation: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTAnimation.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTAnimation.podspec.json React-RCTBlob: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTBlob.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTBlob.podspec.json React-RCTImage: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTImage.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTImage.podspec.json React-RCTLinking: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTLinking.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTLinking.podspec.json React-RCTNetwork: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTNetwork.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTNetwork.podspec.json React-RCTSettings: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTSettings.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTSettings.podspec.json React-RCTText: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTText.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTText.podspec.json React-RCTVibration: - :podspec: "../gutenberg-mobile/third-party-podspecs/React-RCTVibration.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTVibration.podspec.json ReactCommon: - :podspec: "../gutenberg-mobile/third-party-podspecs/ReactCommon.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactCommon.podspec.json ReactNativeDarkMode: - :podspec: "../gutenberg-mobile/third-party-podspecs/ReactNativeDarkMode.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactNativeDarkMode.podspec.json RNCMaskedView: - :podspec: "../gutenberg-mobile/third-party-podspecs/RNCMaskedView.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNCMaskedView.podspec.json RNGestureHandler: - :podspec: "../gutenberg-mobile/third-party-podspecs/RNGestureHandler.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNGestureHandler.podspec.json RNReanimated: - :podspec: "../gutenberg-mobile/third-party-podspecs/RNReanimated.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNReanimated.podspec.json RNScreens: - :podspec: "../gutenberg-mobile/third-party-podspecs/RNScreens.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNScreens.podspec.json RNSVG: - :podspec: "../gutenberg-mobile/third-party-podspecs/RNSVG.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNSVG.podspec.json RNTAztecView: - :path: "../gutenberg-mobile" + :git: https://github.com/wordpress-mobile/gutenberg-mobile.git + :submodules: true + :tag: v1.55.0-alpha1 Yoga: - :podspec: "../gutenberg-mobile/third-party-podspecs/Yoga.podspec.json" + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Yoga.podspec.json CHECKOUT OPTIONS: Automattic-Tracks-iOS: @@ -659,6 +663,14 @@ CHECKOUT OPTIONS: FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 + Gutenberg: + :git: https://github.com/wordpress-mobile/gutenberg-mobile.git + :submodules: true + :tag: v1.55.0-alpha1 + RNTAztecView: + :git: https://github.com/wordpress-mobile/gutenberg-mobile.git + :submodules: true + :tag: v1.55.0-alpha1 SPEC CHECKSUMS: 1PasswordExtension: f97cc80ae58053c331b2b6dc8843ba7103b33794 From 6440d98d2832c55a94075c452dcff7ddf10b66f1 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 17 Jun 2021 18:13:58 +0200 Subject: [PATCH 07/22] Update Gutenberg Mobile ref --- Podfile | 2 +- Podfile.lock | 166 +++++++++++++++++++++++++-------------------------- 2 files changed, 84 insertions(+), 84 deletions(-) diff --git a/Podfile b/Podfile index 892f82b94621..81b9fd6c48ef 100644 --- a/Podfile +++ b/Podfile @@ -161,7 +161,7 @@ abstract_target 'Apps' do ## Gutenberg (React Native) ## ===================== ## - gutenberg :tag => 'v1.55.0-alpha1' + gutenberg :commit => 'beb2691e4cbaab080591e8c55e2e92dab64f2ab1' ## Third party libraries ## ===================== diff --git a/Podfile.lock b/Podfile.lock index 65bd4360d0c8..2a9955aeed03 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -443,14 +443,14 @@ DEPENDENCIES: - CocoaLumberjack (~> 3.0) - CropViewController (= 2.5.3) - Down (~> 0.6.6) - - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBLazyVector.podspec.json`) - - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBReactNativeSpec.podspec.json`) - - Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Folly.podspec.json`) + - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/FBLazyVector.podspec.json`) + - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/FBReactNativeSpec.podspec.json`) + - Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/Folly.podspec.json`) - FSInteractiveMap (from `https://github.com/wordpress-mobile/FSInteractiveMap.git`, tag `0.2.0`) - Gifu (= 3.2.0) - - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/glog.podspec.json`) + - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/glog.podspec.json`) - Gridicons (~> 1.1.0) - - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, tag `v1.55.0-alpha1`) + - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `beb2691e4cbaab080591e8c55e2e92dab64f2ab1`) - JTAppleCalendar (~> 8.0.2) - Kanvas (~> 1.2.7) - MediaEditor (~> 1.2.1) @@ -460,41 +460,41 @@ DEPENDENCIES: - "NSURL+IDN (~> 0.4)" - OCMock (~> 3.4.3) - OHHTTPStubs/Swift (~> 9.1.0) - - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTRequired.podspec.json`) - - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTTypeSafety.podspec.json`) + - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RCTRequired.podspec.json`) + - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RCTTypeSafety.podspec.json`) - Reachability (= 3.2) - - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React.podspec.json`) - - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-Core.podspec.json`) - - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-CoreModules.podspec.json`) - - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-cxxreact.podspec.json`) - - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsi.podspec.json`) - - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsiexecutor.podspec.json`) - - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsinspector.podspec.json`) - - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-blur.podspec.json`) - - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-get-random-values.podspec.json`) - - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) - - react-native-linear-gradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-linear-gradient.podspec.json`) - - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area.podspec.json`) - - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area-context.podspec.json`) - - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-slider.podspec.json`) - - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-video.podspec.json`) - - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTActionSheet.podspec.json`) - - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTAnimation.podspec.json`) - - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTBlob.podspec.json`) - - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTImage.podspec.json`) - - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTLinking.podspec.json`) - - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTNetwork.podspec.json`) - - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTSettings.podspec.json`) - - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTText.podspec.json`) - - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTVibration.podspec.json`) - - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactCommon.podspec.json`) - - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactNativeDarkMode.podspec.json`) - - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNCMaskedView.podspec.json`) - - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNGestureHandler.podspec.json`) - - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNReanimated.podspec.json`) - - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNScreens.podspec.json`) - - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNSVG.podspec.json`) - - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, tag `v1.55.0-alpha1`) + - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React.podspec.json`) + - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-Core.podspec.json`) + - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-CoreModules.podspec.json`) + - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-cxxreact.podspec.json`) + - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-jsi.podspec.json`) + - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-jsiexecutor.podspec.json`) + - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-jsinspector.podspec.json`) + - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-blur.podspec.json`) + - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-get-random-values.podspec.json`) + - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) + - react-native-linear-gradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-linear-gradient.podspec.json`) + - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-safe-area.podspec.json`) + - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-safe-area-context.podspec.json`) + - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-slider.podspec.json`) + - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-video.podspec.json`) + - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTActionSheet.podspec.json`) + - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTAnimation.podspec.json`) + - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTBlob.podspec.json`) + - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTImage.podspec.json`) + - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTLinking.podspec.json`) + - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTNetwork.podspec.json`) + - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTSettings.podspec.json`) + - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTText.podspec.json`) + - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTVibration.podspec.json`) + - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/ReactCommon.podspec.json`) + - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/ReactNativeDarkMode.podspec.json`) + - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNCMaskedView.podspec.json`) + - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNGestureHandler.podspec.json`) + - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNReanimated.podspec.json`) + - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNScreens.podspec.json`) + - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNSVG.podspec.json`) + - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `beb2691e4cbaab080591e8c55e2e92dab64f2ab1`) - Starscream (= 3.0.6) - SVProgressHUD (= 2.2.5) - WordPress-Editor-iOS (~> 1.19.4) @@ -504,7 +504,7 @@ DEPENDENCIES: - WordPressShared (~> 1.16.0) - WordPressUI (~> 1.12.0) - WPMediaPicker (~> 1.7.2) - - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Yoga.podspec.json`) + - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/Yoga.podspec.json`) - ZendeskSupportSDK (= 5.2.0) - ZIPFoundation (~> 0.9.8) @@ -569,92 +569,92 @@ EXTERNAL SOURCES: :branch: crash-logging-hybrid-sdk-helpers :git: https://github.com/Automattic/Automattic-Tracks-iOS.git FBLazyVector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBLazyVector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/FBLazyVector.podspec.json FBReactNativeSpec: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/FBReactNativeSpec.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/FBReactNativeSpec.podspec.json Folly: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Folly.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/Folly.podspec.json FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 glog: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/glog.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/glog.podspec.json Gutenberg: + :commit: beb2691e4cbaab080591e8c55e2e92dab64f2ab1 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true - :tag: v1.55.0-alpha1 RCTRequired: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTRequired.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RCTRequired.podspec.json RCTTypeSafety: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RCTTypeSafety.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RCTTypeSafety.podspec.json React: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React.podspec.json React-Core: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-Core.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-Core.podspec.json React-CoreModules: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-CoreModules.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-CoreModules.podspec.json React-cxxreact: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-cxxreact.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-cxxreact.podspec.json React-jsi: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsi.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-jsi.podspec.json React-jsiexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsiexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-jsiexecutor.podspec.json React-jsinspector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-jsinspector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-jsinspector.podspec.json react-native-blur: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-blur.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-blur.podspec.json react-native-get-random-values: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-get-random-values.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-get-random-values.podspec.json react-native-keyboard-aware-scroll-view: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json react-native-linear-gradient: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-linear-gradient.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-linear-gradient.podspec.json react-native-safe-area: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-safe-area.podspec.json react-native-safe-area-context: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-safe-area-context.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-safe-area-context.podspec.json react-native-slider: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-slider.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-slider.podspec.json react-native-video: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/react-native-video.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/react-native-video.podspec.json React-RCTActionSheet: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTActionSheet.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTActionSheet.podspec.json React-RCTAnimation: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTAnimation.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTAnimation.podspec.json React-RCTBlob: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTBlob.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTBlob.podspec.json React-RCTImage: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTImage.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTImage.podspec.json React-RCTLinking: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTLinking.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTLinking.podspec.json React-RCTNetwork: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTNetwork.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTNetwork.podspec.json React-RCTSettings: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTSettings.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTSettings.podspec.json React-RCTText: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTText.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTText.podspec.json React-RCTVibration: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/React-RCTVibration.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/React-RCTVibration.podspec.json ReactCommon: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactCommon.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/ReactCommon.podspec.json ReactNativeDarkMode: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/ReactNativeDarkMode.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/ReactNativeDarkMode.podspec.json RNCMaskedView: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNCMaskedView.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNCMaskedView.podspec.json RNGestureHandler: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNGestureHandler.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNGestureHandler.podspec.json RNReanimated: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNReanimated.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNReanimated.podspec.json RNScreens: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNScreens.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNScreens.podspec.json RNSVG: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/RNSVG.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/RNSVG.podspec.json RNTAztecView: + :commit: beb2691e4cbaab080591e8c55e2e92dab64f2ab1 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true - :tag: v1.55.0-alpha1 Yoga: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.55.0-alpha1/third-party-podspecs/Yoga.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/beb2691e4cbaab080591e8c55e2e92dab64f2ab1/third-party-podspecs/Yoga.podspec.json CHECKOUT OPTIONS: Automattic-Tracks-iOS: @@ -664,13 +664,13 @@ CHECKOUT OPTIONS: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 Gutenberg: + :commit: beb2691e4cbaab080591e8c55e2e92dab64f2ab1 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true - :tag: v1.55.0-alpha1 RNTAztecView: + :commit: beb2691e4cbaab080591e8c55e2e92dab64f2ab1 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true - :tag: v1.55.0-alpha1 SPEC CHECKSUMS: 1PasswordExtension: f97cc80ae58053c331b2b6dc8843ba7103b33794 @@ -768,6 +768,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: e100a7a0a1bb5d7d43abbde3338727d985a4986d ZIPFoundation: e27423c004a5a1410c15933407747374e7c6cb6e -PODFILE CHECKSUM: 9f0bae0eeee4e7132f99e222837c1df1906cfbb4 +PODFILE CHECKSUM: 941dddc37d9180f606a2e05ed58fbfb7b90c06bb COCOAPODS: 1.10.1 From 1240e89e2fc73db163b58433c268642ecb5a7108 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 23 Jun 2021 16:15:18 +0200 Subject: [PATCH 08/22] Change internal value in build_and_upload_internal lane --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 72e2fe00e0a4..fed9c7cde35d 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -466,7 +466,7 @@ import "./ScreenshotFastfile" ) # Upload Gutenberg source maps - upload_gutenberg_sourcemaps(internal: false) + upload_gutenberg_sourcemaps(internal: true) end From 70aa63db13d1a7bf08ea8b7909986304579ef63c Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 24 Jun 2021 11:41:20 +0200 Subject: [PATCH 09/22] Update Gutenberg Mobile ref --- Podfile | 2 +- Podfile.lock | 186 +++++++++++++++++++++++++-------------------------- 2 files changed, 94 insertions(+), 94 deletions(-) diff --git a/Podfile b/Podfile index c2afd7d19ab5..eb5afd5f6df2 100644 --- a/Podfile +++ b/Podfile @@ -166,7 +166,7 @@ abstract_target 'Apps' do ## Gutenberg (React Native) ## ===================== ## - gutenberg :commit => '3ec0b6e777fcc02b604d9aa56a88650f4228c502' + gutenberg :commit => 'ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3' ## Third party libraries ## ===================== diff --git a/Podfile.lock b/Podfile.lock index 46faa4b7cd61..bbd0e1d4ce5d 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -62,7 +62,7 @@ PODS: - AppAuth/Core (~> 1.4) - GTMSessionFetcher/Core (~> 1.5) - GTMSessionFetcher/Core (1.5.0) - - Gutenberg (1.55.1): + - Gutenberg (1.55.2): - React (= 0.64.0) - React-CoreModules (= 0.64.0) - React-RCTImage (= 0.64.0) @@ -427,7 +427,7 @@ PODS: - React-Core - RNSVG (9.13.6-gb): - React-Core - - RNTAztecView (1.55.1): + - RNTAztecView (1.55.2): - React-Core - WordPress-Aztec-iOS (~> 1.19.4) - Sentry (6.2.1): @@ -490,18 +490,18 @@ DEPENDENCIES: - AppCenter (= 4.1.1) - AppCenter/Distribute (= 4.1.1) - Automattic-Tracks-iOS (from `https://github.com/Automattic/Automattic-Tracks-iOS.git`, branch `crash-logging-hybrid-sdk-helpers`) - - BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/BVLinearGradient.podspec.json`) + - BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/BVLinearGradient.podspec.json`) - Charts (~> 3.2.2) - CocoaLumberjack (~> 3.0) - CropViewController (= 2.5.3) - Down (~> 0.6.6) - - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/FBLazyVector.podspec.json`) - - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json`) + - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBLazyVector.podspec.json`) + - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json`) - FSInteractiveMap (from `https://github.com/wordpress-mobile/FSInteractiveMap.git`, tag `0.2.0`) - Gifu (= 3.2.0) - - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/glog.podspec.json`) + - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/glog.podspec.json`) - Gridicons (~> 1.1.0) - - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `3ec0b6e777fcc02b604d9aa56a88650f4228c502`) + - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3`) - JTAppleCalendar (~> 8.0.2) - Kanvas (~> 1.2.7) - MediaEditor (~> 1.2.1) @@ -511,44 +511,44 @@ DEPENDENCIES: - "NSURL+IDN (~> 0.4)" - OCMock (~> 3.4.3) - OHHTTPStubs/Swift (~> 9.1.0) - - RCT-Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RCT-Folly.podspec.json`) - - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RCTRequired.podspec.json`) - - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RCTTypeSafety.podspec.json`) + - RCT-Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCT-Folly.podspec.json`) + - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTRequired.podspec.json`) + - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTTypeSafety.podspec.json`) - Reachability (= 3.2) - - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React.podspec.json`) - - React-callinvoker (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-callinvoker.podspec.json`) - - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-Core.podspec.json`) - - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-CoreModules.podspec.json`) - - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-cxxreact.podspec.json`) - - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-jsi.podspec.json`) - - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-jsiexecutor.podspec.json`) - - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-jsinspector.podspec.json`) - - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-blur.podspec.json`) - - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-get-random-values.podspec.json`) - - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) - - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-safe-area.podspec.json`) - - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-safe-area-context.podspec.json`) - - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-slider.podspec.json`) - - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-video.podspec.json`) - - React-perflogger (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-perflogger.podspec.json`) - - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTActionSheet.podspec.json`) - - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTAnimation.podspec.json`) - - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTBlob.podspec.json`) - - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTImage.podspec.json`) - - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTLinking.podspec.json`) - - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTNetwork.podspec.json`) - - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTSettings.podspec.json`) - - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTText.podspec.json`) - - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTVibration.podspec.json`) - - React-runtimeexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-runtimeexecutor.podspec.json`) - - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/ReactCommon.podspec.json`) - - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/ReactNativeDarkMode.podspec.json`) - - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNCMaskedView.podspec.json`) - - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNGestureHandler.podspec.json`) - - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNReanimated.podspec.json`) - - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNScreens.podspec.json`) - - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNSVG.podspec.json`) - - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `3ec0b6e777fcc02b604d9aa56a88650f4228c502`) + - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React.podspec.json`) + - React-callinvoker (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-callinvoker.podspec.json`) + - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-Core.podspec.json`) + - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-CoreModules.podspec.json`) + - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-cxxreact.podspec.json`) + - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsi.podspec.json`) + - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsiexecutor.podspec.json`) + - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsinspector.podspec.json`) + - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-blur.podspec.json`) + - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-get-random-values.podspec.json`) + - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) + - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area.podspec.json`) + - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area-context.podspec.json`) + - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-slider.podspec.json`) + - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-video.podspec.json`) + - React-perflogger (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-perflogger.podspec.json`) + - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTActionSheet.podspec.json`) + - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTAnimation.podspec.json`) + - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTBlob.podspec.json`) + - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTImage.podspec.json`) + - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTLinking.podspec.json`) + - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTNetwork.podspec.json`) + - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTSettings.podspec.json`) + - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTText.podspec.json`) + - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTVibration.podspec.json`) + - React-runtimeexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-runtimeexecutor.podspec.json`) + - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactCommon.podspec.json`) + - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactNativeDarkMode.podspec.json`) + - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNCMaskedView.podspec.json`) + - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNGestureHandler.podspec.json`) + - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNReanimated.podspec.json`) + - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNScreens.podspec.json`) + - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNSVG.podspec.json`) + - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3`) - Starscream (= 3.0.6) - SVProgressHUD (= 2.2.5) - WordPress-Editor-iOS (~> 1.19.4) @@ -558,7 +558,7 @@ DEPENDENCIES: - WordPressShared (~> 1.16.0) - WordPressUI (~> 1.12.1-beta) - WPMediaPicker (~> 1.7.2) - - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/Yoga.podspec.json`) + - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/Yoga.podspec.json`) - ZendeskSupportSDK (= 5.3.0) - ZIPFoundation (~> 0.9.8) @@ -623,98 +623,98 @@ EXTERNAL SOURCES: :branch: crash-logging-hybrid-sdk-helpers :git: https://github.com/Automattic/Automattic-Tracks-iOS.git BVLinearGradient: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/BVLinearGradient.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/BVLinearGradient.podspec.json FBLazyVector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/FBLazyVector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBLazyVector.podspec.json FBReactNativeSpec: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 glog: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/glog.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/glog.podspec.json Gutenberg: - :commit: 3ec0b6e777fcc02b604d9aa56a88650f4228c502 + :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true RCT-Folly: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RCT-Folly.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCT-Folly.podspec.json RCTRequired: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RCTRequired.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTRequired.podspec.json RCTTypeSafety: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RCTTypeSafety.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTTypeSafety.podspec.json React: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React.podspec.json React-callinvoker: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-callinvoker.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-callinvoker.podspec.json React-Core: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-Core.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-Core.podspec.json React-CoreModules: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-CoreModules.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-CoreModules.podspec.json React-cxxreact: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-cxxreact.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-cxxreact.podspec.json React-jsi: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-jsi.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsi.podspec.json React-jsiexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-jsiexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsiexecutor.podspec.json React-jsinspector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-jsinspector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsinspector.podspec.json react-native-blur: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-blur.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-blur.podspec.json react-native-get-random-values: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-get-random-values.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-get-random-values.podspec.json react-native-keyboard-aware-scroll-view: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json react-native-safe-area: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-safe-area.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area.podspec.json react-native-safe-area-context: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-safe-area-context.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area-context.podspec.json react-native-slider: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-slider.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-slider.podspec.json react-native-video: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/react-native-video.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-video.podspec.json React-perflogger: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-perflogger.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-perflogger.podspec.json React-RCTActionSheet: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTActionSheet.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTActionSheet.podspec.json React-RCTAnimation: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTAnimation.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTAnimation.podspec.json React-RCTBlob: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTBlob.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTBlob.podspec.json React-RCTImage: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTImage.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTImage.podspec.json React-RCTLinking: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTLinking.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTLinking.podspec.json React-RCTNetwork: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTNetwork.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTNetwork.podspec.json React-RCTSettings: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTSettings.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTSettings.podspec.json React-RCTText: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTText.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTText.podspec.json React-RCTVibration: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-RCTVibration.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTVibration.podspec.json React-runtimeexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/React-runtimeexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-runtimeexecutor.podspec.json ReactCommon: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/ReactCommon.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactCommon.podspec.json ReactNativeDarkMode: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/ReactNativeDarkMode.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactNativeDarkMode.podspec.json RNCMaskedView: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNCMaskedView.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNCMaskedView.podspec.json RNGestureHandler: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNGestureHandler.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNGestureHandler.podspec.json RNReanimated: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNReanimated.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNReanimated.podspec.json RNScreens: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNScreens.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNScreens.podspec.json RNSVG: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/RNSVG.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNSVG.podspec.json RNTAztecView: - :commit: 3ec0b6e777fcc02b604d9aa56a88650f4228c502 + :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true Yoga: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/3ec0b6e777fcc02b604d9aa56a88650f4228c502/third-party-podspecs/Yoga.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/Yoga.podspec.json CHECKOUT OPTIONS: Automattic-Tracks-iOS: @@ -724,11 +724,11 @@ CHECKOUT OPTIONS: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 Gutenberg: - :commit: 3ec0b6e777fcc02b604d9aa56a88650f4228c502 + :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true RNTAztecView: - :commit: 3ec0b6e777fcc02b604d9aa56a88650f4228c502 + :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true @@ -758,7 +758,7 @@ SPEC CHECKSUMS: Gridicons: 17d660b97ce4231d582101b02f8280628b141c9a GTMAppAuth: ad5c2b70b9a8689e1a04033c9369c4915bfcbe89 GTMSessionFetcher: b3503b20a988c4e20cc189aa798fd18220133f52 - Gutenberg: 2da0fb42dfa71912970033694c7527df39113b79 + Gutenberg: a542b8bb7b3e75965654f3ffb2aca4683247f4d3 JTAppleCalendar: 932cadea40b1051beab10f67843451d48ba16c99 Kanvas: 9eab00cc89669b38858d42d5f30c810876b31344 lottie-ios: 3a3758ef5a008e762faec9c9d50a39842f26d124 @@ -806,7 +806,7 @@ SPEC CHECKSUMS: RNReanimated: 5d94111694aeadd5668f967873f7289a06fde289 RNScreens: bd1f43d7dfcd435bc11d4ee5c60086717c45a113 RNSVG: 0df105803980a68d31e3537e22bf19b372d9abee - RNTAztecView: 1e1c0816d1234cff2e205d47e15c1dad3e63c875 + RNTAztecView: 24d4a30247b85f9e151347db386f11bf6267970f Sentry: 9b922b396b0e0bca8516a10e36b0ea3ebea5faf7 Sodium: 23d11554ecd556196d313cf6130d406dfe7ac6da Starscream: ef3ece99d765eeccb67de105bfa143f929026cf5 @@ -831,6 +831,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: e27423c004a5a1410c15933407747374e7c6cb6e -PODFILE CHECKSUM: 8379eb5b6a9b5174f8893bc25718b18ccaa381d6 +PODFILE CHECKSUM: 1315badc210fd8415491872b8d6e8a9ae627e768 COCOAPODS: 1.10.1 From 32ff05041eae0a6deabb7bc5c098b432ba98da2a Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 1 Jul 2021 12:31:22 +0200 Subject: [PATCH 10/22] Remove redundant comment from Fastfile file Co-authored-by: Gio Lodi --- fastlane/Fastfile | 1 - 1 file changed, 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 2ff561a4590d..0b190d2e0958 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -418,7 +418,6 @@ platform :ios do dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH] ) - # Upload Gutenberg source maps upload_gutenberg_sourcemaps(internal: true) download_url = Actions.lane_context[SharedValues::APPCENTER_DOWNLOAD_LINK] From d1f378891c8e3450a0df63e2c82f5442fcd21374 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 1 Jul 2021 12:31:33 +0200 Subject: [PATCH 11/22] Remove redundant comment from Fastfile file Co-authored-by: Gio Lodi --- fastlane/Fastfile | 1 - 1 file changed, 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0b190d2e0958..e86465d47632 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -477,7 +477,6 @@ platform :ios do dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH] ) - # Upload Gutenberg source maps upload_gutenberg_sourcemaps(internal: true) end From cff282e0012e24234da8c971a1e8c8615a71fbe5 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 1 Jul 2021 12:31:42 +0200 Subject: [PATCH 12/22] Remove redundant comment from Fastfile file Co-authored-by: Gio Lodi --- fastlane/Fastfile | 1 - 1 file changed, 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e86465d47632..a7f018339552 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -523,7 +523,6 @@ platform :ios do dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH] ) - # Upload Gutenberg source maps upload_gutenberg_sourcemaps(internal: false) if options[:create_release] From 73aadc9de283c6730940962fe74a2d93c62d6b33 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 1 Jul 2021 12:32:34 +0200 Subject: [PATCH 13/22] Add details to RN bundle naming in Fastfile file Co-authored-by: Gio Lodi --- fastlane/Fastfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a7f018339552..1c0b0cc4ba13 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -700,7 +700,10 @@ platform :ios do gutenberg_bundle = File.join(PROJECT_ROOT_FOLDER, "Pods/Gutenberg/bundle/ios") sourcemaps_folder = File.join(gutenberg_bundle, "sourcemaps") FileUtils.mkdir_p(sourcemaps_folder) - # Name of bundle file must be set to main.jsbundle + # Name of bundle file must be set to main.jsbundle. + # + # It's important that the source map files have specific names, otherwise, Sentry + # won't un-minify the stack traces. FileUtils.cp(File.join(gutenberg_bundle, 'App.js'), File.join(sourcemaps_folder, 'main.jsbundle')) FileUtils.cp(File.join(gutenberg_bundle, 'App.js.map'), File.join(sourcemaps_folder, 'main.jsbundle.map')) From 98f72529f59d5c440e29ce84b76658d5fe10d640 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 1 Jul 2021 12:35:56 +0200 Subject: [PATCH 14/22] Add info comments to upload_gutenberg_sourcemaps lane Include details about the use of `rewrite` and `strip_common_prefix` params of `sentry_upload_sourcemap` Fastlane action. Co-authored-by: Gio Lodi --- fastlane/Fastfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1c0b0cc4ba13..5a0e3f09f6b9 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -713,8 +713,11 @@ platform :ios do project_slug: 'wordpress-ios', version: build_version, dist: build_version, + # When the React native bundle is generated, the source map file references + # include the local machine path, with the `rewrite` and `strip_common_prefix` + # options Sentry automatically strips this part. rewrite: true, - strip_common_prefix: true, + strip_common_prefix: true, sourcemap: sourcemaps_folder ) From 20f1892b50477fb1a415e0991e7135c5e99a1aaf Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Thu, 1 Jul 2021 13:37:44 +0200 Subject: [PATCH 15/22] Use temporary dir for uploading JS source maps --- fastlane/Fastfile | 45 ++++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 5a0e3f09f6b9..d2d361e71e35 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -698,30 +698,29 @@ platform :ios do build_version = ios_get_build_version(internal: options[:internal]) gutenberg_bundle = File.join(PROJECT_ROOT_FOLDER, "Pods/Gutenberg/bundle/ios") - sourcemaps_folder = File.join(gutenberg_bundle, "sourcemaps") - FileUtils.mkdir_p(sourcemaps_folder) - # Name of bundle file must be set to main.jsbundle. - # - # It's important that the source map files have specific names, otherwise, Sentry - # won't un-minify the stack traces. - FileUtils.cp(File.join(gutenberg_bundle, 'App.js'), File.join(sourcemaps_folder, 'main.jsbundle')) - FileUtils.cp(File.join(gutenberg_bundle, 'App.js.map'), File.join(sourcemaps_folder, 'main.jsbundle.map')) - - sentry_upload_sourcemap( - auth_token: get_required_env("SENTRY_AUTH_TOKEN"), - org_slug: 'a8c', - project_slug: 'wordpress-ios', - version: build_version, - dist: build_version, - # When the React native bundle is generated, the source map file references - # include the local machine path, with the `rewrite` and `strip_common_prefix` - # options Sentry automatically strips this part. - rewrite: true, - strip_common_prefix: true, - sourcemap: sourcemaps_folder - ) - FileUtils.rm_rf(sourcemaps_folder) + Dir.mktmpdir do |sourcemaps_folder| + # Name of bundle file must be set to main.jsbundle. + # + # It's important that the source map files have specific names, otherwise, Sentry + # won't un-minify the stack traces. + FileUtils.cp(File.join(gutenberg_bundle, 'App.js'), File.join(sourcemaps_folder, 'main.jsbundle')) + FileUtils.cp(File.join(gutenberg_bundle, 'App.js.map'), File.join(sourcemaps_folder, 'main.jsbundle.map')) + + sentry_upload_sourcemap( + auth_token: get_required_env("SENTRY_AUTH_TOKEN"), + org_slug: 'a8c', + project_slug: 'wordpress-ios', + version: build_version, + dist: build_version, + # When the React native bundle is generated, the source map file references + # include the local machine path, with the `rewrite` and `strip_common_prefix` + # options Sentry automatically strips this part. + rewrite: true, + strip_common_prefix: true, + sourcemap: sourcemaps_folder + ) + end end ######################################################################## From ac313a92dc9ec13e230328e27f0a238ba9a8c722 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Fri, 2 Jul 2021 18:33:26 +0200 Subject: [PATCH 16/22] Add Gutenberg Sentry native module --- .../Gutenberg/GutenbergViewController.swift | 24 +--- .../ViewRelated/Gutenberg/Sentry/RNSentry.m | 40 +++++++ .../Gutenberg/Sentry/RNSentry.swift | 108 ++++++++++++++++++ WordPress/WordPress.xcodeproj/project.pbxproj | 20 ++++ 4 files changed, 173 insertions(+), 19 deletions(-) create mode 100644 WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.m create mode 100644 WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index ebe6e1553260..7cd9ca77d767 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -265,8 +265,12 @@ class GutenbergViewController: UIViewController, PostEditor { return GutenbergImageLoader(post: post) }() + private lazy var gutenbergSentry: RNSentry = { + return RNSentry() + }() + private lazy var gutenberg: Gutenberg = { - return Gutenberg(dataSource: self, extraModules: [gutenbergImageLoader]) + return Gutenberg(dataSource: self, extraModules: [gutenbergImageLoader, gutenbergSentry]) }() private var requestHTMLReason: RequestHTMLReason? @@ -933,12 +937,6 @@ extension GutenbergViewController: GutenbergBridgeDelegate { handleMissingBlockAlertButtonPressed() } } - - func gutenbergDidLogSentryEnvelope(_ envelope: [String: Any]) { - DispatchQueue.main.async { - WordPressAppDelegate.crashLogging?.logEnvelope(envelope) - } - } } // MARK: - Suggestions implementation @@ -1047,22 +1045,10 @@ extension GutenbergViewController: GutenbergBridgeDataSource { ].compactMap { $0 } } - func attachScopeToSentryEvent(_ event: [String: Any]) -> [String: Any]? { - return WordPressAppDelegate.crashLogging?.attachScopeToEvent(event) - } - func getSentryOptions() -> [String: Any]? { return WordPressAppDelegate.crashLogging?.getOptionsDict() } - func getSentryUser() -> [String: Any]? { - return WordPressAppDelegate.crashLogging?.getSentryUserDict() - } - - func shouldSendSentryEvent() -> Bool? { - return WordPressAppDelegate.crashLogging?.shouldSendEvent() - } - func gutenbergCapabilities() -> [Capabilities: Bool] { let isFreeWPCom = post.blog.isHostedAtWPcom && !post.blog.hasPaidPlan let isWPComSite = post.blog.isHostedAtWPcom || post.blog.isAtomic() diff --git a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.m b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.m new file mode 100644 index 000000000000..fd8e39ccdd43 --- /dev/null +++ b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.m @@ -0,0 +1,40 @@ +#import + +@interface RCT_EXTERN_MODULE(RNSentry, NSObject) + +// Extra methods to extract data from the Sentry SDK configured in the main apps. +RCT_EXTERN_METHOD(getUser:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)rejecter) +RCT_EXTERN_METHOD(attachScopeToEvent:(NSDictionary * _Nonnull)event resolve:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)rejecter) +RCT_EXTERN_METHOD(shouldSendEvent:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)rejecter) + + +// This methods are extracted from the original implementation. +// Reference: https://github.com/getsentry/sentry-react-native/blob/master/ios/RNSentry.m +RCT_EXTERN_METHOD(startWithOptions:(NSDictionary *_Nonnull)options resolve:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)rejecter) +RCT_EXTERN_METHOD(deviceContexts:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)rejecter) +RCT_EXTERN_METHOD(setLogLevel:(int)level) +RCT_EXTERN_METHOD(fetchRelease:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)rejecter) +RCT_EXTERN_METHOD(captureEnvelope:(NSDictionary * _Nonnull)envelopeDict + resolve:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)rejecter) +RCT_EXTERN_METHOD(setUser:(NSDictionary *)user + otherUserKeys:(NSDictionary *)otherUserKeys +) +RCT_EXTERN_METHOD(addBreadcrumb:(NSDictionary *)breadcrumb) +RCT_EXTERN_METHOD(clearBreadcrumbs) +RCT_EXTERN_METHOD(setExtra:(NSString *)key + extra:(NSString *)extra +) +RCT_EXTERN_METHOD(setContext:(NSString *)key + context:(NSDictionary *)context +) +RCT_EXTERN_METHOD(setTag:(NSString *)key + value:(NSString *)value +) +RCT_EXTERN_METHOD(crash) +@end diff --git a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift new file mode 100644 index 000000000000..c882b8192f03 --- /dev/null +++ b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift @@ -0,0 +1,108 @@ +@objc (RNSentry) +public class RNSentry: NSObject, RCTBridgeModule { + public static func moduleName() -> String! { + return "RNSentry" + } + + public static func requiresMainQueueSetup() -> Bool { + return true + } + + public func constantsToExport() -> [AnyHashable : Any]! { + return ["nativeClientAvailable": true, "nativeTransport": true] + } + + /// Asks the Crash logging library for the current Sentry scope and includes it to an event. + /// + /// - Returns: Event object with attached scope. + @objc + func attachScopeToEvent(_ event: [String: Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + DispatchQueue.main.async { + let eventWithScope = WordPressAppDelegate.crashLogging?.attachScopeToEvent(event) + resolve(eventWithScope); + } + } + + /// Asks the Crash logging library to know if the app should send Sentry events depending on user preferences. + /// + /// - Returns: True if Sentry events can be sent. + @objc + func shouldSendEvent(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + DispatchQueue.main.async { + let shouldSendEvent = WordPressAppDelegate.crashLogging?.shouldSendEvent() + resolve(shouldSendEvent); + } + } + + /// Asks the Crash logging library for the current user of Sentry SDK. + /// + /// - Returns: Sentry user. + @objc + func getUser(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + DispatchQueue.main.async { + resolve(WordPressAppDelegate.crashLogging?.getSentryUserDict()) + } + } + + @objc + func captureEnvelope(_ envelopeDict: [String: Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + DispatchQueue.main.async { + WordPressAppDelegate.crashLogging?.logEnvelope(envelopeDict) + resolve(true); + } + } +} + +// MARK: - Disabled original methods + +extension RNSentry { + // Disabled because the Sentry SDK is initialized in the main apps. + @objc + func startWithOptions(_ options: [String:Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + resolve(true); + } + + // Disabled because the device context is fetched via the attachScopeToEvent method. + @objc + func deviceContexts(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + resolve({}); + } + + // Disabled as it's set by the main apps. + @objc + func setLogLevel(_ level: Int) { } + + // Disabled as it's not required by the current Sentry integrations. + @objc + func fetchRelease(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + resolve({}); + } + + // Disabled as it's set by the main apps. + @objc + func setUser(_ user: [String:Any], otherUserKeys: [String:Any]) { } + + // Disabled as breadcrumbs are managed by the main apps. + @objc + func addBreadcrumb(_ breadcrumb: [String: Any]) { } + + // Disabled as breadcrumbs are managed by the main apps. + @objc + func clearBreadcrumbs() { } + + // Disabled as extra tags are managed by the main apps. + @objc + func setExtra(_ key: String, extra: String) { } + + // Disabled as context is managed by the main apps. + @objc + func setContext(_ key: String, context: [String: Any]) { } + + // Disabled as tags are managed by the main apps. + @objc + func setTag(_ key: String, value: String) { } + + // Disabled as it's already exposed from the main apps. + @objc + func crash() { } +} diff --git a/WordPress/WordPress.xcodeproj/project.pbxproj b/WordPress/WordPress.xcodeproj/project.pbxproj index e9cbb8f01b6a..9e1f4604c283 100644 --- a/WordPress/WordPress.xcodeproj/project.pbxproj +++ b/WordPress/WordPress.xcodeproj/project.pbxproj @@ -330,6 +330,10 @@ 17FCA6811FD84B4600DBA9C8 /* NoticeStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17FCA6801FD84B4600DBA9C8 /* NoticeStore.swift */; }; 1A433B1D2254CBEE00AE7910 /* WordPressComRestApi+Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A433B1C2254CBEE00AE7910 /* WordPressComRestApi+Defaults.swift */; }; 1ABA150822AE5F870039311A /* WordPressUIBundleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABA150722AE5F870039311A /* WordPressUIBundleTests.swift */; }; + 1D031A47268F772A0071372F /* RNSentry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A45268F772A0071372F /* RNSentry.swift */; }; + 1D031A48268F772A0071372F /* RNSentry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A45268F772A0071372F /* RNSentry.swift */; }; + 1D031A49268F772A0071372F /* RNSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A46268F772A0071372F /* RNSentry.m */; }; + 1D031A4A268F772A0071372F /* RNSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A46268F772A0071372F /* RNSentry.m */; }; 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 1E0462162566938300EB98EF /* GutenbergFileUploadProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E0462152566938300EB98EF /* GutenbergFileUploadProcessor.swift */; }; 1E0FF01E242BC572008DA898 /* GutenbergWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E0FF01D242BC572008DA898 /* GutenbergWebViewController.swift */; }; @@ -4811,6 +4815,8 @@ 1A433B1C2254CBEE00AE7910 /* WordPressComRestApi+Defaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WordPressComRestApi+Defaults.swift"; sourceTree = ""; }; 1ABA150722AE5F870039311A /* WordPressUIBundleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WordPressUIBundleTests.swift; sourceTree = ""; }; 1B77149F6C65D343E7E3AD09 /* Pods-WordPressUITests.release-alpha.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WordPressUITests.release-alpha.xcconfig"; path = "../Pods/Target Support Files/Pods-WordPressUITests/Pods-WordPressUITests.release-alpha.xcconfig"; sourceTree = ""; }; + 1D031A45268F772A0071372F /* RNSentry.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RNSentry.swift; sourceTree = ""; }; + 1D031A46268F772A0071372F /* RNSentry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNSentry.m; sourceTree = ""; }; 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 1D6058910D05DD3D006BFB54 /* WordPress.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = WordPress.app; sourceTree = BUILT_PRODUCTS_DIR; }; 1E0462152566938300EB98EF /* GutenbergFileUploadProcessor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GutenbergFileUploadProcessor.swift; sourceTree = ""; }; @@ -8298,6 +8304,15 @@ path = Networking; sourceTree = ""; }; + 1D031A44268F772A0071372F /* Sentry */ = { + isa = PBXGroup; + children = ( + 1D031A45268F772A0071372F /* RNSentry.swift */, + 1D031A46268F772A0071372F /* RNSentry.m */, + ); + path = Sentry; + sourceTree = ""; + }; 1E5D00152493FC3A0004B708 /* Views */ = { isa = PBXGroup; children = ( @@ -10444,6 +10459,7 @@ children = ( B0637542253E7E7A00FD45D2 /* GutenbergSuggestionsViewController.swift */, FF2EC3BE2209A105006176E1 /* Processors */, + 1D031A44268F772A0071372F /* Sentry */, 1ED046CE244F26B1008F6365 /* GutenbergWeb */, 4631359224AD057E0017E65C /* Layout Picker */, 1E5D00152493FC3A0004B708 /* Views */, @@ -17244,6 +17260,7 @@ 2FA6511721F26A24009AA935 /* ChangePasswordViewController.swift in Sources */, D816C1F020E0893A00C4D82F /* LikeComment.swift in Sources */, 982DA9A7263B1E2F00E5743B /* CommentService+Likes.swift in Sources */, + 1D031A49268F772A0071372F /* RNSentry.m in Sources */, 59E1D46E1CEF77B500126697 /* Page.swift in Sources */, 321955BF24BE234C00E3F316 /* ReaderInterestsCoordinator.swift in Sources */, FAE4327425874D140039EB8C /* ReaderSavedPostCellActions.swift in Sources */, @@ -17563,6 +17580,7 @@ B55086211CC15CCB004EADB4 /* PromptViewController.swift in Sources */, 40C403EC2215CD1300E8C894 /* SearchResultsStatsRecordValue+CoreDataProperties.swift in Sources */, 82FC612C1FA8B7FC00A1757E /* ActivityListRow.swift in Sources */, + 1D031A47268F772A0071372F /* RNSentry.swift in Sources */, 436110E022C4241A000773AD /* UIColor+MurielColorsObjC.swift in Sources */, B5B68BD41C19AAED00EB59E0 /* InteractiveNotificationsManager.swift in Sources */, 46183CF5251BD658004F9AFD /* PageTemplateLayout+CoreDataProperties.swift in Sources */, @@ -19047,6 +19065,7 @@ FABB222A2602FC2C00C8785C /* JetpackScanThreatSectionGrouping.swift in Sources */, FABB222B2602FC2C00C8785C /* MediaService+Swift.swift in Sources */, FABB222C2602FC2C00C8785C /* ReaderActionHelpers.swift in Sources */, + 1D031A48268F772A0071372F /* RNSentry.swift in Sources */, FABB222D2602FC2C00C8785C /* NoteBlockUserTableViewCell.swift in Sources */, FABB222E2602FC2C00C8785C /* WPStyleGuide+Sharing.swift in Sources */, FABB222F2602FC2C00C8785C /* StoryPoster.swift in Sources */, @@ -19462,6 +19481,7 @@ FABB23B72602FC2C00C8785C /* Notifiable.swift in Sources */, FABB23B82602FC2C00C8785C /* RegisterDomainDetailsViewModel+CountryDialCodes.swift in Sources */, FABB23B92602FC2C00C8785C /* BlogListViewController+SiteCreation.swift in Sources */, + 1D031A4A268F772A0071372F /* RNSentry.m in Sources */, FABB23BA2602FC2C00C8785C /* CommentAnalytics.swift in Sources */, FABB23BB2602FC2C00C8785C /* TableViewHeaderDetailView.swift in Sources */, FABB23BC2602FC2C00C8785C /* MenuItemAbstractView.m in Sources */, From 14f6cd77da0c8b7bb0da30d00ec4ac14b9a3ad53 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Mon, 5 Jul 2021 13:21:05 +0200 Subject: [PATCH 17/22] Rename RNSentry to GutenbergSentry --- .../Gutenberg/GutenbergViewController.swift | 6 ++--- .../Sentry/{RNSentry.m => GutenbergSentry.m} | 0 .../{RNSentry.swift => GutenbergSentry.swift} | 4 ++-- WordPress/WordPress.xcodeproj/project.pbxproj | 24 +++++++++---------- 4 files changed, 17 insertions(+), 17 deletions(-) rename WordPress/Classes/ViewRelated/Gutenberg/Sentry/{RNSentry.m => GutenbergSentry.m} (100%) rename WordPress/Classes/ViewRelated/Gutenberg/Sentry/{RNSentry.swift => GutenbergSentry.swift} (97%) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index 7cd9ca77d767..ecd18f2ce159 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -265,8 +265,8 @@ class GutenbergViewController: UIViewController, PostEditor { return GutenbergImageLoader(post: post) }() - private lazy var gutenbergSentry: RNSentry = { - return RNSentry() + private lazy var gutenbergSentry: GutenbergSentry = { + return GutenbergSentry() }() private lazy var gutenberg: Gutenberg = { @@ -1045,7 +1045,7 @@ extension GutenbergViewController: GutenbergBridgeDataSource { ].compactMap { $0 } } - func getSentryOptions() -> [String: Any]? { + func gutenbergSentryOptions() -> [String: Any]? { return WordPressAppDelegate.crashLogging?.getOptionsDict() } diff --git a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.m b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.m similarity index 100% rename from WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.m rename to WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.m diff --git a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift similarity index 97% rename from WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift rename to WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift index c882b8192f03..4f589a799b98 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/RNSentry.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift @@ -1,5 +1,5 @@ @objc (RNSentry) -public class RNSentry: NSObject, RCTBridgeModule { +public class GutenbergSentry: NSObject, RCTBridgeModule { public static func moduleName() -> String! { return "RNSentry" } @@ -55,7 +55,7 @@ public class RNSentry: NSObject, RCTBridgeModule { // MARK: - Disabled original methods -extension RNSentry { +extension GutenbergSentry { // Disabled because the Sentry SDK is initialized in the main apps. @objc func startWithOptions(_ options: [String:Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { diff --git a/WordPress/WordPress.xcodeproj/project.pbxproj b/WordPress/WordPress.xcodeproj/project.pbxproj index 9e1f4604c283..f077a34b53a5 100644 --- a/WordPress/WordPress.xcodeproj/project.pbxproj +++ b/WordPress/WordPress.xcodeproj/project.pbxproj @@ -330,10 +330,10 @@ 17FCA6811FD84B4600DBA9C8 /* NoticeStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17FCA6801FD84B4600DBA9C8 /* NoticeStore.swift */; }; 1A433B1D2254CBEE00AE7910 /* WordPressComRestApi+Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A433B1C2254CBEE00AE7910 /* WordPressComRestApi+Defaults.swift */; }; 1ABA150822AE5F870039311A /* WordPressUIBundleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABA150722AE5F870039311A /* WordPressUIBundleTests.swift */; }; - 1D031A47268F772A0071372F /* RNSentry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A45268F772A0071372F /* RNSentry.swift */; }; - 1D031A48268F772A0071372F /* RNSentry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A45268F772A0071372F /* RNSentry.swift */; }; - 1D031A49268F772A0071372F /* RNSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A46268F772A0071372F /* RNSentry.m */; }; - 1D031A4A268F772A0071372F /* RNSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A46268F772A0071372F /* RNSentry.m */; }; + 1D031A47268F772A0071372F /* GutenbergSentry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A45268F772A0071372F /* GutenbergSentry.swift */; }; + 1D031A48268F772A0071372F /* GutenbergSentry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A45268F772A0071372F /* GutenbergSentry.swift */; }; + 1D031A49268F772A0071372F /* GutenbergSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A46268F772A0071372F /* GutenbergSentry.m */; }; + 1D031A4A268F772A0071372F /* GutenbergSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D031A46268F772A0071372F /* GutenbergSentry.m */; }; 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 1E0462162566938300EB98EF /* GutenbergFileUploadProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E0462152566938300EB98EF /* GutenbergFileUploadProcessor.swift */; }; 1E0FF01E242BC572008DA898 /* GutenbergWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E0FF01D242BC572008DA898 /* GutenbergWebViewController.swift */; }; @@ -4815,8 +4815,8 @@ 1A433B1C2254CBEE00AE7910 /* WordPressComRestApi+Defaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WordPressComRestApi+Defaults.swift"; sourceTree = ""; }; 1ABA150722AE5F870039311A /* WordPressUIBundleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WordPressUIBundleTests.swift; sourceTree = ""; }; 1B77149F6C65D343E7E3AD09 /* Pods-WordPressUITests.release-alpha.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WordPressUITests.release-alpha.xcconfig"; path = "../Pods/Target Support Files/Pods-WordPressUITests/Pods-WordPressUITests.release-alpha.xcconfig"; sourceTree = ""; }; - 1D031A45268F772A0071372F /* RNSentry.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RNSentry.swift; sourceTree = ""; }; - 1D031A46268F772A0071372F /* RNSentry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNSentry.m; sourceTree = ""; }; + 1D031A45268F772A0071372F /* GutenbergSentry.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GutenbergSentry.swift; sourceTree = ""; }; + 1D031A46268F772A0071372F /* GutenbergSentry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GutenbergSentry.m; sourceTree = ""; }; 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 1D6058910D05DD3D006BFB54 /* WordPress.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = WordPress.app; sourceTree = BUILT_PRODUCTS_DIR; }; 1E0462152566938300EB98EF /* GutenbergFileUploadProcessor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GutenbergFileUploadProcessor.swift; sourceTree = ""; }; @@ -8307,8 +8307,8 @@ 1D031A44268F772A0071372F /* Sentry */ = { isa = PBXGroup; children = ( - 1D031A45268F772A0071372F /* RNSentry.swift */, - 1D031A46268F772A0071372F /* RNSentry.m */, + 1D031A45268F772A0071372F /* GutenbergSentry.swift */, + 1D031A46268F772A0071372F /* GutenbergSentry.m */, ); path = Sentry; sourceTree = ""; @@ -17260,7 +17260,7 @@ 2FA6511721F26A24009AA935 /* ChangePasswordViewController.swift in Sources */, D816C1F020E0893A00C4D82F /* LikeComment.swift in Sources */, 982DA9A7263B1E2F00E5743B /* CommentService+Likes.swift in Sources */, - 1D031A49268F772A0071372F /* RNSentry.m in Sources */, + 1D031A49268F772A0071372F /* GutenbergSentry.m in Sources */, 59E1D46E1CEF77B500126697 /* Page.swift in Sources */, 321955BF24BE234C00E3F316 /* ReaderInterestsCoordinator.swift in Sources */, FAE4327425874D140039EB8C /* ReaderSavedPostCellActions.swift in Sources */, @@ -17580,7 +17580,7 @@ B55086211CC15CCB004EADB4 /* PromptViewController.swift in Sources */, 40C403EC2215CD1300E8C894 /* SearchResultsStatsRecordValue+CoreDataProperties.swift in Sources */, 82FC612C1FA8B7FC00A1757E /* ActivityListRow.swift in Sources */, - 1D031A47268F772A0071372F /* RNSentry.swift in Sources */, + 1D031A47268F772A0071372F /* GutenbergSentry.swift in Sources */, 436110E022C4241A000773AD /* UIColor+MurielColorsObjC.swift in Sources */, B5B68BD41C19AAED00EB59E0 /* InteractiveNotificationsManager.swift in Sources */, 46183CF5251BD658004F9AFD /* PageTemplateLayout+CoreDataProperties.swift in Sources */, @@ -19065,7 +19065,7 @@ FABB222A2602FC2C00C8785C /* JetpackScanThreatSectionGrouping.swift in Sources */, FABB222B2602FC2C00C8785C /* MediaService+Swift.swift in Sources */, FABB222C2602FC2C00C8785C /* ReaderActionHelpers.swift in Sources */, - 1D031A48268F772A0071372F /* RNSentry.swift in Sources */, + 1D031A48268F772A0071372F /* GutenbergSentry.swift in Sources */, FABB222D2602FC2C00C8785C /* NoteBlockUserTableViewCell.swift in Sources */, FABB222E2602FC2C00C8785C /* WPStyleGuide+Sharing.swift in Sources */, FABB222F2602FC2C00C8785C /* StoryPoster.swift in Sources */, @@ -19481,7 +19481,7 @@ FABB23B72602FC2C00C8785C /* Notifiable.swift in Sources */, FABB23B82602FC2C00C8785C /* RegisterDomainDetailsViewModel+CountryDialCodes.swift in Sources */, FABB23B92602FC2C00C8785C /* BlogListViewController+SiteCreation.swift in Sources */, - 1D031A4A268F772A0071372F /* RNSentry.m in Sources */, + 1D031A4A268F772A0071372F /* GutenbergSentry.m in Sources */, FABB23BA2602FC2C00C8785C /* CommentAnalytics.swift in Sources */, FABB23BB2602FC2C00C8785C /* TableViewHeaderDetailView.swift in Sources */, FABB23BC2602FC2C00C8785C /* MenuItemAbstractView.m in Sources */, From 2adce8c5b22f7c43ad2fa0bb2afa981e3422ca72 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Mon, 5 Jul 2021 14:03:27 +0200 Subject: [PATCH 18/22] Update Gutenberg Mobile ref --- Podfile | 2 +- Podfile.lock | 178 +++++++++++++++++++++++++-------------------------- 2 files changed, 90 insertions(+), 90 deletions(-) diff --git a/Podfile b/Podfile index eb5afd5f6df2..c689cf12c0c8 100644 --- a/Podfile +++ b/Podfile @@ -166,7 +166,7 @@ abstract_target 'Apps' do ## Gutenberg (React Native) ## ===================== ## - gutenberg :commit => 'ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3' + gutenberg :commit => 'bf912d9c46a880730d300a50b6075559de159159' ## Third party libraries ## ===================== diff --git a/Podfile.lock b/Podfile.lock index bbd0e1d4ce5d..58871d93c03a 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -490,18 +490,18 @@ DEPENDENCIES: - AppCenter (= 4.1.1) - AppCenter/Distribute (= 4.1.1) - Automattic-Tracks-iOS (from `https://github.com/Automattic/Automattic-Tracks-iOS.git`, branch `crash-logging-hybrid-sdk-helpers`) - - BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/BVLinearGradient.podspec.json`) + - BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/BVLinearGradient.podspec.json`) - Charts (~> 3.2.2) - CocoaLumberjack (~> 3.0) - CropViewController (= 2.5.3) - Down (~> 0.6.6) - - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBLazyVector.podspec.json`) - - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json`) + - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBLazyVector.podspec.json`) + - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json`) - FSInteractiveMap (from `https://github.com/wordpress-mobile/FSInteractiveMap.git`, tag `0.2.0`) - Gifu (= 3.2.0) - - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/glog.podspec.json`) + - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/glog.podspec.json`) - Gridicons (~> 1.1.0) - - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3`) + - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `bf912d9c46a880730d300a50b6075559de159159`) - JTAppleCalendar (~> 8.0.2) - Kanvas (~> 1.2.7) - MediaEditor (~> 1.2.1) @@ -511,44 +511,44 @@ DEPENDENCIES: - "NSURL+IDN (~> 0.4)" - OCMock (~> 3.4.3) - OHHTTPStubs/Swift (~> 9.1.0) - - RCT-Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCT-Folly.podspec.json`) - - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTRequired.podspec.json`) - - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTTypeSafety.podspec.json`) + - RCT-Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCT-Folly.podspec.json`) + - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTRequired.podspec.json`) + - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTTypeSafety.podspec.json`) - Reachability (= 3.2) - - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React.podspec.json`) - - React-callinvoker (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-callinvoker.podspec.json`) - - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-Core.podspec.json`) - - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-CoreModules.podspec.json`) - - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-cxxreact.podspec.json`) - - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsi.podspec.json`) - - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsiexecutor.podspec.json`) - - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsinspector.podspec.json`) - - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-blur.podspec.json`) - - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-get-random-values.podspec.json`) - - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) - - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area.podspec.json`) - - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area-context.podspec.json`) - - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-slider.podspec.json`) - - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-video.podspec.json`) - - React-perflogger (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-perflogger.podspec.json`) - - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTActionSheet.podspec.json`) - - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTAnimation.podspec.json`) - - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTBlob.podspec.json`) - - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTImage.podspec.json`) - - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTLinking.podspec.json`) - - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTNetwork.podspec.json`) - - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTSettings.podspec.json`) - - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTText.podspec.json`) - - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTVibration.podspec.json`) - - React-runtimeexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-runtimeexecutor.podspec.json`) - - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactCommon.podspec.json`) - - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactNativeDarkMode.podspec.json`) - - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNCMaskedView.podspec.json`) - - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNGestureHandler.podspec.json`) - - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNReanimated.podspec.json`) - - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNScreens.podspec.json`) - - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNSVG.podspec.json`) - - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3`) + - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React.podspec.json`) + - React-callinvoker (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-callinvoker.podspec.json`) + - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-Core.podspec.json`) + - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-CoreModules.podspec.json`) + - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-cxxreact.podspec.json`) + - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsi.podspec.json`) + - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsiexecutor.podspec.json`) + - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsinspector.podspec.json`) + - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-blur.podspec.json`) + - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-get-random-values.podspec.json`) + - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) + - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area.podspec.json`) + - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area-context.podspec.json`) + - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-slider.podspec.json`) + - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-video.podspec.json`) + - React-perflogger (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-perflogger.podspec.json`) + - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTActionSheet.podspec.json`) + - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTAnimation.podspec.json`) + - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTBlob.podspec.json`) + - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTImage.podspec.json`) + - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTLinking.podspec.json`) + - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTNetwork.podspec.json`) + - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTSettings.podspec.json`) + - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTText.podspec.json`) + - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTVibration.podspec.json`) + - React-runtimeexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-runtimeexecutor.podspec.json`) + - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactCommon.podspec.json`) + - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactNativeDarkMode.podspec.json`) + - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNCMaskedView.podspec.json`) + - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNGestureHandler.podspec.json`) + - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNReanimated.podspec.json`) + - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNScreens.podspec.json`) + - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNSVG.podspec.json`) + - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `bf912d9c46a880730d300a50b6075559de159159`) - Starscream (= 3.0.6) - SVProgressHUD (= 2.2.5) - WordPress-Editor-iOS (~> 1.19.4) @@ -558,7 +558,7 @@ DEPENDENCIES: - WordPressShared (~> 1.16.0) - WordPressUI (~> 1.12.1-beta) - WPMediaPicker (~> 1.7.2) - - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/Yoga.podspec.json`) + - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/Yoga.podspec.json`) - ZendeskSupportSDK (= 5.3.0) - ZIPFoundation (~> 0.9.8) @@ -623,98 +623,98 @@ EXTERNAL SOURCES: :branch: crash-logging-hybrid-sdk-helpers :git: https://github.com/Automattic/Automattic-Tracks-iOS.git BVLinearGradient: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/BVLinearGradient.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/BVLinearGradient.podspec.json FBLazyVector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBLazyVector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBLazyVector.podspec.json FBReactNativeSpec: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 glog: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/glog.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/glog.podspec.json Gutenberg: - :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 + :commit: bf912d9c46a880730d300a50b6075559de159159 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true RCT-Folly: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCT-Folly.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCT-Folly.podspec.json RCTRequired: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTRequired.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTRequired.podspec.json RCTTypeSafety: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RCTTypeSafety.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTTypeSafety.podspec.json React: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React.podspec.json React-callinvoker: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-callinvoker.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-callinvoker.podspec.json React-Core: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-Core.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-Core.podspec.json React-CoreModules: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-CoreModules.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-CoreModules.podspec.json React-cxxreact: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-cxxreact.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-cxxreact.podspec.json React-jsi: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsi.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsi.podspec.json React-jsiexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsiexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsiexecutor.podspec.json React-jsinspector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-jsinspector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsinspector.podspec.json react-native-blur: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-blur.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-blur.podspec.json react-native-get-random-values: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-get-random-values.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-get-random-values.podspec.json react-native-keyboard-aware-scroll-view: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json react-native-safe-area: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area.podspec.json react-native-safe-area-context: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-safe-area-context.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area-context.podspec.json react-native-slider: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-slider.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-slider.podspec.json react-native-video: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/react-native-video.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-video.podspec.json React-perflogger: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-perflogger.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-perflogger.podspec.json React-RCTActionSheet: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTActionSheet.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTActionSheet.podspec.json React-RCTAnimation: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTAnimation.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTAnimation.podspec.json React-RCTBlob: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTBlob.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTBlob.podspec.json React-RCTImage: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTImage.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTImage.podspec.json React-RCTLinking: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTLinking.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTLinking.podspec.json React-RCTNetwork: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTNetwork.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTNetwork.podspec.json React-RCTSettings: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTSettings.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTSettings.podspec.json React-RCTText: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTText.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTText.podspec.json React-RCTVibration: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-RCTVibration.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTVibration.podspec.json React-runtimeexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/React-runtimeexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-runtimeexecutor.podspec.json ReactCommon: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactCommon.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactCommon.podspec.json ReactNativeDarkMode: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/ReactNativeDarkMode.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactNativeDarkMode.podspec.json RNCMaskedView: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNCMaskedView.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNCMaskedView.podspec.json RNGestureHandler: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNGestureHandler.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNGestureHandler.podspec.json RNReanimated: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNReanimated.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNReanimated.podspec.json RNScreens: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNScreens.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNScreens.podspec.json RNSVG: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/RNSVG.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNSVG.podspec.json RNTAztecView: - :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 + :commit: bf912d9c46a880730d300a50b6075559de159159 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true Yoga: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3/third-party-podspecs/Yoga.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/Yoga.podspec.json CHECKOUT OPTIONS: Automattic-Tracks-iOS: @@ -724,11 +724,11 @@ CHECKOUT OPTIONS: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 Gutenberg: - :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 + :commit: bf912d9c46a880730d300a50b6075559de159159 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true RNTAztecView: - :commit: ca6d40ffcd02a18bec7aab258d76c4147ff6e2a3 + :commit: bf912d9c46a880730d300a50b6075559de159159 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true @@ -831,6 +831,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: e27423c004a5a1410c15933407747374e7c6cb6e -PODFILE CHECKSUM: 1315badc210fd8415491872b8d6e8a9ae627e768 +PODFILE CHECKSUM: 2eb225850c146111c398bf65b94faea3fb0c0baf COCOAPODS: 1.10.1 From 04d18c8b31c4b4df16827ef6911500785f69d574 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Mon, 5 Jul 2021 14:05:33 +0200 Subject: [PATCH 19/22] Apply swift lint autocorrection --- .../Gutenberg/GutenbergViewController.swift | 2 +- .../Gutenberg/Sentry/GutenbergSentry.swift | 46 +++++++++---------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index ecd18f2ce159..18b399cd8a54 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -268,7 +268,7 @@ class GutenbergViewController: UIViewController, PostEditor { private lazy var gutenbergSentry: GutenbergSentry = { return GutenbergSentry() }() - + private lazy var gutenberg: Gutenberg = { return Gutenberg(dataSource: self, extraModules: [gutenbergImageLoader, gutenbergSentry]) }() diff --git a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift index 4f589a799b98..88f6816be900 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/Sentry/GutenbergSentry.swift @@ -7,11 +7,11 @@ public class GutenbergSentry: NSObject, RCTBridgeModule { public static func requiresMainQueueSetup() -> Bool { return true } - - public func constantsToExport() -> [AnyHashable : Any]! { + + public func constantsToExport() -> [AnyHashable: Any]! { return ["nativeClientAvailable": true, "nativeTransport": true] } - + /// Asks the Crash logging library for the current Sentry scope and includes it to an event. /// /// - Returns: Event object with attached scope. @@ -19,10 +19,10 @@ public class GutenbergSentry: NSObject, RCTBridgeModule { func attachScopeToEvent(_ event: [String: Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { DispatchQueue.main.async { let eventWithScope = WordPressAppDelegate.crashLogging?.attachScopeToEvent(event) - resolve(eventWithScope); + resolve(eventWithScope) } } - + /// Asks the Crash logging library to know if the app should send Sentry events depending on user preferences. /// /// - Returns: True if Sentry events can be sent. @@ -30,10 +30,10 @@ public class GutenbergSentry: NSObject, RCTBridgeModule { func shouldSendEvent(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { DispatchQueue.main.async { let shouldSendEvent = WordPressAppDelegate.crashLogging?.shouldSendEvent() - resolve(shouldSendEvent); + resolve(shouldSendEvent) } } - + /// Asks the Crash logging library for the current user of Sentry SDK. /// /// - Returns: Sentry user. @@ -48,7 +48,7 @@ public class GutenbergSentry: NSObject, RCTBridgeModule { func captureEnvelope(_ envelopeDict: [String: Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { DispatchQueue.main.async { WordPressAppDelegate.crashLogging?.logEnvelope(envelopeDict) - resolve(true); + resolve(true) } } } @@ -58,50 +58,50 @@ public class GutenbergSentry: NSObject, RCTBridgeModule { extension GutenbergSentry { // Disabled because the Sentry SDK is initialized in the main apps. @objc - func startWithOptions(_ options: [String:Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { - resolve(true); + func startWithOptions(_ options: [String: Any], resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { + resolve(true) } - + // Disabled because the device context is fetched via the attachScopeToEvent method. @objc func deviceContexts(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { - resolve({}); + resolve({}) } - + // Disabled as it's set by the main apps. @objc func setLogLevel(_ level: Int) { } - + // Disabled as it's not required by the current Sentry integrations. @objc func fetchRelease(_ resolve: @escaping RCTPromiseResolveBlock, rejecter:@escaping RCTPromiseRejectBlock) { - resolve({}); + resolve({}) } - + // Disabled as it's set by the main apps. @objc - func setUser(_ user: [String:Any], otherUserKeys: [String:Any]) { } - + func setUser(_ user: [String: Any], otherUserKeys: [String: Any]) { } + // Disabled as breadcrumbs are managed by the main apps. @objc func addBreadcrumb(_ breadcrumb: [String: Any]) { } - + // Disabled as breadcrumbs are managed by the main apps. @objc func clearBreadcrumbs() { } - + // Disabled as extra tags are managed by the main apps. @objc func setExtra(_ key: String, extra: String) { } - + // Disabled as context is managed by the main apps. @objc func setContext(_ key: String, context: [String: Any]) { } - + // Disabled as tags are managed by the main apps. @objc func setTag(_ key: String, value: String) { } - + // Disabled as it's already exposed from the main apps. @objc func crash() { } From 8d591c88ba9541498d0d229cfa166dfecb5c79e5 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Fri, 9 Jul 2021 13:24:56 +0200 Subject: [PATCH 20/22] Rename gutenberg sentry options function --- .../Classes/ViewRelated/Gutenberg/GutenbergViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index 18b399cd8a54..ddb1c7d4a0a0 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -1045,7 +1045,7 @@ extension GutenbergViewController: GutenbergBridgeDataSource { ].compactMap { $0 } } - func gutenbergSentryOptions() -> [String: Any]? { + func gutenbergCrashLoggingOptions() -> [String: Any]? { return WordPressAppDelegate.crashLogging?.getOptionsDict() } From 7fb5928ff5fe51b202c25aa0240cb878b71b02ee Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Fri, 9 Jul 2021 14:10:59 +0200 Subject: [PATCH 21/22] Update Gutenberg Mobile ref --- Podfile | 2 +- Podfile.lock | 178 +++++++++++++++++++++++++-------------------------- 2 files changed, 90 insertions(+), 90 deletions(-) diff --git a/Podfile b/Podfile index c689cf12c0c8..415271205a29 100644 --- a/Podfile +++ b/Podfile @@ -166,7 +166,7 @@ abstract_target 'Apps' do ## Gutenberg (React Native) ## ===================== ## - gutenberg :commit => 'bf912d9c46a880730d300a50b6075559de159159' + gutenberg :commit => '8fd5848242cc6063346ceb5f12ed273ea1d05bf4' ## Third party libraries ## ===================== diff --git a/Podfile.lock b/Podfile.lock index 58871d93c03a..516790393df3 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -490,18 +490,18 @@ DEPENDENCIES: - AppCenter (= 4.1.1) - AppCenter/Distribute (= 4.1.1) - Automattic-Tracks-iOS (from `https://github.com/Automattic/Automattic-Tracks-iOS.git`, branch `crash-logging-hybrid-sdk-helpers`) - - BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/BVLinearGradient.podspec.json`) + - BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/BVLinearGradient.podspec.json`) - Charts (~> 3.2.2) - CocoaLumberjack (~> 3.0) - CropViewController (= 2.5.3) - Down (~> 0.6.6) - - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBLazyVector.podspec.json`) - - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json`) + - FBLazyVector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/FBLazyVector.podspec.json`) + - FBReactNativeSpec (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json`) - FSInteractiveMap (from `https://github.com/wordpress-mobile/FSInteractiveMap.git`, tag `0.2.0`) - Gifu (= 3.2.0) - - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/glog.podspec.json`) + - glog (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/glog.podspec.json`) - Gridicons (~> 1.1.0) - - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `bf912d9c46a880730d300a50b6075559de159159`) + - Gutenberg (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `8fd5848242cc6063346ceb5f12ed273ea1d05bf4`) - JTAppleCalendar (~> 8.0.2) - Kanvas (~> 1.2.7) - MediaEditor (~> 1.2.1) @@ -511,44 +511,44 @@ DEPENDENCIES: - "NSURL+IDN (~> 0.4)" - OCMock (~> 3.4.3) - OHHTTPStubs/Swift (~> 9.1.0) - - RCT-Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCT-Folly.podspec.json`) - - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTRequired.podspec.json`) - - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTTypeSafety.podspec.json`) + - RCT-Folly (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RCT-Folly.podspec.json`) + - RCTRequired (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RCTRequired.podspec.json`) + - RCTTypeSafety (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RCTTypeSafety.podspec.json`) - Reachability (= 3.2) - - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React.podspec.json`) - - React-callinvoker (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-callinvoker.podspec.json`) - - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-Core.podspec.json`) - - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-CoreModules.podspec.json`) - - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-cxxreact.podspec.json`) - - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsi.podspec.json`) - - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsiexecutor.podspec.json`) - - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsinspector.podspec.json`) - - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-blur.podspec.json`) - - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-get-random-values.podspec.json`) - - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) - - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area.podspec.json`) - - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area-context.podspec.json`) - - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-slider.podspec.json`) - - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-video.podspec.json`) - - React-perflogger (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-perflogger.podspec.json`) - - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTActionSheet.podspec.json`) - - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTAnimation.podspec.json`) - - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTBlob.podspec.json`) - - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTImage.podspec.json`) - - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTLinking.podspec.json`) - - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTNetwork.podspec.json`) - - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTSettings.podspec.json`) - - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTText.podspec.json`) - - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTVibration.podspec.json`) - - React-runtimeexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-runtimeexecutor.podspec.json`) - - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactCommon.podspec.json`) - - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactNativeDarkMode.podspec.json`) - - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNCMaskedView.podspec.json`) - - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNGestureHandler.podspec.json`) - - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNReanimated.podspec.json`) - - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNScreens.podspec.json`) - - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNSVG.podspec.json`) - - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `bf912d9c46a880730d300a50b6075559de159159`) + - React (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React.podspec.json`) + - React-callinvoker (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-callinvoker.podspec.json`) + - React-Core (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-Core.podspec.json`) + - React-CoreModules (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-CoreModules.podspec.json`) + - React-cxxreact (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-cxxreact.podspec.json`) + - React-jsi (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-jsi.podspec.json`) + - React-jsiexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-jsiexecutor.podspec.json`) + - React-jsinspector (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-jsinspector.podspec.json`) + - react-native-blur (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-blur.podspec.json`) + - react-native-get-random-values (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-get-random-values.podspec.json`) + - react-native-keyboard-aware-scroll-view (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json`) + - react-native-safe-area (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-safe-area.podspec.json`) + - react-native-safe-area-context (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-safe-area-context.podspec.json`) + - react-native-slider (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-slider.podspec.json`) + - react-native-video (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-video.podspec.json`) + - React-perflogger (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-perflogger.podspec.json`) + - React-RCTActionSheet (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTActionSheet.podspec.json`) + - React-RCTAnimation (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTAnimation.podspec.json`) + - React-RCTBlob (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTBlob.podspec.json`) + - React-RCTImage (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTImage.podspec.json`) + - React-RCTLinking (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTLinking.podspec.json`) + - React-RCTNetwork (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTNetwork.podspec.json`) + - React-RCTSettings (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTSettings.podspec.json`) + - React-RCTText (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTText.podspec.json`) + - React-RCTVibration (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTVibration.podspec.json`) + - React-runtimeexecutor (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-runtimeexecutor.podspec.json`) + - ReactCommon (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/ReactCommon.podspec.json`) + - ReactNativeDarkMode (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/ReactNativeDarkMode.podspec.json`) + - RNCMaskedView (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNCMaskedView.podspec.json`) + - RNGestureHandler (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNGestureHandler.podspec.json`) + - RNReanimated (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNReanimated.podspec.json`) + - RNScreens (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNScreens.podspec.json`) + - RNSVG (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNSVG.podspec.json`) + - RNTAztecView (from `https://github.com/wordpress-mobile/gutenberg-mobile.git`, commit `8fd5848242cc6063346ceb5f12ed273ea1d05bf4`) - Starscream (= 3.0.6) - SVProgressHUD (= 2.2.5) - WordPress-Editor-iOS (~> 1.19.4) @@ -558,7 +558,7 @@ DEPENDENCIES: - WordPressShared (~> 1.16.0) - WordPressUI (~> 1.12.1-beta) - WPMediaPicker (~> 1.7.2) - - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/Yoga.podspec.json`) + - Yoga (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/Yoga.podspec.json`) - ZendeskSupportSDK (= 5.3.0) - ZIPFoundation (~> 0.9.8) @@ -623,98 +623,98 @@ EXTERNAL SOURCES: :branch: crash-logging-hybrid-sdk-helpers :git: https://github.com/Automattic/Automattic-Tracks-iOS.git BVLinearGradient: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/BVLinearGradient.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/BVLinearGradient.podspec.json FBLazyVector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBLazyVector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/FBLazyVector.podspec.json FBReactNativeSpec: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/FBReactNativeSpec/FBReactNativeSpec.podspec.json FSInteractiveMap: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 glog: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/glog.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/glog.podspec.json Gutenberg: - :commit: bf912d9c46a880730d300a50b6075559de159159 + :commit: 8fd5848242cc6063346ceb5f12ed273ea1d05bf4 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true RCT-Folly: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCT-Folly.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RCT-Folly.podspec.json RCTRequired: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTRequired.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RCTRequired.podspec.json RCTTypeSafety: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RCTTypeSafety.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RCTTypeSafety.podspec.json React: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React.podspec.json React-callinvoker: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-callinvoker.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-callinvoker.podspec.json React-Core: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-Core.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-Core.podspec.json React-CoreModules: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-CoreModules.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-CoreModules.podspec.json React-cxxreact: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-cxxreact.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-cxxreact.podspec.json React-jsi: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsi.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-jsi.podspec.json React-jsiexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsiexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-jsiexecutor.podspec.json React-jsinspector: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-jsinspector.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-jsinspector.podspec.json react-native-blur: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-blur.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-blur.podspec.json react-native-get-random-values: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-get-random-values.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-get-random-values.podspec.json react-native-keyboard-aware-scroll-view: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-keyboard-aware-scroll-view.podspec.json react-native-safe-area: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-safe-area.podspec.json react-native-safe-area-context: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-safe-area-context.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-safe-area-context.podspec.json react-native-slider: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-slider.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-slider.podspec.json react-native-video: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/react-native-video.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/react-native-video.podspec.json React-perflogger: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-perflogger.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-perflogger.podspec.json React-RCTActionSheet: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTActionSheet.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTActionSheet.podspec.json React-RCTAnimation: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTAnimation.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTAnimation.podspec.json React-RCTBlob: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTBlob.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTBlob.podspec.json React-RCTImage: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTImage.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTImage.podspec.json React-RCTLinking: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTLinking.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTLinking.podspec.json React-RCTNetwork: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTNetwork.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTNetwork.podspec.json React-RCTSettings: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTSettings.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTSettings.podspec.json React-RCTText: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTText.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTText.podspec.json React-RCTVibration: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-RCTVibration.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-RCTVibration.podspec.json React-runtimeexecutor: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/React-runtimeexecutor.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/React-runtimeexecutor.podspec.json ReactCommon: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactCommon.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/ReactCommon.podspec.json ReactNativeDarkMode: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/ReactNativeDarkMode.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/ReactNativeDarkMode.podspec.json RNCMaskedView: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNCMaskedView.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNCMaskedView.podspec.json RNGestureHandler: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNGestureHandler.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNGestureHandler.podspec.json RNReanimated: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNReanimated.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNReanimated.podspec.json RNScreens: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNScreens.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNScreens.podspec.json RNSVG: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/RNSVG.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/RNSVG.podspec.json RNTAztecView: - :commit: bf912d9c46a880730d300a50b6075559de159159 + :commit: 8fd5848242cc6063346ceb5f12ed273ea1d05bf4 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true Yoga: - :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/bf912d9c46a880730d300a50b6075559de159159/third-party-podspecs/Yoga.podspec.json + :podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/8fd5848242cc6063346ceb5f12ed273ea1d05bf4/third-party-podspecs/Yoga.podspec.json CHECKOUT OPTIONS: Automattic-Tracks-iOS: @@ -724,11 +724,11 @@ CHECKOUT OPTIONS: :git: https://github.com/wordpress-mobile/FSInteractiveMap.git :tag: 0.2.0 Gutenberg: - :commit: bf912d9c46a880730d300a50b6075559de159159 + :commit: 8fd5848242cc6063346ceb5f12ed273ea1d05bf4 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true RNTAztecView: - :commit: bf912d9c46a880730d300a50b6075559de159159 + :commit: 8fd5848242cc6063346ceb5f12ed273ea1d05bf4 :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true @@ -831,6 +831,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: e27423c004a5a1410c15933407747374e7c6cb6e -PODFILE CHECKSUM: 2eb225850c146111c398bf65b94faea3fb0c0baf +PODFILE CHECKSUM: 77f1c6c8de5e25df7abe2deea6f6dda22bd05a89 COCOAPODS: 1.10.1 From 848924d8a7e51d0254688db3bd823d7698214476 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 28 Jul 2021 10:25:11 +0200 Subject: [PATCH 22/22] Update WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift Co-authored-by: Gio Lodi --- .../ViewRelated/Gutenberg/GutenbergViewController.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift index 349d74151a62..ae93f2afdd99 100644 --- a/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift +++ b/WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift @@ -265,9 +265,7 @@ class GutenbergViewController: UIViewController, PostEditor { return GutenbergImageLoader(post: post) }() - private lazy var gutenbergSentry: GutenbergSentry = { - return GutenbergSentry() - }() + private lazy var gutenbergSentry = GutenbergSentry() private lazy var gutenberg: Gutenberg = { return Gutenberg(dataSource: self, extraModules: [gutenbergImageLoader, gutenbergSentry])