Skip to content

Commit a7b2555

Browse files
okwasniewskifacebook-github-bot
authored andcommitted
feat: remove upper limit for Cocoapods version (allow for 1.15.2) (facebook#45099)
Summary: This PR uses a suggested solution from here: facebook#42698 to allow users to use Cocoapods 1.15.2 which fixed issues regarding RN builds. ## Changelog: [IOS] [FIXED] - Bump cocoapods version to 1.15.2 excluding 1.15.0, 1.15.1 Pull Request resolved: facebook#45099 Test Plan: CI Green Reviewed By: blakef Differential Revision: D58863685 Pulled By: cipolleschi fbshipit-source-id: 0128eb0cbf83e4a3d35addbae4c31e349775688c
1 parent e7d1708 commit a7b2555

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ 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+
gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1'
77
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'

packages/helloworld/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ source 'https://rubygems.org'
22

33
ruby ">= 2.6.10"
44

5-
gem 'cocoapods', '>= 1.13', '< 1.15'
5+
gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1'
66
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'

packages/rn-tester/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ ruby ">= 2.6.10"
55

66
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
77
# bound in the template on Cocoapods with next React Native release.
8-
gem 'cocoapods', '>= 1.13', '< 1.15'
8+
gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1'
99
gem 'rexml'
1010
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'

0 commit comments

Comments
 (0)