Skip to content

Commit de283d9

Browse files
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](spotbugs/spotbugs@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](redis/lettuce@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](apache/commons-cli@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] <[email protected]>
1 parent 7ddb780 commit de283d9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

java/benchmarks/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ dependencies {
3030
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
3131
implementation 'com.google.guava:guava:33.5.0-jre'
3232
implementation 'redis.clients:jedis:5.1.2'
33-
implementation 'io.lettuce:lettuce-core:6.2.6.RELEASE'
3433
implementation 'io.lettuce:lettuce-core:6.8.1.RELEASE'
35-
implementation 'commons-cli:commons-cli:1.5.0'
36-
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
34+
implementation 'io.lettuce:lettuce-core:6.8.1.RELEASE'
35+
implementation 'commons-cli:commons-cli:1.10.0'
36+
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'
3737
implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
3838
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
3939
}

java/client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ dependencies {
2020
prefer '4.29.1'
2121
}
2222
}
23-
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
23+
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'
2424

25-
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.8.6'
25+
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.6'
2626

2727
// junit
2828
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0'

java/integTest/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
// Use published jedis-compatibility artifact
2727
testImplementation group: 'io.valkey', name: 'valkey-glide-jedis-compatibility', version: project.ext.defaultReleaseVersion, classifier: osdetector.classifier
2828

29-
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
29+
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'
3030
implementation 'com.google.code.gson:gson:2.13.2'
3131

3232
// Add commons-pool2 as compile-time dependency for tests

java/jedis-compatibility/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
implementation project(':client')
2020

2121
// Transitive dependencies needed by GLIDE client
22-
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
22+
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'
2323

2424
implementation('com.google.protobuf:protobuf-java') {
2525
version {
@@ -43,7 +43,7 @@ dependencies {
4343
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'
4444

4545
// SpotBugs annotations for static analysis (compile-only to avoid IDE errors)
46-
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.8.0'
46+
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.6'
4747
}
4848

4949
java {

0 commit comments

Comments
 (0)