Upgrade jwt from 2.10.2 to 3.2.0 in fastlane bundle#320
Merged
Conversation
Resolves Dependabot alert GHSA-c32j-vqhx-rx3x (high): empty-key HMAC bypass in ruby-jwt < 3.2.0. The jwt fix required fastlane 2.235.0 (relaxes jwt to < 4) and googleauth 1.16.2 (relaxes jwt to < 4.0). fastlane 2.235.0 in turn requires bundler >= 2.4.0, so BUNDLED WITH moves 2.2.8 -> 2.6.2.
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.
Resolves Dependabot alert GHSA-c32j-vqhx-rx3x (high, CVSS 7.4): empty-key HMAC bypass in ruby-jwt < 3.2.0.
Changes
< 3to< 4)< 3.0to< 4.0)ruby/setup-rubyinstalls theBUNDLED WITHversion)Context
The jwt gem is a transitive dependency of fastlane, used by googleauth/signet for Google service-account auth (Play Store uploads). The vulnerability itself (empty-key HMAC decode bypass) has no practical exposure here — fastlane signs JWTs with a real private key and never verifies attacker-supplied tokens — but clearing the alert keeps the Dependabot list signal-rich.
The upgrade required bumping bundler because the only fastlane version that relaxes the jwt cap (2.235.0) requires
bundler >= 2.4.0, while the lockfile previously pinnedBUNDLED WITH 2.2.8.