Skip to content

Commit 5cd754f

Browse files
authored
Merge pull request #7494 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 1084b20 + 55ddf12 commit 5cd754f

File tree

29 files changed

+35
-35
lines changed

29 files changed

+35
-35
lines changed

.github/workflows/combine-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- name: combine-prs
1515
id: combine-prs
16-
uses: github/[email protected].1
16+
uses: github/[email protected].2
1717
with:
1818
github_token: ${{ secrets.GITHUB_TOKEN }}

docs/examples/junit4/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.2.3.RELEASE"
4+
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
55

66
testImplementation "junit:junit:4.13.2"
77
testImplementation project(":testcontainers")

docs/examples/junit5/redis/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.2.3.RELEASE"
4+
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
7-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3"
7+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.0"
88
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
99
testImplementation project(":testcontainers")
1010
testImplementation project(":junit-jupiter")

docs/examples/spock/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
dependencies {
7-
api "io.lettuce:lettuce-core:6.2.3.RELEASE"
7+
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
99
testImplementation project(":spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.8'

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
testCompileOnly "org.projectlombok:lombok:1.18.28"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.28"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.4.0'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.5.1'
1414
testImplementation 'org.assertj:assertj-core:3.24.2'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.3.8'

examples/nats/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.24.2'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'io.nats:jnats:2.16.13'
12+
testImplementation 'io.nats:jnats:2.16.14'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.8'
1414
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1515
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'

examples/neo4j-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.24.2'
11-
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.11'
11+
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.12'
1212
testImplementation 'org.testcontainers:neo4j'
1313
testImplementation 'org.testcontainers:junit-jupiter'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'

examples/redis-backed-cache-testng/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:4.3.2'
11+
implementation 'redis.clients:jedis:4.4.3'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/redis-backed-cache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:4.3.2'
11+
implementation 'redis.clients:jedis:4.4.3'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/selenium-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.13'
3+
id 'org.springframework.boot' version '2.7.15'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

0 commit comments

Comments
 (0)