Skip to content

Commit

Permalink
Merge pull request #7955 from testcontainers/combined-pr-branch
Browse files Browse the repository at this point in the history
Combined dependencies PR
  • Loading branch information
eddumelendez committed Dec 12, 2023
2 parents f0c5759 + 4a45efd commit 545653c
Show file tree
Hide file tree
Showing 47 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
steps:
- name: combine-prs
id: combine-prs
uses: github/combine-prs@v4.1.0
uses: github/combine-prs@v5.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies {
api 'org.slf4j:slf4j-api:1.7.36'
compileOnly 'org.jetbrains:annotations:24.0.1'
testCompileOnly 'org.jetbrains:annotations:24.0.1'
api 'org.apache.commons:commons-compress:1.24.0'
api 'org.apache.commons:commons-compress:1.25.0'
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
exclude(group: 'org.jetbrains', module: 'annotations')
}
Expand Down Expand Up @@ -110,7 +110,7 @@ dependencies {
exclude group: 'com.google.guava', module: 'guava'
}
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation 'redis.clients:jedis:5.0.2'
testImplementation 'redis.clients:jedis:5.1.0'
testImplementation 'com.rabbitmq:amqp-client:5.20.0'
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/junit4/generic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
testImplementation project(":mysql")

testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
testImplementation "org.seleniumhq.selenium:selenium-api:4.15.0"
testImplementation "org.seleniumhq.selenium:selenium-api:4.16.1"
testImplementation 'org.assertj:assertj-core:3.24.2'
}

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/junit4/redis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "Examples for docs"

