From 19b5f9c425e30bac0274002e7e04e7b6f4abbc6f Mon Sep 17 00:00:00 2001 From: Vlad Ligai Date: Wed, 9 Sep 2026 15:48:20 -0400 Subject: [PATCH] chore: bump jackson to 2.18.10 and logback to 1.3.16 Clears the outstanding advisories against the SDK's directly declared dependencies: jackson-core / jackson-databind / jackson-datatype-jsr310 2.17.1 -> 2.18.10 logback-core / logback-classic 1.3.14 -> 1.3.16 A consumer-facing scan goes from 3 HIGH, 7 MEDIUM and 4 LOW findings down to 3 LOW. The three that remain are logback-core issues whose fixes exist only in the 1.5.x line, which requires Java 21. 1.3.16 is the last release of the Java 8 compatible line. All upgraded artifacts are still Java 8 bytecode and the public API is unchanged: 608 public signatures identical to the published 3.0.8 jar built from this same source. Verified with the existing 33 tests plus a 28 assertion end-to-end run against a live instance on JDK 8 and JDK 11. --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index a8833c9..1226d98 100644 --- a/pom.xml +++ b/pom.xml @@ -67,17 +67,17 @@ com.fasterxml.jackson.core jackson-core - 2.17.1 + 2.18.10 com.fasterxml.jackson.core jackson-databind - 2.17.1 + 2.18.10 com.fasterxml.jackson.datatype jackson-datatype-jsr310 - 2.17.1 + 2.18.10 @@ -91,7 +91,7 @@ ch.qos.logback logback-core - 1.3.14 + 1.3.16 @@ -104,7 +104,7 @@ ch.qos.logback logback-classic - 1.3.14 + 1.3.16