From 4ec909fc8ab265bc395261625002efd4d814d7bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 21:38:46 +0000 Subject: [PATCH] Bump the minor-updates group across 1 directory with 4 updates Bumps the minor-updates group with 4 updates in the /java directory: [com.github.spotbugs:spotbugs-annotations](https://github.com/spotbugs/spotbugs), org.apache.commons:commons-lang3, [io.lettuce:lettuce-core](https://github.com/redis/lettuce) and [commons-cli:commons-cli](https://github.com/apache/commons-cli). Updates `com.github.spotbugs:spotbugs-annotations` from 4.8.0 to 4.9.6 - [Release notes](https://github.com/spotbugs/spotbugs/releases) - [Changelog](https://github.com/spotbugs/spotbugs/blob/master/CHANGELOG.md) - [Commits](https://github.com/spotbugs/spotbugs/compare/4.8.0...4.9.6) Updates `org.apache.commons:commons-lang3` from 3.13.0 to 3.19.0 Updates `io.lettuce:lettuce-core` from 6.2.6.RELEASE to 6.8.1.RELEASE - [Release notes](https://github.com/redis/lettuce/releases) - [Changelog](https://github.com/redis/lettuce/blob/6.8.1.RELEASE/RELEASE-NOTES.md) - [Commits](https://github.com/redis/lettuce/compare/6.2.6.RELEASE...6.8.1.RELEASE) Updates `commons-cli:commons-cli` from 1.5.0 to 1.10.0 - [Changelog](https://github.com/apache/commons-cli/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-cli/compare/commons-cli-1.5.0...rel/commons-cli-1.10.0) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-annotations dependency-version: 4.9.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: org.apache.commons:commons-lang3 dependency-version: 3.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: io.lettuce:lettuce-core dependency-version: 6.8.1.RELEASE dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: commons-cli:commons-cli dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates ... Signed-off-by: dependabot[bot] --- java/benchmarks/build.gradle | 6 +++--- java/client/build.gradle | 4 ++-- java/integTest/build.gradle | 2 +- java/jedis-compatibility/build.gradle | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/java/benchmarks/build.gradle b/java/benchmarks/build.gradle index 5f47def2df..95ee3be9ca 100644 --- a/java/benchmarks/build.gradle +++ b/java/benchmarks/build.gradle @@ -30,10 +30,10 @@ dependencies { // This dependency is used internally, and not exposed to consumers on their own compile classpath. implementation 'com.google.guava:guava:33.5.0-jre' implementation 'redis.clients:jedis:5.1.2' - implementation 'io.lettuce:lettuce-core:6.2.6.RELEASE' implementation 'io.lettuce:lettuce-core:6.8.1.RELEASE' - implementation 'commons-cli:commons-cli:1.5.0' - implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0' + implementation 'io.lettuce:lettuce-core:6.8.1.RELEASE' + implementation 'commons-cli:commons-cli:1.10.0' + implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0' implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1' implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2' } diff --git a/java/client/build.gradle b/java/client/build.gradle index 5b08b319d3..39ce41ce81 100644 --- a/java/client/build.gradle +++ b/java/client/build.gradle @@ -20,9 +20,9 @@ dependencies { prefer '4.29.1' } } - implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0' + implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0' - compileOnly 'com.github.spotbugs:spotbugs-annotations:4.8.6' + compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.8' // junit testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0' diff --git a/java/integTest/build.gradle b/java/integTest/build.gradle index cfe90bb156..74e54e3a63 100644 --- a/java/integTest/build.gradle +++ b/java/integTest/build.gradle @@ -26,7 +26,7 @@ dependencies { // Use published jedis-compatibility artifact testImplementation group: 'io.valkey', name: 'valkey-glide-jedis-compatibility', version: project.ext.defaultReleaseVersion, classifier: osdetector.classifier - implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0' + implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0' implementation 'com.google.code.gson:gson:2.13.2' // Add commons-pool2 as compile-time dependency for tests diff --git a/java/jedis-compatibility/build.gradle b/java/jedis-compatibility/build.gradle index ca521670a1..10c85bd673 100644 --- a/java/jedis-compatibility/build.gradle +++ b/java/jedis-compatibility/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation project(':client') // Transitive dependencies needed by GLIDE client - implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0' + implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0' implementation('com.google.protobuf:protobuf-java') { version { @@ -43,7 +43,7 @@ dependencies { testAnnotationProcessor 'org.projectlombok:lombok:1.18.42' // SpotBugs annotations for static analysis (compile-only to avoid IDE errors) - compileOnly 'com.github.spotbugs:spotbugs-annotations:4.8.0' + compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.8' } java {