dependencies {
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
api "io.lettuce:lettuce-core:6.3.0.RELEASE"

testImplementation "junit:junit:4.13.2"
testImplementation project(":testcontainers")
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/junit5/redis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "Examples for docs"

dependencies {
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
api "io.lettuce:lettuce-core:6.3.0.RELEASE"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/spock/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

dependencies {
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testImplementation project(":spock")
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
Expand Down
4 changes: 2 additions & 2 deletions examples/cucumber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ repositories {
}

dependencies {
implementation platform('org.seleniumhq.selenium:selenium-bom:4.15.0')
implementation platform('org.seleniumhq.selenium:selenium-bom:4.16.1')
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'

testImplementation platform('io.cucumber:cucumber-bom:7.14.0')
testImplementation platform('io.cucumber:cucumber-bom:7.15.0')
testImplementation 'io.cucumber:cucumber-java'
testImplementation 'io.cucumber:cucumber-junit'
testImplementation 'org.testcontainers:selenium'
Expand Down
2 changes: 1 addition & 1 deletion examples/kafka-cluster/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
testCompileOnly "org.projectlombok:lombok:1.18.30"
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
testImplementation 'org.testcontainers:kafka'
testImplementation 'org.apache.kafka:kafka-clients:3.6.0'
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'com.google.guava:guava:23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
Expand Down
2 changes: 1 addition & 1 deletion examples/linked-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'org.json:json:20231013'
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
testImplementation 'org.testcontainers:postgresql'
testImplementation 'org.assertj:assertj-core:3.24.2'
Expand Down
2 changes: 1 addition & 1 deletion examples/selenium-container/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.17'
id 'org.springframework.boot' version '2.7.18'
}
apply plugin: 'io.spring.dependency-management'

Expand Down
2 changes: 1 addition & 1 deletion examples/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.15.1"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.16"
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.12"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.17'
id 'org.springframework.boot' version '2.7.18'
}
apply plugin: 'io.spring.dependency-management'

Expand Down
2 changes: 1 addition & 1 deletion modules/azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ dependencies {
shaded 'com.squareup.okhttp3:okhttp:4.12.0'

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'com.azure:azure-cosmos:4.52.0'
testImplementation 'com.azure:azure-cosmos:4.53.1'
}
2 changes: 1 addition & 1 deletion modules/cockroachdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
api project(':jdbc')

testImplementation project(':jdbc-test')
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion modules/consul/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
api project(':testcontainers')

testImplementation 'com.ecwid.consul:consul-api:1.4.5'
testImplementation 'io.rest-assured:rest-assured:5.3.2'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion modules/couchbase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
// TODO use JDK's HTTP client and/or Apache HttpClient5
shaded 'com.squareup.okhttp3:okhttp:4.12.0'

testImplementation 'com.couchbase.client:java-client:3.4.11'
testImplementation 'com.couchbase.client:java-client:3.5.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
4 changes: 2 additions & 2 deletions modules/cratedb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api project(':jdbc')

testImplementation project(':jdbc-test')
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'

compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
}
2 changes: 1 addition & 1 deletion modules/db2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
api project(':jdbc')

testImplementation project(':jdbc-test')
testRuntimeOnly 'com.ibm.db2:jcc:11.5.8.0'
testRuntimeOnly 'com.ibm.db2:jcc:11.5.9.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
4 changes: 2 additions & 2 deletions modules/dynalite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite (deprecated)"
dependencies {
api project(':testcontainers')

compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.587'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.587'
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.609'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.609'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion modules/gcloud/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: GCloud"
dependencies {
api project(':testcontainers')

testImplementation platform("com.google.cloud:libraries-bom:26.27.0")
testImplementation platform("com.google.cloud:libraries-bom:26.28.0")
testImplementation 'com.google.cloud:google-cloud-bigquery'
testImplementation 'com.google.cloud:google-cloud-datastore'
testImplementation 'com.google.cloud:google-cloud-firestore'
Expand Down
8 changes: 4 additions & 4 deletions modules/hivemq/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ description = "Testcontainers :: HiveMQ"

dependencies {
api(project(":testcontainers"))
api("org.jetbrains:annotations:24.0.1")
api("org.jetbrains:annotations:24.1.0")

shaded("org.apache.commons:commons-lang3:3.13.0")
shaded("commons-io:commons-io:2.15.0")
shaded("commons-io:commons-io:2.15.1")
shaded("org.javassist:javassist:3.29.2-GA")
shaded("org.jboss.shrinkwrap:shrinkwrap-api:1.2.6")
shaded("org.jboss.shrinkwrap:shrinkwrap-impl-base:1.2.6")
shaded("net.lingala.zip4j:zip4j:2.11.5")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testImplementation(project(":junit-jupiter"))
testImplementation("com.hivemq:hivemq-extension-sdk:4.22.0")
testImplementation("com.hivemq:hivemq-extension-sdk:4.23.0")
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.3")
testImplementation("org.apache.httpcomponents:httpclient:4.5.14")
testImplementation("ch.qos.logback:logback-classic:1.4.11")
testImplementation("ch.qos.logback:logback-classic:1.4.14")
testImplementation 'org.assertj:assertj-core:3.24.2'
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
}
Expand Down
2 changes: 1 addition & 1 deletion modules/influxdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ dependencies {

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.influxdb:influxdb-java:2.23'
testImplementation "com.influxdb:influxdb-client-java:6.10.0"
testImplementation "com.influxdb:influxdb-client-java:6.11.0"
}
2 changes: 1 addition & 1 deletion modules/jdbc-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
api project(':jdbc')

api 'com.google.guava:guava:32.1.3-jre'
api 'org.apache.commons:commons-lang3:3.13.0'
api 'org.apache.commons:commons-lang3:3.14.0'
api 'com.zaxxer:HikariCP-java6:2.3.13'
api 'commons-dbutils:commons-dbutils:1.8.1'

Expand Down
2 changes: 1 addition & 1 deletion modules/jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
compileOnly 'org.jetbrains:annotations:24.0.1'
testImplementation 'commons-dbutils:commons-dbutils:1.8.1'
testImplementation 'org.vibur:vibur-dbcp:25.0'
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.15'
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.16'
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation ('org.mockito:mockito-core:4.11.0') {
Expand Down
4 changes: 2 additions & 2 deletions modules/junit-jupiter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ dependencies {
testImplementation project(':mysql')
testImplementation project(':postgresql')
testImplementation 'com.zaxxer:HikariCP:4.0.3'
testImplementation 'redis.clients:jedis:5.0.2'
testImplementation 'redis.clients:jedis:5.1.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation ('org.mockito:mockito-core:4.11.0') {
exclude(module: 'hamcrest-core')
}
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.junit.jupiter:junit-jupiter'

testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
}

Expand Down
2 changes: 1 addition & 1 deletion modules/kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Kafka"
dependencies {
api project(':testcontainers')

testImplementation 'org.apache.kafka:kafka-clients:3.6.0'
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'com.google.guava:guava:23.0'
}
2 changes: 1 addition & 1 deletion modules/localstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ dependencies {
testImplementation 'com.amazonaws:aws-java-sdk-s3'
testImplementation 'com.amazonaws:aws-java-sdk-sqs'
testImplementation 'com.amazonaws:aws-java-sdk-logs'
testImplementation 'software.amazon.awssdk:s3:2.21.22'
testImplementation 'software.amazon.awssdk:s3:2.21.43'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion modules/mariadb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.3'

testImplementation project(':jdbc-test')
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.3.0'
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.3.1'

testImplementation testFixtures(project(':r2dbc'))
testRuntimeOnly 'org.mariadb:r2dbc-mariadb:1.0.3'
Expand Down
2 changes: 1 addition & 1 deletion modules/mssqlserver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'

testImplementation project(':jdbc-test')
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:12.4.2.jre8'
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:12.5.0.jre8-preview'

testImplementation project(':r2dbc')
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
Expand Down
2 changes: 1 addition & 1 deletion modules/mysql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ dependencies {
testImplementation testFixtures(project(':r2dbc'))
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.0.5'

compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
}
2 changes: 1 addition & 1 deletion modules/nginx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ description = "Testcontainers :: Nginx"

dependencies {
api project(':testcontainers')
compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion modules/oracle-free/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
testImplementation project(':jdbc-test')
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.3.0.23.09'

compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'

testImplementation testFixtures(project(':r2dbc'))
testRuntimeOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.2.0'
Expand Down
2 changes: 1 addition & 1 deletion modules/oracle-xe/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
testImplementation project(':jdbc-test')
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.3.0.23.09'

compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'

testImplementation testFixtures(project(':r2dbc'))
testRuntimeOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.2.0'
Expand Down
4 changes: 2 additions & 2 deletions modules/orientdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ description = "Testcontainers :: Orientdb"
dependencies {
api project(":testcontainers")

api "com.orientechnologies:orientdb-client:3.2.24"
api "com.orientechnologies:orientdb-client:3.2.25"

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.0'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.1'
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.24"
}
4 changes: 2 additions & 2 deletions modules/postgresql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies {
compileOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'

testImplementation project(':jdbc-test')
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'

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

compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
}
2 changes: 1 addition & 1 deletion modules/presto/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ dependencies {

testImplementation project(':jdbc-test')
testRuntimeOnly 'io.prestosql:presto-jdbc:350'
compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
}
4 changes: 2 additions & 2 deletions modules/questdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ dependencies {
api project(':testcontainers')
api project(':jdbc')

testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
testImplementation project(':jdbc-test')
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.questdb:questdb:7.3.4'
testImplementation 'org.questdb:questdb:7.3.7'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
}
Expand Down
2 changes: 1 addition & 1 deletion modules/rabbitmq/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
api project(":testcontainers")
testImplementation 'com.rabbitmq:amqp-client:5.20.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
}
4 changes: 2 additions & 2 deletions modules/redpanda/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api project(':testcontainers')
shaded 'org.freemarker:freemarker:2.3.32'

testImplementation 'org.apache.kafka:kafka-clients:3.6.0'
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'io.rest-assured:rest-assured:5.3.2'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
}
Loading

0 comments on commit 545653c

Please sign in to comment.