Remediate Jackson-databind CVEs and instrumentation-verifier failure - #407
Open
IshikaDawda wants to merge 10 commits into
Open
Remediate Jackson-databind CVEs and instrumentation-verifier failure#407IshikaDawda wants to merge 10 commits into
IshikaDawda wants to merge 10 commits into
Conversation
…er repository from build files
…hadowJar task - Fixes Unsupported class file major version 61 error
…nd Servlet-6 to exclude development milestone builds and update version range for lettuce-5
…versions and refine exclusion regex
…vent dependency resolution issues for aws-java-sdk-dynamodb
…d type retrieval method to toString
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
Jackson-databind CVE remediation (CVE-2026-54512/54513, severity 9.2/9.3)
newrelic-security-agentbumpedjackson-databindandjackson-dataformat-properties2.14.2→2.18.9.THIRD_PARTY_NOTICES.mdupdated bothjacksonentries to include latest version details.Broken build infrastructure (JCenter shutdown)
removed
jcenter()repository declarations.JCentershut down in 2021; the JVM's TLS handshake to it fails outright now, which was blocking dependency resolution forbuildSrc(needed to fetch the shadow plugin) and other modules. AddedgradlePluginPortal()/plugins.gradle.orgmaven repo wheremavenCentral()alone didn't carry the plugin coordinates (shadow 6.0.0 was only ever published to JCenter/Plugin Portal).Shadow jar build failure caused by the jackson bump
Bumping
jackson-databindwas causing build failure due toUnsupported class file major version 61to resolve this added excludes forMETA-INF/versions/17/**andMETA-INF/versions/21/**in therelocatedShadowJartask.Instrumentation verification failure fixes:
jsp-3andservlet-6.0addedexcludeRegexto exclude milestone/beta versionsFixed the verification error observed in lettuce-5.0 due to deprecation of a member's function and used
toString()instead ofname().Dynamodbunit tests were usingjackson-databind2.6.xwhich hasPropertyNamingStrategy.PascalCaseStrategy.The project-wide testjackson-databindbump (for CVE remediation) would otherwise win dependency resolution and break it. So, forced used2.6version fordynamodbunit tests.