Skip to content

Commit dfcad7c

Browse files
committedNov 12, 2024
Pin Xcodeproj to < 1.26.0 (#47237)
Summary: Pull Request resolved: #47237 The Xcodeproj gem has been released yesterday to version 1.26.0 and it broke the CI pipeline of react native. This should fix the issue [Internal] - Pin Xcodeproj gem to 1.26.0 Reviewed By: blakef Differential Revision: D65057797 fbshipit-source-id: f4035a1d3c75dd4140eb1646ab2aa0ccb08fb16b
1 parent 93c3341 commit dfcad7c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
 

‎Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ ruby ">= 2.6.10"
55

66
gem 'cocoapods', '~> 1.12'
77
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
8+
gem 'xcodeproj', '< 1.26.0'

‎packages/react-native/template/Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ ruby ">= 2.6.10"
77
# bound in the template on Cocoapods with next React Native release.
88
gem 'cocoapods', '>= 1.13', '< 1.15'
99
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
10+
gem 'xcodeproj', '< 1.26.0'

‎packages/rn-tester/Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ ruby ">= 2.6.10"
99
gem 'cocoapods', '>= 1.13', '< 1.15'
1010
gem 'rexml'
1111
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
12+
gem 'xcodeproj', '< 1.26.0'

0 commit comments

Comments
 (0)
Please sign in to comment.