Skip to content

Commit 3e5e013

Browse files
authored
Merge pull request #5931 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents e2aeb68 + e08d7b6 commit 3e5e013

File tree

28 files changed

+42
-42
lines changed

28 files changed

+42
-42
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
if: github.repository == 'testcontainers/testcontainers-java'
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: release-drafter/release-drafter@06a49bf28488e030d35ca2ac6dbf7f408a481779 # v5.19.0
21+
- uses: release-drafter/release-drafter@df69d584deac33d8569990cb6413f82447181076 # v5.19.0
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-docs-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
2424
git diff
2525
- name: Create Pull Request
26-
uses: peter-evans/create-pull-request@18f90432bedd2afd6a825469ffd38aa24712a91d # v3.10.1
26+
uses: peter-evans/create-pull-request@671dc9c9e0c2d73f07fa45a3eb0220e1622f0c5f # v3.10.1
2727
with:
2828
title: Update docs version to ${GITHUB_REF##*/}
2929
body: |

core/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ configurations.all {
6161

6262
dependencies {
6363
api 'junit:junit:4.13.2'
64-
api 'org.slf4j:slf4j-api:2.0.0'
64+
api 'org.slf4j:slf4j-api:2.0.3'
6565
compileOnly 'org.jetbrains:annotations:23.0.0'
6666
testCompileOnly 'org.jetbrains:annotations:23.0.0'
6767
api 'org.apache.commons:commons-compress:1.21'
@@ -80,18 +80,18 @@ dependencies {
8080

8181
api 'com.github.docker-java:docker-java-transport-zerodep'
8282

83-
shaded "org.yaml:snakeyaml:1.31"
83+
shaded "org.yaml:snakeyaml:1.33"
8484

8585
shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'
8686

8787
shaded 'org.zeroturnaround:zt-exec:1.12'
8888

8989
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
9090
testImplementation 'redis.clients:jedis:4.2.3'
91-
testImplementation 'com.rabbitmq:amqp-client:5.15.0'
91+
testImplementation 'com.rabbitmq:amqp-client:5.16.0'
9292
testImplementation 'org.mongodb:mongo-java-driver:3.12.11'
9393

94-
testImplementation ('org.mockito:mockito-core:4.7.0') {
94+
testImplementation ('org.mockito:mockito-core:4.8.0') {
9595
exclude(module: 'hamcrest-core')
9696
}
9797
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest

examples/cucumber/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ dependencies {
1111
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
1212
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
1313
testImplementation 'io.cucumber:cucumber-java:7.6.0'
14-
testImplementation 'io.cucumber:cucumber-junit:7.6.0'
14+
testImplementation 'io.cucumber:cucumber-junit:7.8.0'
1515
testImplementation 'org.testcontainers:selenium'
1616
}

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.24"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.24"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.2.1'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.3.0'
1414
testImplementation 'org.assertj:assertj-core:3.23.1'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.2.11'

examples/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88
dependencies {
99
compileOnly 'org.slf4j:slf4j-api:2.0.0'
1010
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
11-
implementation 'org.json:json:20220320'
11+
implementation 'org.json:json:20220924'
1212
testImplementation 'org.postgresql:postgresql:42.5.0'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.11'
1414
testImplementation 'org.testcontainers:postgresql'

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.3'
3+
id 'org.springframework.boot' version '2.7.4'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
99
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.1"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.1"
1111
}
1212
}
1313

examples/spring-boot-kotlin-redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("org.springframework.boot") version "2.7.3"
2+
id("org.springframework.boot") version "2.7.4"
33
id("org.jetbrains.kotlin.jvm") version "1.7.10"
44
id("org.jetbrains.kotlin.plugin.spring") version "1.7.10"
55
}

examples/spring-boot/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.3'
3+
id 'org.springframework.boot' version '2.7.4'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66
shaded 'com.squareup.okhttp3:okhttp:4.10.0'
77

88
testImplementation 'org.assertj:assertj-core:3.23.1'
9-
testImplementation 'com.azure:azure-cosmos:4.35.1'
9+
testImplementation 'com.azure:azure-cosmos:4.36.0'
1010
}

modules/cassandra/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ dependencies {
1010
api project(":database-commons")
1111
api "com.datastax.cassandra:cassandra-driver-core:3.10.0"
1212

13-
testImplementation 'com.datastax.oss:java-driver-core:4.14.1'
13+
testImplementation 'com.datastax.oss:java-driver-core:4.15.0'
1414
testImplementation 'org.assertj:assertj-core:3.23.1'
1515
}

modules/consul/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation 'com.ecwid.consul:consul-api:1.4.5'
7-
testImplementation 'io.rest-assured:rest-assured:5.1.1'
7+
testImplementation 'io.rest-assured:rest-assured:5.2.0'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99
}

modules/couchbase/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55
// TODO use JDK's HTTP client and/or Apache HttpClient5
66
shaded 'com.squareup.okhttp3:okhttp:4.10.0'
77

8-
testImplementation 'com.couchbase.client:java-client:3.3.3'
8+
testImplementation 'com.couchbase.client:java-client:3.3.4'
99
testImplementation 'org.awaitility:awaitility:4.2.0'
1010
testImplementation 'org.assertj:assertj-core:3.23.1'
1111
}

