Bump java-jwt to 4.6.0 and pin Jackson 2.22.1 to fix CVEs#146
Merged
Conversation
The transitive Jackson pulled in via com.auth0:java-jwt was flagged with multiple advisories (HIGH severity in jackson-databind and jackson-core). java-jwt 4.5.1 pulls Jackson 2.21.0 (still vulnerable); 4.6.0 pulls 2.22.0 (still 3 open advisories). Pinning jackson-bom to 2.22.1 resolves all known CVEs. Verified: jackson-core and jackson-databind both resolve to 2.22.1; guardian unit tests pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
andy317fe301f8c7
force-pushed
the
fix/jackson-cve-bump
branch
from
July 23, 2026 15:59
bddf764 to
de08e39
Compare
andy317fe301f8c7
marked this pull request as ready for review
July 23, 2026 16:03
nurra01
approved these changes
Jul 23, 2026
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.
Summary
The transitive Jackson dependency pulled in via
com.auth0:java-jwtis flagged with multiple security advisories (HIGH severity in bothjackson-databindandjackson-core). The currentmaster(0.11.0) usesjava-jwt:4.5.1, which pulls Jackson 2.21.0 — still vulnerable.This bumps
java-jwtto 4.6.0 and pinsjackson-bom:2.22.1so bothjackson-coreandjackson-databindresolve to the fully patched 2.22.1.Why the BOM pin is needed
java-jwt:4.5.1(current master / 0.11.0)java-jwt:4.6.0aloneGHSA-r7wm-3cxj-wff9)java-jwt:4.6.0+jackson-bom:2.22.1Verification
./gradlew :guardian:dependenciesconfirmsjackson-coreandjackson-databindboth resolve to2.22.1../gradlew :guardian:testpasses (28 tasks).🤖 Generated with Claude Code