@@ -20,7 +20,7 @@ workspace 'WordPress.xcworkspace'
2020## ===================================
2121##
2222def wordpress_shared
23- pod 'WordPressShared' , '~> 1.16.2 '
23+ pod 'WordPressShared' , '~> 1.17.0 '
2424 #pod 'WordPressShared', :git => 'https://github.com/wordpress-mobile/WordPress-iOS-Shared.git', :tag => ''
2525 #pod 'WordPressShared', :git => 'https://github.com/wordpress-mobile/WordPress-iOS-Shared.git', :branch => ''
2626 #pod 'WordPressShared', :git => 'https://github.com/wordpress-mobile/WordPress-iOS-Shared.git', :commit => ''
@@ -35,19 +35,19 @@ def aztec
3535 #pod 'WordPress-Editor-iOS', :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :commit => ''
3636 #pod 'WordPress-Editor-iOS', :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :tag => ''
3737 #pod 'WordPress-Editor-iOS', :path => '../AztecEditor-iOS'
38- pod 'WordPress-Editor-iOS' , '~> 1.19.5 '
38+ pod 'WordPress-Editor-iOS' , '~> 1.19.7 '
3939end
4040
4141def wordpress_ui
42- pod 'WordPressUI' , '~> 1.12.2 '
42+ pod 'WordPressUI' , '~> 1.12.3 '
4343 #pod 'WordPressUI', :git => 'https://github.com/wordpress-mobile/WordPressUI-iOS', :tag => ''
4444 #pod 'WordPressUI', :git => 'https://github.com/wordpress-mobile/WordPressUI-iOS', :branch => ''
4545 #pod 'WordPressUI', :git => 'https://github.com/wordpress-mobile/WordPressUI-iOS', :commit => ''
4646 #pod 'WordPressUI', :path => '../WordPressUI-iOS'
4747end
4848
4949def wordpress_kit
50- pod 'WordPressKit' , '~> 4.44 .0-beta'
50+ pod 'WordPressKit' , '~> 4.47 .0-beta.1 '
5151 # pod 'WordPressKit', :git => 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', :tag => ''
5252 # pod 'WordPressKit', :git => 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', :branch => ''
5353 # pod 'WordPressKit', :git => 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', :commit => ''
@@ -121,8 +121,10 @@ def gutenberg_dependencies(options)
121121 'React-jsinspector' ,
122122 'React-jsi' ,
123123 'React-jsiexecutor' ,
124+ 'React-logger' ,
124125 'React-perflogger' ,
125126 'React-runtimeexecutor' ,
127+ 'boost' ,
126128 'Yoga' ,
127129 'RCT-Folly' ,
128130 'glog' ,
@@ -139,7 +141,8 @@ def gutenberg_dependencies(options)
139141 'RNScreens' ,
140142 'RNReanimated' ,
141143 'RNGestureHandler' ,
142- 'RNCMaskedView'
144+ 'RNCMaskedView' ,
145+ 'RNCClipboard'
143146 ]
144147 if options [ :path ]
145148 podspec_prefix = options [ :path ]
@@ -166,7 +169,7 @@ abstract_target 'Apps' do
166169 ## Gutenberg (React Native)
167170 ## =====================
168171 ##
169- gutenberg :tag => 'v1.66 .0'
172+ gutenberg :tag => 'v1.70 .0'
170173
171174 ## Third party libraries
172175 ## =====================
@@ -199,23 +202,23 @@ abstract_target 'Apps' do
199202
200203 # Production
201204
202- pod 'Automattic-Tracks-iOS' , '~> 0.9.1 '
205+ pod 'Automattic-Tracks-iOS' , '~> 0.11.0 '
203206 # While in PR
204207 # pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :branch => ''
205208 # Local Development
206209 #pod 'Automattic-Tracks-iOS', :path => '~/Projects/Automattic-Tracks-iOS'
207210
208211 pod 'NSURL+IDN' , '~> 0.4'
209212
210- pod 'WPMediaPicker' , '~> 1.7 .2'
211- #pod 'WPMediaPicker', :git => 'https://github.com/wordpress-mobile/MediaPicker-iOS.git', :tag => '1.7.0'
213+ pod 'WPMediaPicker' , '~> 1.8 .2'
214+ # pod 'WPMediaPicker', :git => 'https://github.com/wordpress-mobile/MediaPicker-iOS.git', :tag => '1.7.0'
212215 ## while PR is in review:
213216 # pod 'WPMediaPicker', :git => 'https://github.com/wordpress-mobile/MediaPicker-iOS.git', :branch => ''
214217 # pod 'WPMediaPicker', :path => '../MediaPicker-iOS'
215218
216219 pod 'Gridicons' , '~> 1.1.0'
217220
218- pod 'WordPressAuthenticator' , '~> 1.42.1 '
221+ pod 'WordPressAuthenticator' , '~> 1.43.0 '
219222 # pod 'WordPressAuthenticator', :git => 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', :branch => ''
220223 # pod 'WordPressAuthenticator', :git => 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', :commit => ''
221224 # pod 'WordPressAuthenticator', :path => '../WordPressAuthenticator-iOS'
@@ -472,9 +475,12 @@ post_install do |installer|
472475 # =====================================
473476 #
474477 installer . pods_project . targets . each do |target |
475- target . build_configurations . each do |configuration |
476- pod_ios_deployment_target = Gem ::Version . new ( configuration . build_settings [ 'IPHONEOS_DEPLOYMENT_TARGET' ] )
477- configuration . build_settings . delete 'IPHONEOS_DEPLOYMENT_TARGET' if pod_ios_deployment_target <= app_ios_deployment_target
478+ # Exclude RCT-Folly as it requires explicit deployment target https://git.io/JPb73
479+ if ( target . name != 'RCT-Folly' )
480+ target . build_configurations . each do |configuration |
481+ pod_ios_deployment_target = Gem ::Version . new ( configuration . build_settings [ 'IPHONEOS_DEPLOYMENT_TARGET' ] )
482+ configuration . build_settings . delete 'IPHONEOS_DEPLOYMENT_TARGET' if pod_ios_deployment_target <= app_ios_deployment_target
483+ end
478484 end
479485 end
480486
0 commit comments