Skip to content

Commit f0af74d

Browse files
authored
Merge pull request #11071 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 035a826 + c56ae8f commit f0af74d

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

modules/cockroachdb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: JDBC :: CockroachDB"
33
dependencies {
44
api project(':testcontainers-jdbc')
55

6-
testRuntimeOnly 'org.postgresql:postgresql:42.7.7'
6+
testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
77

88
testImplementation project(':testcontainers-jdbc-test')
99
}

modules/cratedb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: JDBC :: CrateDB"
33
dependencies {
44
api project(':testcontainers-jdbc')
55

6-
testRuntimeOnly 'org.postgresql:postgresql:42.7.7'
6+
testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
77

88
testImplementation project(':testcontainers-jdbc-test')
99

modules/elasticsearch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: elasticsearch"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:9.1.2"
6+
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:9.1.4"
77
testImplementation "org.elasticsearch.client:transport:7.17.29"
88
}
99

modules/milvus/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ description = "Testcontainers :: Milvus"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'io.milvus:milvus-sdk-java:2.6.3'
6+
testImplementation 'io.milvus:milvus-sdk-java:2.6.5'
77
}

modules/mssqlserver/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ dependencies {
44
api project(':testcontainers-jdbc')
55

66
compileOnly project(':testcontainers-r2dbc')
7-
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
7+
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.3.RELEASE'
88

99
testImplementation project(':testcontainers-jdbc-test')
1010
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.2.0.jre8'
1111

1212
testImplementation project(':testcontainers-r2dbc')
13-
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
13+
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.3.RELEASE'
1414

1515
// MSSQL's wait strategy requires the JDBC driver
1616
testImplementation testFixtures(project(':testcontainers-r2dbc'))

modules/neo4j/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333

3434
api project(":testcontainers")
3535

36-
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.20'
36+
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.21'
3737
}
3838

3939
tasks.japicmp {

modules/orientdb/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description = "Testcontainers :: Orientdb"
33
dependencies {
44
api project(":testcontainers")
55

6-
api "com.orientechnologies:orientdb-client:3.2.43"
6+
api "com.orientechnologies:orientdb-client:3.2.44"
77

88
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.4'
9-
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.43"
9+
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.44"
1010
}
1111

1212
tasks.japicmp {

modules/postgresql/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testRuntimeOnly 'org.postgresql:postgresql:42.7.7'
10+
testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
1111

1212
testImplementation testFixtures(project(':testcontainers-r2dbc'))
1313
testRuntimeOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'

modules/questdb/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ dependencies {
44
api project(':testcontainers')
55
api project(':testcontainers-jdbc')
66

7-
testRuntimeOnly 'org.postgresql:postgresql:42.7.7'
7+
testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'org.questdb:questdb:9.0.2'
10+
testImplementation 'org.questdb:questdb:9.0.3'
1111
testImplementation 'org.awaitility:awaitility:4.3.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
}

modules/r2dbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
1212
testImplementation project(':testcontainers-postgresql')
1313

14-
testFixturesImplementation 'io.projectreactor:reactor-core:3.7.9'
14+
testFixturesImplementation 'io.projectreactor:reactor-core:3.7.11'
1515
testFixturesImplementation 'org.assertj:assertj-core:3.27.4'
1616
testFixturesImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
1717
}

0 commit comments

Comments
 (0)