diff --git a/.github/workflows/combine-prs.yml b/.github/workflows/combine-prs.yml index a12fc172f65..2a634b34f22 100644 --- a/.github/workflows/combine-prs.yml +++ b/.github/workflows/combine-prs.yml @@ -13,6 +13,6 @@ jobs: steps: - name: combine-prs id: combine-prs - uses: github/combine-prs@v2.1.0 + uses: github/combine-prs@v3.0.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/update-docs-version.yml b/.github/workflows/update-docs-version.yml index a511a8913de..8d69726bef3 100644 --- a/.github/workflows/update-docs-version.yml +++ b/.github/workflows/update-docs-version.yml @@ -23,7 +23,7 @@ jobs: sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml git diff - name: Create Pull Request - uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v3.10.1 + uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v3.10.1 with: title: Update docs version to ${GITHUB_REF##*/} body: | diff --git a/.github/workflows/update-testcontainers-version.yml b/.github/workflows/update-testcontainers-version.yml index 8c34789b25c..2a8f366e548 100644 --- a/.github/workflows/update-testcontainers-version.yml +++ b/.github/workflows/update-testcontainers-version.yml @@ -23,7 +23,7 @@ jobs: sed -i "s/^testcontainers\.version=.*/testcontainers\.version=${GITHUB_REF##*/}/g" gradle.properties git diff - name: Create Pull Request - uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v3.10.1 + uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v3.10.1 with: title: Update testcontainers version to ${GITHUB_REF##*/} body: | diff --git a/build.gradle b/build.gradle index 4737b5c043f..aaa5273ce36 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ buildscript { plugins { id 'io.franzbecker.gradle-lombok' version '5.0.0' - id 'com.github.johnrengelman.shadow' version '8.1.0' + id 'com.github.johnrengelman.shadow' version '8.1.1' id 'me.champeau.gradle.japicmp' version '0.4.1' apply false id 'com.diffplug.spotless' version '6.13.0' apply false } diff --git a/core/build.gradle b/core/build.gradle index a8417e69d37..ff07f2ec454 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -69,14 +69,14 @@ configurations.all { dependencies { api 'junit:junit:4.13.2' api 'org.slf4j:slf4j-api:1.7.36' - compileOnly 'org.jetbrains:annotations:24.0.0' - testCompileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' + testCompileOnly 'org.jetbrains:annotations:24.0.1' api 'org.apache.commons:commons-compress:1.22' api ('org.rnorth.duct-tape:duct-tape:1.0.8') { exclude(group: 'org.jetbrains', module: 'annotations') } - provided('com.google.cloud.tools:jib-core:0.22.0') { + provided('com.google.cloud.tools:jib-core:0.23.0') { exclude group: 'com.google.guava', module: 'guava' exclude group: 'com.fasterxml.jackson.datatype', module: 'jackson-datatype-jsr310' exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core' @@ -101,10 +101,10 @@ dependencies { shaded 'org.zeroturnaround:zt-exec:1.12' - testImplementation 'com.google.cloud.tools:jib-core:0.22.0' + testImplementation 'com.google.cloud.tools:jib-core:0.23.0' testImplementation 'org.apache.httpcomponents:httpclient:4.5.9' testImplementation 'redis.clients:jedis:4.3.1' - testImplementation 'com.rabbitmq:amqp-client:5.16.0' + testImplementation 'com.rabbitmq:amqp-client:5.17.0' testImplementation 'org.mongodb:mongo-java-driver:3.12.12' testImplementation ('org.mockito:mockito-core:4.11.0') { diff --git a/examples/hazelcast/build.gradle b/examples/hazelcast/build.gradle index a13e16a23c6..63f43c11143 100644 --- a/examples/hazelcast/build.gradle +++ b/examples/hazelcast/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { testImplementation 'org.testcontainers:testcontainers' - testImplementation 'com.hazelcast:hazelcast:5.2.2' + testImplementation 'com.hazelcast:hazelcast:5.2.3' testImplementation 'ch.qos.logback:logback-classic:1.3.5' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/examples/linked-container/build.gradle b/examples/linked-container/build.gradle index b27851a23cb..1aa9dae1b23 100644 --- a/examples/linked-container/build.gradle +++ b/examples/linked-container/build.gradle @@ -9,7 +9,7 @@ dependencies { compileOnly 'org.slf4j:slf4j-api:1.7.36' implementation 'com.squareup.okhttp3:okhttp:4.10.0' implementation 'org.json:json:20230227' - testImplementation 'org.postgresql:postgresql:42.5.4' + testImplementation 'org.postgresql:postgresql:42.6.0' testImplementation 'ch.qos.logback:logback-classic:1.3.5' testImplementation 'org.testcontainers:postgresql' testImplementation 'org.assertj:assertj-core:3.24.2' diff --git a/examples/redis-backed-cache-testng/build.gradle b/examples/redis-backed-cache-testng/build.gradle index 3a1e162c82a..0f284e3ffa7 100644 --- a/examples/redis-backed-cache-testng/build.gradle +++ b/examples/redis-backed-cache-testng/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { compileOnly 'org.slf4j:slf4j-api:1.7.36' - implementation 'redis.clients:jedis:4.3.1' + implementation 'redis.clients:jedis:4.3.2' implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.guava:guava:23.0' testImplementation 'org.testcontainers:testcontainers' diff --git a/examples/redis-backed-cache/build.gradle b/examples/redis-backed-cache/build.gradle index c8286015285..d5807de0899 100644 --- a/examples/redis-backed-cache/build.gradle +++ b/examples/redis-backed-cache/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { compileOnly 'org.slf4j:slf4j-api:1.7.36' - implementation 'redis.clients:jedis:4.3.1' + implementation 'redis.clients:jedis:4.3.2' implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.guava:guava:23.0' testImplementation 'org.testcontainers:testcontainers' diff --git a/examples/selenium-container/build.gradle b/examples/selenium-container/build.gradle index 5e8bb02a184..820564255b2 100644 --- a/examples/selenium-container/build.gradle +++ b/examples/selenium-container/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '2.7.9' + id 'org.springframework.boot' version '2.7.10' } apply plugin: 'io.spring.dependency-management' diff --git a/examples/settings.gradle b/examples/settings.gradle index bb3ce2952db..3e299136854 100644 --- a/examples/settings.gradle +++ b/examples/settings.gradle @@ -7,7 +7,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.12.3" - classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.2" + classpath "com.gradle:common-custom-user-data-gradle-plugin:1.10" } } diff --git a/examples/singleton-container/build.gradle b/examples/singleton-container/build.gradle index ad7d51c883a..a8319bddfa9 100644 --- a/examples/singleton-container/build.gradle +++ b/examples/singleton-container/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { - implementation 'redis.clients:jedis:4.3.1' + implementation 'redis.clients:jedis:4.3.2' implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.guava:guava:23.0' compileOnly 'org.slf4j:slf4j-api:1.7.36' diff --git a/examples/spring-boot-kotlin-redis/build.gradle b/examples/spring-boot-kotlin-redis/build.gradle index eca2ee2fd3f..e99b37485b9 100644 --- a/examples/spring-boot-kotlin-redis/build.gradle +++ b/examples/spring-boot-kotlin-redis/build.gradle @@ -1,7 +1,7 @@ plugins { - id("org.springframework.boot") version "2.7.9" + id("org.springframework.boot") version "2.7.10" id("org.jetbrains.kotlin.jvm") version "1.8.10" - id("org.jetbrains.kotlin.plugin.spring") version "1.8.10" + id("org.jetbrains.kotlin.plugin.spring") version "1.8.20" } apply plugin: 'io.spring.dependency-management' diff --git a/examples/spring-boot/build.gradle b/examples/spring-boot/build.gradle index fb70124e81a..00edc4c78d3 100644 --- a/examples/spring-boot/build.gradle +++ b/examples/spring-boot/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '2.7.9' + id 'org.springframework.boot' version '2.7.10' } apply plugin: 'io.spring.dependency-management' diff --git a/modules/azure/build.gradle b/modules/azure/build.gradle index 33a30b0ecb5..83319057269 100644 --- a/modules/azure/build.gradle +++ b/modules/azure/build.gradle @@ -6,5 +6,5 @@ dependencies { shaded 'com.squareup.okhttp3:okhttp:4.10.0' testImplementation 'org.assertj:assertj-core:3.24.2' - testImplementation 'com.azure:azure-cosmos:4.41.0' + testImplementation 'com.azure:azure-cosmos:4.42.0' } diff --git a/modules/cockroachdb/build.gradle b/modules/cockroachdb/build.gradle index c03157ba2f9..0e26a6f2a96 100644 --- a/modules/cockroachdb/build.gradle +++ b/modules/cockroachdb/build.gradle @@ -4,6 +4,6 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') - testImplementation 'org.postgresql:postgresql:42.5.4' + testImplementation 'org.postgresql:postgresql:42.6.0' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/couchbase/build.gradle b/modules/couchbase/build.gradle index 31be992141d..3e8dca2c1ad 100644 --- a/modules/couchbase/build.gradle +++ b/modules/couchbase/build.gradle @@ -5,7 +5,7 @@ dependencies { // TODO use JDK's HTTP client and/or Apache HttpClient5 shaded 'com.squareup.okhttp3:okhttp:4.10.0' - testImplementation 'com.couchbase.client:java-client:3.4.3' + testImplementation 'com.couchbase.client:java-client:3.4.4' testImplementation 'org.awaitility:awaitility:4.2.0' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/cratedb/build.gradle b/modules/cratedb/build.gradle index d53031542f5..12013aa2c76 100644 --- a/modules/cratedb/build.gradle +++ b/modules/cratedb/build.gradle @@ -7,7 +7,7 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') - testImplementation 'org.postgresql:postgresql:42.5.4' + testImplementation 'org.postgresql:postgresql:42.6.0' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/dynalite/build.gradle b/modules/dynalite/build.gradle index 80d811edc9e..c29e1a5cae8 100644 --- a/modules/dynalite/build.gradle +++ b/modules/dynalite/build.gradle @@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite" dependencies { api project(':testcontainers') - compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.418' - testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.418' + compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.441' + testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.441' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/elasticsearch/build.gradle b/modules/elasticsearch/build.gradle index 5d2132fe0d7..ea966a763be 100644 --- a/modules/elasticsearch/build.gradle +++ b/modules/elasticsearch/build.gradle @@ -2,7 +2,7 @@ description = "TestContainers :: elasticsearch" dependencies { api project(':testcontainers') - testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.6.2" + testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.7.0" testImplementation "org.elasticsearch.client:transport:7.17.9" testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/gcloud/build.gradle b/modules/gcloud/build.gradle index a8bb9c9f7f0..e8077f34137 100644 --- a/modules/gcloud/build.gradle +++ b/modules/gcloud/build.gradle @@ -3,10 +3,10 @@ description = "Testcontainers :: GCloud" dependencies { api project(':testcontainers') - testImplementation 'com.google.cloud:google-cloud-datastore:2.13.5' + testImplementation 'com.google.cloud:google-cloud-datastore:2.14.2' testImplementation 'com.google.cloud:google-cloud-firestore:3.8.1' - testImplementation 'com.google.cloud:google-cloud-pubsub:1.123.4' + testImplementation 'com.google.cloud:google-cloud-pubsub:1.123.8' testImplementation 'com.google.cloud:google-cloud-spanner:6.36.1' - testImplementation 'com.google.cloud:google-cloud-bigtable:2.19.2' + testImplementation 'com.google.cloud:google-cloud-bigtable:2.20.3' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/hivemq/build.gradle b/modules/hivemq/build.gradle index 48d7b5ab25c..1e37b848362 100644 --- a/modules/hivemq/build.gradle +++ b/modules/hivemq/build.gradle @@ -2,7 +2,7 @@ description = "TestContainers :: HiveMQ" dependencies { api(project(":testcontainers")) - api("org.jetbrains:annotations:24.0.0") + api("org.jetbrains:annotations:24.0.1") shaded("org.apache.commons:commons-lang3:3.12.0") shaded("commons-io:commons-io:2.11.0") @@ -13,10 +13,10 @@ dependencies { testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2") testImplementation(project(":junit-jupiter")) - testImplementation("com.hivemq:hivemq-extension-sdk:4.12.0") + testImplementation("com.hivemq:hivemq-extension-sdk:4.14.0") testImplementation("com.hivemq:hivemq-mqtt-client:1.3.0") testImplementation("org.apache.httpcomponents:httpclient:4.5.14") - testImplementation("ch.qos.logback:logback-classic:1.4.5") + testImplementation("ch.qos.logback:logback-classic:1.4.6") testImplementation 'org.assertj:assertj-core:3.24.2' testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2") } diff --git a/modules/influxdb/build.gradle b/modules/influxdb/build.gradle index bd37ae0ce50..457f29e660d 100644 --- a/modules/influxdb/build.gradle +++ b/modules/influxdb/build.gradle @@ -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.7.0" + testImplementation "com.influxdb:influxdb-client-java:6.8.0" } diff --git a/modules/jdbc/build.gradle b/modules/jdbc/build.gradle index 2380dec6185..a3fb4c4dd89 100644 --- a/modules/jdbc/build.gradle +++ b/modules/jdbc/build.gradle @@ -3,10 +3,10 @@ description = "Testcontainers :: JDBC" dependencies { api project(':database-commons') - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' testImplementation 'commons-dbutils:commons-dbutils:1.7' testImplementation 'org.vibur:vibur-dbcp:25.0' - testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.6' + testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.7' testImplementation 'com.zaxxer:HikariCP-java6:2.3.13' testImplementation 'org.assertj:assertj-core:3.24.2' testImplementation ('org.mockito:mockito-core:4.11.0') { diff --git a/modules/junit-jupiter/build.gradle b/modules/junit-jupiter/build.gradle index 8b3988a9982..d5adb84109d 100644 --- a/modules/junit-jupiter/build.gradle +++ b/modules/junit-jupiter/build.gradle @@ -8,7 +8,7 @@ dependencies { testImplementation project(':mysql') testImplementation project(':postgresql') testImplementation 'com.zaxxer:HikariCP:4.0.3' - testImplementation 'redis.clients:jedis:4.3.1' + testImplementation 'redis.clients:jedis:4.3.2' testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' testImplementation ('org.mockito:mockito-core:4.11.0') { exclude(module: 'hamcrest-core') @@ -16,7 +16,7 @@ dependencies { testImplementation 'org.assertj:assertj-core:3.24.2' testImplementation 'org.junit.jupiter:junit-jupiter' - testRuntimeOnly 'org.postgresql:postgresql:42.5.4' + testRuntimeOnly 'org.postgresql:postgresql:42.6.0' testRuntimeOnly 'mysql:mysql-connector-java:8.0.32' } diff --git a/modules/k3s/build.gradle b/modules/k3s/build.gradle index b4dfd6903dd..a04a242b29e 100644 --- a/modules/k3s/build.gradle +++ b/modules/k3s/build.gradle @@ -8,7 +8,7 @@ dependencies { // Any >2.8 version here is not compatible with jackson-databind 2.8.x. shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8' - testImplementation 'io.fabric8:kubernetes-client:6.4.1' + testImplementation 'io.fabric8:kubernetes-client:6.5.1' testImplementation 'io.kubernetes:client-java:17.0.1' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/localstack/build.gradle b/modules/localstack/build.gradle index 731b2b70fd9..63c32007251 100644 --- a/modules/localstack/build.gradle +++ b/modules/localstack/build.gradle @@ -4,8 +4,8 @@ dependencies { api project(':testcontainers') testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.418' - testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.418' + testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.441' testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.418' - testImplementation 'software.amazon.awssdk:s3:2.20.15' + testImplementation 'software.amazon.awssdk:s3:2.20.38' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/mariadb/build.gradle b/modules/mariadb/build.gradle index c9c14ea72d3..697544c9e4f 100644 --- a/modules/mariadb/build.gradle +++ b/modules/mariadb/build.gradle @@ -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.1.2' + testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.1.3' testImplementation testFixtures(project(':r2dbc')) testImplementation 'org.mariadb:r2dbc-mariadb:1.0.3' diff --git a/modules/mysql/build.gradle b/modules/mysql/build.gradle index 395af69604a..bc2af87bcec 100644 --- a/modules/mysql/build.gradle +++ b/modules/mysql/build.gradle @@ -15,5 +15,5 @@ dependencies { testImplementation testFixtures(project(':r2dbc')) testImplementation 'dev.miku:r2dbc-mysql:0.8.2.RELEASE' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/nginx/build.gradle b/modules/nginx/build.gradle index 8a3e319b125..fa26b67237d 100644 --- a/modules/nginx/build.gradle +++ b/modules/nginx/build.gradle @@ -2,6 +2,6 @@ description = "Testcontainers :: Nginx" dependencies { api project(':testcontainers') - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' testImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/oracle-xe/build.gradle b/modules/oracle-xe/build.gradle index 7eccc7972e6..c1f44bb9427 100644 --- a/modules/oracle-xe/build.gradle +++ b/modules/oracle-xe/build.gradle @@ -10,9 +10,9 @@ dependencies { compileOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.0.0' testImplementation project(':jdbc-test') - testImplementation 'com.oracle.database.jdbc:ojdbc11:21.5.0.0' + testImplementation 'com.oracle.database.jdbc:ojdbc11:21.9.0.0' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' testImplementation testFixtures(project(':r2dbc')) testImplementation 'com.oracle.database.r2dbc:oracle-r2dbc:1.0.0' diff --git a/modules/orientdb/build.gradle b/modules/orientdb/build.gradle index 04a1a09b805..0e3c576d7a0 100644 --- a/modules/orientdb/build.gradle +++ b/modules/orientdb/build.gradle @@ -3,7 +3,7 @@ description = "TestContainers :: Orientdb" dependencies { api project(":testcontainers") - api "com.orientechnologies:orientdb-client:3.2.16" + api "com.orientechnologies:orientdb-client:3.2.17" testImplementation 'org.assertj:assertj-core:3.24.2' testImplementation 'org.apache.tinkerpop:gremlin-driver:3.6.2' diff --git a/modules/postgresql/build.gradle b/modules/postgresql/build.gradle index b0ae02fd9b6..b21f21d4e68 100644 --- a/modules/postgresql/build.gradle +++ b/modules/postgresql/build.gradle @@ -10,10 +10,10 @@ dependencies { compileOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE' testImplementation project(':jdbc-test') - testImplementation 'org.postgresql:postgresql:42.5.4' + testImplementation 'org.postgresql:postgresql:42.6.0' testImplementation testFixtures(project(':r2dbc')) testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/presto/build.gradle b/modules/presto/build.gradle index 7d5bde5a64d..63441839eb0 100644 --- a/modules/presto/build.gradle +++ b/modules/presto/build.gradle @@ -5,5 +5,5 @@ dependencies { testImplementation project(':jdbc-test') testImplementation 'io.prestosql:presto-jdbc:350' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/questdb/build.gradle b/modules/questdb/build.gradle index 3ff8525a340..88826ccb237 100644 --- a/modules/questdb/build.gradle +++ b/modules/questdb/build.gradle @@ -4,7 +4,7 @@ dependencies { api project(':testcontainers') api project(':jdbc') - testImplementation 'org.postgresql:postgresql:42.5.4' + testImplementation 'org.postgresql:postgresql:42.6.0' testImplementation project(':jdbc-test') testImplementation 'org.assertj:assertj-core:3.24.2' testImplementation 'org.questdb:questdb:7.0.1-jdk8' diff --git a/modules/r2dbc/build.gradle b/modules/r2dbc/build.gradle index cd542677e43..5d8db9abec1 100644 --- a/modules/r2dbc/build.gradle +++ b/modules/r2dbc/build.gradle @@ -15,6 +15,6 @@ dependencies { testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE' testImplementation project(':postgresql') - testFixturesImplementation 'io.projectreactor:reactor-core:3.5.3' + testFixturesImplementation 'io.projectreactor:reactor-core:3.5.4' testFixturesImplementation 'org.assertj:assertj-core:3.24.2' } diff --git a/modules/rabbitmq/build.gradle b/modules/rabbitmq/build.gradle index 0623e3e6982..bcbeb2bb39c 100644 --- a/modules/rabbitmq/build.gradle +++ b/modules/rabbitmq/build.gradle @@ -2,7 +2,7 @@ description = "TestContainers :: RabbitMQ" dependencies { api project(":testcontainers") - testImplementation 'com.rabbitmq:amqp-client:5.16.0' + testImplementation 'com.rabbitmq:amqp-client:5.17.0' testImplementation 'org.assertj:assertj-core:3.24.2' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/selenium/build.gradle b/modules/selenium/build.gradle index f98b6fc0cee..330ff3d937c 100644 --- a/modules/selenium/build.gradle +++ b/modules/selenium/build.gradle @@ -6,12 +6,12 @@ dependencies { provided 'org.seleniumhq.selenium:selenium-remote-driver:4.6.0' provided 'org.seleniumhq.selenium:selenium-chrome-driver:4.6.0' testImplementation 'org.seleniumhq.selenium:selenium-firefox-driver:4.6.0' - testImplementation 'org.seleniumhq.selenium:selenium-edge-driver:4.8.1' + testImplementation 'org.seleniumhq.selenium:selenium-edge-driver:4.8.3' testImplementation 'org.seleniumhq.selenium:selenium-support:4.6.0' testImplementation 'org.mortbay.jetty:jetty:6.1.26' testImplementation project(':nginx') testImplementation 'org.assertj:assertj-core:3.24.2' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/solace/build.gradle b/modules/solace/build.gradle index dc92cdd58ce..3cfcaac8442 100644 --- a/modules/solace/build.gradle +++ b/modules/solace/build.gradle @@ -6,7 +6,7 @@ dependencies { shaded 'org.awaitility:awaitility:4.2.0' testImplementation 'org.assertj:assertj-core:3.24.2' - testImplementation 'com.solacesystems:sol-jcsmp:10.18.0' + testImplementation 'com.solacesystems:sol-jcsmp:10.19.0' testImplementation 'org.apache.qpid:qpid-jms-client:0.61.0' testImplementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5' testImplementation 'org.apache.httpcomponents:fluent-hc:4.5.14' diff --git a/modules/spock/build.gradle b/modules/spock/build.gradle index a4c09f5ffd8..3e3815198c8 100644 --- a/modules/spock/build.gradle +++ b/modules/spock/build.gradle @@ -15,12 +15,12 @@ dependencies { testImplementation 'com.zaxxer:HikariCP:4.0.3' testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' - testRuntimeOnly 'org.postgresql:postgresql:42.5.4' + testRuntimeOnly 'org.postgresql:postgresql:42.6.0' testRuntimeOnly 'mysql:mysql-connector-java:8.0.32' testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.9.2' testRuntimeOnly 'org.junit.platform:junit-platform-testkit:1.9.2' - testCompileOnly 'org.jetbrains:annotations:24.0.0' + testCompileOnly 'org.jetbrains:annotations:24.0.1' } sourceJar { diff --git a/modules/tidb/build.gradle b/modules/tidb/build.gradle index dabcf3cba26..b1105a3e2b0 100644 --- a/modules/tidb/build.gradle +++ b/modules/tidb/build.gradle @@ -6,5 +6,5 @@ dependencies { testImplementation project(':jdbc-test') testImplementation 'mysql:mysql-connector-java:8.0.32' - compileOnly 'org.jetbrains:annotations:24.0.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } diff --git a/modules/trino/build.gradle b/modules/trino/build.gradle index de022d95faf..2b3ccb11a87 100644 --- a/modules/trino/build.gradle +++ b/modules/trino/build.gradle @@ -4,6 +4,6 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') - testImplementation 'io.trino:trino-jdbc:408' + testImplementation 'io.trino:trino-jdbc:411' compileOnly 'org.jetbrains:annotations:24.0.0' } diff --git a/modules/yugabytedb/build.gradle b/modules/yugabytedb/build.gradle index fa68ba41241..a84b49c1a71 100644 --- a/modules/yugabytedb/build.gradle +++ b/modules/yugabytedb/build.gradle @@ -4,7 +4,7 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') // YCQL driver - testImplementation 'com.yugabyte:java-driver-core:4.6.0-yb-11' + testImplementation 'com.yugabyte:java-driver-core:4.6.0-yb-12' // YSQL driver testImplementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-2' } diff --git a/settings.gradle b/settings.gradle index 9b44be57333..ed6f9726c4a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.12.3" - classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.2" + classpath "com.gradle:common-custom-user-data-gradle-plugin:1.10" classpath "org.gradle.toolchains:foojay-resolver:0.4.0" } }