Remove update_fastlane from before_all#1753
Merged
Merged
Conversation
Bundler and dependency PRs should be the source of truth for fastlane updates. Running update_fastlane in CI can install a newer fastlane version out-of-band and remove the version pinned by Gemfile.lock, causing later bundle exec invocations to fail. Co-authored-by: Cursor <cursoragent@cursor.com>
JZDesign
approved these changes
May 13, 2026
RCGitBot
added a commit
that referenced
this pull request
May 20, 2026
**This is an automatic release.** ## RevenueCat SDK ### 📦 Dependency Updates * [AUTOMATIC BUMP] Updates purchases-hybrid-common to 18.7.0 (#1755) via RevenueCat Git Bot (@RCGitBot) * [Android 10.6.0](https://github.com/RevenueCat/purchases-android/releases/tag/10.6.0) * [iOS 5.73.0](https://github.com/RevenueCat/purchases-ios/releases/tag/5.73.0) * [Web 1.40.0](https://github.com/RevenueCat/purchases-js/releases/tag/1.40.0) * [Web 1.39.1](https://github.com/RevenueCat/purchases-js/releases/tag/1.39.1) ### 🔄 Other Changes * Remove update_fastlane from before_all (#1753) via Antonio Pallares (@ajpallares) <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk release bookkeeping: version bumps and changelog/metadata updates with no functional code changes beyond reporting the new plugin version. > > **Overview** > Bumps the Flutter SDK and companion `purchases_ui_flutter` package versions from `10.1.0` to `10.1.1`, updating Android/iOS/macOS/web plugin version constants and the published metadata (`pubspec.yaml`, podspecs, Gradle configs). > > Updates release documentation (`CHANGELOG.md`, `CHANGELOG-LATEST.md`, `VERSIONS.md`, `.version`) to reflect the `purchases-hybrid-common` `18.7.0` dependency bump and associated native SDK version rollups (Android `10.6.0`, iOS `5.73.0`, Web `1.40.0`/`1.39.1`). > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 19bf5a9. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Removes the top-level Fastfile
update_fastlanecall frombefore_all, matching RevenueCat/purchases-unity#912 and RevenueCat/cordova-plugin-purchases#956.When CI runs fastlane through Bundler,
update_fastlanecan install a newer fastlane version out-of-band and clean up the version pinned byGemfile.lock, causingbundle execto fail after fastlane restarts.Testing
ruby -c fastlane/FastfileMade with Cursor
Note
Low Risk
Low risk: removes a CI-time
update_fastlaneinvocation to avoid Bundler version drift; no product/runtime code changes.Overview
Removes the
update_fastlanestep fromfastlane/Fastfile’sbefore_all, so CI runs fastlane strictly via the Bundler-pinned version and avoids failures after fastlane self-upgrades and restarts.Reviewed by Cursor Bugbot for commit 93768ff. Bugbot is set up for automated code reviews on this repo. Configure here.