From e8096c541c7902566541b6368a2c9f60e2d92bf2 Mon Sep 17 00:00:00 2001 From: Michael Jaeger <73838886+michaelmejaeger@users.noreply.github.com> Date: Fri, 4 Jul 2025 15:58:34 +0200 Subject: [PATCH] chore: updates dependency of jackson The version 2.14.1 of jackson there is a security issue: https://github.com/advisories/GHSA-h46c-h94j-95f3 It would be great if you could update to the most recent version 2.19.1 and provide a new version. Many thanks! --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 025705ce..b800c09b 100644 --- a/build.gradle +++ b/build.gradle @@ -64,9 +64,9 @@ subprojects { } implementation 'commons-codec:commons-codec:1.13' implementation 'org.apache.commons:commons-lang3:3.12.0' - implementation 'com.fasterxml.jackson.core:jackson-core:2.14.1' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1' - implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.1' + implementation 'com.fasterxml.jackson.core:jackson-core:2.19.1' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.1' + implementation 'com.fasterxml.jackson.core:jackson-annotations:2.19.1' api 'org.jfrog.filespecs:file-specs-java:1.1.1' }