Skip to content

Commit

Permalink
Avoid using Cocoapods 1.15 until it fixes an issue affection RN. (#42702
Browse files Browse the repository at this point in the history
)

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.
  • Loading branch information
blakef authored and huntie committed Jan 29, 2024
1 parent 19f3ddd commit 08fd917
Show file tree
Hide file tree
Showing 3 changed files with 467 additions and 463 deletions.
4 changes: 3 additions & 1 deletion packages/react-native/template/Gemfile
Expand Up @@ -3,5 +3,7 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

gem 'cocoapods', '~> 1.13'
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
4 changes: 3 additions & 1 deletion packages/rn-tester/Gemfile
@@ -1,6 +1,8 @@
# Gemfile
source 'https://rubygems.org'

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

0 comments on commit 08fd917

Please sign in to comment.