Upgrade commons-codec 1.11 -> 1.22.0 to remediate WS-2019-0379#66
Open
RakenBrian wants to merge 1 commit into
Open
Upgrade commons-codec 1.11 -> 1.22.0 to remediate WS-2019-0379#66RakenBrian wants to merge 1 commit into
RakenBrian wants to merge 1 commit into
Conversation
httpclient 4.5.13 pulls in commons-codec 1.11 transitively (the only path to it in the dependency tree). Bumping httpclient within the 4.5.x line does not help — 4.5.14 still hard-codes commons-codec 1.11 — so the version must be overridden explicitly. Add a dependencyManagement entry pinning commons-codec to 1.22.0 (the current release) via a new commons-codec.version property. This upgrades the version tree-wide without adding a direct compile dependency or touching httpclient. Remediates the non-CVE advisory WS-2019-0379 / SNYK-JAVA-COMMONSCODEC-561518 (Apache CODEC-134: improper input validation in Base32/Base64 decoding, information disclosure; affects < 1.13, fixed in 1.13). No CVE is assigned; it is a vendor-tracked advisory (flagged by Mend against the transitive 1.11). The project's 1.11 is in range; 1.22.0 contains the fix. Verified: - dependency:tree shows commons-codec 1.22.0 (version managed from 1.11) - unit tests: 113/113 pass - integration tests (excl. webhook creation, blocked by an unrelated 429 rate limit on the shared sandbox key): 38/38 pass
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.
httpclient 4.5.13 pulls in commons-codec 1.11 transitively (the only path to it in the dependency tree). Bumping httpclient within the 4.5.x line does not help — 4.5.14 still hard-codes commons-codec 1.11 — so the version must be overridden explicitly.
Add a dependencyManagement entry pinning commons-codec to 1.22.0 (the current release) via a new commons-codec.version property. This upgrades the version tree-wide without adding a direct compile dependency or touching httpclient.
Remediates the non-CVE advisory WS-2019-0379 / SNYK-JAVA-COMMONSCODEC-561518 (Apache CODEC-134: improper input validation in Base32/Base64 decoding, information disclosure; affects < 1.13, fixed in 1.13). No CVE is assigned; it is a vendor-tracked advisory (flagged by Mend against the transitive 1.11). The project's 1.11 is in range; 1.22.0 contains the fix.
Verified: