From 9b0c8a41ea8a4c3e8c4357d9c8a6808fd49ea9c5 Mon Sep 17 00:00:00 2001 From: Viktor Dahl Date: Tue, 11 Apr 2023 16:10:25 +0200 Subject: [PATCH] Update dependencies in html commons-text:1.9 is affected by CVE-2022-42889. From what I can see the usage in html is not affected, but we might as well upgrade. core and android already depended on junit:4.13.2, so upgrading in html just brings it in line with the other modules. --- html/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/build.gradle b/html/build.gradle index 9fde73b..f67106a 100644 --- a/html/build.gradle +++ b/html/build.gradle @@ -38,9 +38,9 @@ dependencies { api (project(":core")) api "com.contentful.java:java-sdk:${project.contentful_version}" implementation 'com.google.code.findbugs:jsr305:3.0.2' - implementation 'org.apache.commons:commons-text:1.9' + implementation 'org.apache.commons:commons-text:1.10.0' testImplementation 'com.google.truth:truth:0.42' - testImplementation 'junit:junit:4.13.1' + testImplementation 'junit:junit:4.13.2' } java { sourceCompatibility = JavaVersion.VERSION_1_8