Skip to content

Commit 08fd917

Browse files
blakefhuntie
authored andcommitted
Avoid using Cocoapods 1.15 until it fixes an issue affection RN. (#42702)
Summary: Cocoapods 1.15 (#42698) current breaks the build, limit to version >= 1.13 & < 1.15 This is currently broken and affecting users, we'll remove this limit once Cocopods fixes the regression. It's currently blocking 0.73.3. ## Changelog: [iOS][Fixed] don't allow cocoapods 1.15.
1 parent 19f3ddd commit 08fd917

File tree

3 files changed

+467
-463
lines changed

3 files changed

+467
-463
lines changed

packages/react-native/template/Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ source 'https://rubygems.org'
33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
44
ruby ">= 2.6.10"
55

6-
gem 'cocoapods', '~> 1.13'
6+
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
7+
# bound in the template on Cocoapods with next React Native release.
8+
gem 'cocoapods', '>= 1.13', '< 1.15'
79
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

packages/rn-tester/Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Gemfile
22
source 'https://rubygems.org'
33

4-
gem 'cocoapods', '~> 1.12'
4+
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
5+
# bound in the template on Cocoapods with next React Native release.
6+
gem 'cocoapods', '>= 1.13', '< 1.15'
57
gem 'rexml'
68
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

0 commit comments

Comments
 (0)