modules/dynalite/build.gradle

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

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.295'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.313'
77
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.295'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99
}

modules/elasticsearch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "TestContainers :: elasticsearch"
22

33
dependencies {
44
api project(':testcontainers')
5-
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.4.1"
5+
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.4.2"
66
testImplementation "org.elasticsearch.client:transport:7.17.6"
77
testImplementation 'org.assertj:assertj-core:3.23.1'
88
}

modules/gcloud/build.gradle

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

6-
testImplementation 'com.google.cloud:google-cloud-datastore:2.11.0'
6+
testImplementation 'com.google.cloud:google-cloud-datastore:2.11.4'
77
testImplementation 'com.google.cloud:google-cloud-firestore:3.4.2'
8-
testImplementation 'com.google.cloud:google-cloud-pubsub:1.120.13'
8+
testImplementation 'com.google.cloud:google-cloud-pubsub:1.120.18'
99
testImplementation 'com.google.cloud:google-cloud-spanner:6.29.0'
1010
testImplementation 'com.google.cloud:google-cloud-bigtable:2.11.1'
1111
testImplementation 'org.assertj:assertj-core:3.23.1'

modules/hivemq/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ dependencies {
99
shaded("org.javassist:javassist:3.29.0-GA")
1010
shaded("org.jboss.shrinkwrap:shrinkwrap-api:1.2.6")
1111
shaded("org.jboss.shrinkwrap:shrinkwrap-impl-base:1.2.6")
12-
shaded("net.lingala.zip4j:zip4j:2.11.1")
12+
shaded("net.lingala.zip4j:zip4j:2.11.2")
1313

14-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
14+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1")
1515
testImplementation(project(":junit-jupiter"))
16-
testImplementation("com.hivemq:hivemq-extension-sdk:4.8.3")
16+
testImplementation("com.hivemq:hivemq-extension-sdk:4.9.0")
1717
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.0")
1818
testImplementation("org.apache.httpcomponents:httpclient:4.5.13")
19-
testImplementation("ch.qos.logback:logback-classic:1.4.0")
19+
testImplementation("ch.qos.logback:logback-classic:1.4.1")
2020
testImplementation 'org.assertj:assertj-core:3.23.1'
21-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
21+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.1")
2222
}
2323

