Bump netty/jackson/commons-codec to clear CVE alerts on shipped OAP jars#13944
Merged
kezhenxu94 merged 1 commit intoJul 13, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates managed dependency versions (Netty, Jackson, commons-codec) to address CVE alerts in shipped OAP jars, and records the bumps in the changelog.
Changes:
- Bump
netty.versionin the rootpom.xml(4.2.12.Final→4.2.15.Final). - Bump
jackson.versionandjackson-databind.versioninoap-server-bom/pom.xmlto2.18.8, and bumpcommons-codecto1.13. - Add a corresponding entry to
docs/en/changes/changes.md.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
pom.xml |
Updates the globally managed Netty version used by the BOM import. |
oap-server-bom/pom.xml |
Updates BOM-managed Jackson and commons-codec versions for OAP artifacts. |
docs/en/changes/changes.md |
Documents the additional dependency bumps and the Jackson version realignment. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <jackson.version>2.18.6</jackson.version> | ||
| <jackson-databind.version>2.16.0</jackson-databind.version> | ||
| <jackson.version>2.18.8</jackson.version> | ||
| <jackson-databind.version>2.18.8</jackson-databind.version> |
851c2f4 to
ebf0320
Compare
- netty 4.2.12.Final -> 4.2.15.Final (root pom netty.version) - jackson 2.18.6 -> 2.18.8 (oap-server-bom) - jackson-databind 2.16.0 -> 2.18.8 (realign to the rest of the jackson family, which had moved ahead while databind was left behind) - commons-codec 1.11 -> 1.13 (oap-server-bom) All versions are JDK 11 compatible (SkyWalking targets maven.compiler.release=11). Update dist-material/release-docs/LICENSE and .licenserc.yaml to match the bumped dependency versions (the CI dependency-license check regenerates LICENSE and fails on any drift). Signed-off-by: kezhenxu94 <kezhenxu94@apache.org>
ebf0320 to
6e9d588
Compare
mrproliu
approved these changes
Jul 13, 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.
Bump up dependencies to clear CVE alerts on shipped OAP jars
Follows up the earlier dependency bumps in the
11.0.0cycle with a few more that Dependabot / scanners flag on the shipped OAP jars.netty.version)4.2.12.Final4.2.15.Finalpom.xmljackson.version)2.18.62.18.8oap-server-bom/pom.xmljackson-databind.version)2.16.02.18.8oap-server-bom/pom.xmlcommons-codec.version)1.111.13oap-server-bom/pom.xmljackson-databindwas managed by a separate property and had been left behind while the other jackson artifacts moved to2.18.x. This realigns the whole jackson family to a single managed version (2.18.8), which is generally the recommended jackson setup and avoids a mixed core/databind combination on the classpath.All bumped versions are within the JDK 11 baseline SkyWalking targets (
maven.compiler.release=11), so no source changes are required — these are managed-version bumps only.CHANGESlog.