Skip to content

Commit 3c08439

Browse files
authored
KAFKA-19739 Upgrade commons-validator to 1.10.0 (#20601)
In [KAFKA-19359](https://issues.apache.org/jira/browse/KAFKA-19359), the commons-beanutils transitive dependency was force bumped in the project to avoid related CVEs. The commons-validator already has a new release, which solves this problem: https://github.com/apache/commons-validator/tags The workaround could be deleted as part of the version bump. Reviewers: Chia-Ping Tsai <[email protected]>
1 parent c2aeec4 commit 3c08439

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

LICENSE-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ License Version 2.0:
211211
- commons-digester-2.1
212212
- commons-lang3-3.18.0
213213
- commons-logging-1.3.5
214-
- commons-validator-1.9.0
214+
- commons-validator-1.10.0
215215
- hash4j-0.22.0
216216
- jackson-annotations-2.19.0
217217
- jackson-core-2.19.0

build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,6 @@ allprojects {
193193
// ensure we have a single version in the classpath despite transitive dependencies
194194
libs.scalaLibrary,
195195
libs.scalaReflect,
196-
// Workaround before `commons-validator` has new release. See KAFKA-19359.
197-
libs.commonsBeanutils,
198196
libs.jacksonAnnotations,
199197
libs.commonsLang
200198
)

gradle/dependencies.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ versions += [
5757
caffeine: "3.2.0",
5858
bndlib: "7.1.0",
5959
checkstyle: project.hasProperty('checkstyleVersion') ? checkstyleVersion : "10.20.2",
60-
commonsBeanutils: "1.11.0",
6160
commonsLang: "3.18.0",
62-
commonsValidator: "1.9.0",
61+
commonsValidator: "1.10.0",
6362
classgraph: "4.8.179",
6463
gradle: "8.14.3",
6564
grgit: "4.1.1",
@@ -151,7 +150,6 @@ libs += [
151150
bndlib:"biz.aQute.bnd:biz.aQute.bndlib:$versions.bndlib",
152151
caffeine: "com.github.ben-manes.caffeine:caffeine:$versions.caffeine",
153152
classgraph: "io.github.classgraph:classgraph:$versions.classgraph",
154-
commonsBeanutils: "commons-beanutils:commons-beanutils:$versions.commonsBeanutils",
155153
commonsLang: "org.apache.commons:commons-lang3:$versions.commonsLang",
156154
commonsValidator: "commons-validator:commons-validator:$versions.commonsValidator",
157155
jacksonAnnotations: "com.fasterxml.jackson.core:jackson-annotations:$versions.jackson",

0 commit comments

Comments
 (0)