2424
test {

modules/jdbc/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ dependencies {
77
compileOnly 'org.jetbrains:annotations:23.0.0'
88
testImplementation 'commons-dbutils:commons-dbutils:1.7'
99
testImplementation 'org.vibur:vibur-dbcp:25.0'
10-
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.0.23'
10+
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.0'
1111
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
1212
testImplementation 'org.assertj:assertj-core:3.23.1'
13-
testImplementation ('org.mockito:mockito-core:4.7.0') {
13+
testImplementation ('org.mockito:mockito-core:4.8.0') {
1414
exclude(module: 'hamcrest-core')
1515
}
1616
}

modules/junit-jupiter/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ description = "Testcontainers :: JUnit Jupiter Extension"
22

33
dependencies {
44
api project(':testcontainers')
5-
api 'org.junit.jupiter:junit-jupiter-api:5.9.0'
5+
api 'org.junit.jupiter:junit-jupiter-api:5.9.1'
66

77
testImplementation project(':mysql')
88
testImplementation project(':postgresql')
99
testImplementation 'com.zaxxer:HikariCP:4.0.3'
1010
testImplementation 'redis.clients:jedis:4.2.3'
1111
testImplementation 'org.apache.httpcomponents:httpclient:4.5.13'
12-
testImplementation ('org.mockito:mockito-core:4.7.0') {
12+
testImplementation ('org.mockito:mockito-core:4.8.0') {
1313
exclude(module: 'hamcrest-core')
1414
}
1515
testImplementation 'org.assertj:assertj-core:3.23.1'
16-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.0'
16+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.1'
1717

1818
testRuntimeOnly 'org.postgresql:postgresql:42.5.0'
1919
testRuntimeOnly 'mysql:mysql-connector-java:8.0.30'
20-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
20+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
2121
}
2222

2323
test {

modules/localstack/build.gradle

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

6-
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.295'
7-
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.285'
6+
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.313'
7+
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.313'
88
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.295'
9-
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.295'
9+
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.313'
1010
testImplementation 'software.amazon.awssdk:s3:2.17.266'
1111
testImplementation 'org.assertj:assertj-core:3.23.1'
1212
}

modules/mariadb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.3'
1111

1212
testImplementation project(':jdbc-test')
13-
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.0.7'
13+
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.0.8'
1414

1515
testImplementation testFixtures(project(':r2dbc'))
1616
testImplementation 'org.mariadb:r2dbc-mariadb:1.0.2'

modules/mssqlserver/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compileOnly 'io.r2dbc:r2dbc-mssql:0.9.0.RELEASE'
1111

1212
testImplementation project(':jdbc-test')
13-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:11.2.0.jre8'
13+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:11.2.1.jre8'
1414

1515
testImplementation project(':r2dbc')
1616
testImplementation 'io.r2dbc:r2dbc-mssql:0.8.7.RELEASE'

modules/r2dbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ dependencies {
1515
testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
1616
testImplementation project(':postgresql')
1717

18-
testFixturesImplementation 'io.projectreactor:reactor-core:3.4.22'
18+
testFixturesImplementation 'io.projectreactor:reactor-core:3.4.23'
1919
testFixturesImplementation 'org.assertj:assertj-core:3.23.1'
2020
}

modules/rabbitmq/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "TestContainers :: RabbitMQ"
22

33
dependencies {
44
api project(":testcontainers")
5-
testImplementation 'com.rabbitmq:amqp-client:5.15.0'
5+
testImplementation 'com.rabbitmq:amqp-client:5.16.0'
66
testImplementation 'org.assertj:assertj-core:3.23.1'
77
compileOnly 'org.jetbrains:annotations:23.0.0'
88
}

modules/redpanda/build.gradle

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

6-
testImplementation 'org.apache.kafka:kafka-clients:3.2.1'
6+
testImplementation 'org.apache.kafka:kafka-clients:3.3.0'
77
testImplementation 'org.assertj:assertj-core:3.23.1'
88
}

modules/vault/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation 'com.bettercloud:vault-java-driver:5.1.0'
7-
testImplementation 'io.rest-assured:rest-assured:5.1.1'
7+
testImplementation 'io.rest-assured:rest-assured:5.2.0'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99

1010
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.1"
9-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8"
9+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.1"
1010
}
1111
}
1212

0 commit comments

Comments
 (0)