From 2922af2e7e8527a93c7956b10ddb314f25c334fa Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Mon, 28 Oct 2024 04:20:31 -0700 Subject: [PATCH] Pin Xcodeproj to < 1.26.0 (#47237) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/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 ## Changelog [Internal] - Pin Xcodeproj gem to 1.26.0 Reviewed By: blakef Differential Revision: D65057797 fbshipit-source-id: f4035a1d3c75dd4140eb1646ab2aa0ccb08fb16b --- Gemfile | 1 + packages/helloworld/Gemfile | 1 + packages/rn-tester/Gemfile | 1 + 3 files changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 8e468b2c4e6..5bd3d0cebb3 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,4 @@ ruby ">= 2.6.10" gem 'cocoapods', '~> 1.13' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'xcodeproj', '< 1.26.0' diff --git a/packages/helloworld/Gemfile b/packages/helloworld/Gemfile index 6180ec4fafa..dbd537ab575 100644 --- a/packages/helloworld/Gemfile +++ b/packages/helloworld/Gemfile @@ -4,3 +4,4 @@ ruby ">= 2.6.10" gem 'cocoapods', '>= 1.13', '< 1.15' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'xcodeproj', '< 1.26.0' diff --git a/packages/rn-tester/Gemfile b/packages/rn-tester/Gemfile index 687d5db0dc6..bf343afe901 100644 --- a/packages/rn-tester/Gemfile +++ b/packages/rn-tester/Gemfile @@ -8,3 +8,4 @@ ruby ">= 2.6.10" gem 'cocoapods', '>= 1.13', '< 1.15' gem 'rexml' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'xcodeproj', '< 1.26.0'