From f6a8452e7699842c0ef9fcfb58a33a36209a68f9 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Tue, 10 Mar 2020 14:09:26 -0700 Subject: [PATCH] Bump FlipperKit version on iOS to be compatible with react-native-flipper (#28277) Summary: This pull request re-applies https://github.com/facebook/react-native/pull/28225, thereby reverting https://github.com/facebook/react-native/commit/4bb17944f18e8ecd20633e49ff143f23210cd976, this time bumping to FlipperKit 0.33.1 which is again compatible with iOS 9 (thanks to https://github.com/facebook/flipper/pull/874) This is the iOS counterpart of https://github.com/facebook/react-native/pull/28275 [iOS] [Changed] - Upgrade Flipper dependency to 0.33.1 Pull Request resolved: https://github.com/facebook/react-native/pull/28277 Test Plan: * Bumped the version in our Flipper / RN integration test app first, that runs on 0.62-rc.5, verified everything still works there. * CI ![Screen Shot 2020-03-10 at 12 12 46](https://user-images.githubusercontent.com/1820292/76311312-94f09f00-62c8-11ea-81db-ced6d16e096b.png) Reviewed By: mweststrate Differential Revision: D20369106 Pulled By: TheSavior fbshipit-source-id: dfeb0446e7f29684a266eca5d0e29ac42cef2ef3 --- scripts/autolink-ios.rb | 3 +-- template/ios/Podfile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/autolink-ios.rb b/scripts/autolink-ios.rb index b941b6764b9526..5a739bfbcfa1bb 100644 --- a/scripts/autolink-ios.rb +++ b/scripts/autolink-ios.rb @@ -57,8 +57,7 @@ def use_react_native! (options={}) end end -def add_flipper_pods! - version = '~> 0.30.0' +def add_flipper_pods!(version = '~> 0.33.1') pod 'FlipperKit', version, :configuration => 'Debug' pod 'FlipperKit/FlipperKitLayoutPlugin', version, :configuration => 'Debug' pod 'FlipperKit/SKIOSNetworkPlugin', version, :configuration => 'Debug' diff --git a/template/ios/Podfile b/template/ios/Podfile index f74c8a614ad171..0a5868f3a81015 100644 --- a/template/ios/Podfile +++ b/template/ios/Podfile @@ -2,7 +2,7 @@ platform :ios, '9.0' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' def add_flipper_pods! - version = '~> 0.30.2' + version = '~> 0.33.1' pod 'FlipperKit', version, :configuration => 'Debug' pod 'FlipperKit/FlipperKitLayoutPlugin', version, :configuration => 'Debug' pod 'FlipperKit/SKIOSNetworkPlugin', version, :configuration => 'Debug'