Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Combined dependencies PR #6150

Merged
merged 23 commits into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9432b8a
Bump questdb from 6.5.4-jdk8 to 6.5.5-jdk8 in /modules/questdb
dependabot[bot] Nov 7, 2022
8029b2b
Bump trino-jdbc from 401 to 402 in /modules/trino
dependabot[bot] Nov 7, 2022
d651bd7
Bump mssql-jdbc in /modules/mssqlserver
dependabot[bot] Nov 7, 2022
6e96fd3
Bump junit-jupiter-api from 5.4.2 to 5.9.1 in /examples
dependabot[bot] Nov 7, 2022
731835c
Bump org.gradle.test-retry from 1.4.0 to 1.4.1 in /examples
dependabot[bot] Nov 7, 2022
d01c254
Bump aws-java-sdk-dynamodb in /modules/dynalite
dependabot[bot] Nov 7, 2022
5b354d4
Bump com.github.johnrengelman.shadow from 7.0.0 to 7.1.2 in /examples
dependabot[bot] Nov 7, 2022
3e86463
Bump s3 from 2.18.7 to 2.18.11 in /modules/localstack
dependabot[bot] Nov 7, 2022
8a67712
Bump gson from 2.9.1 to 2.10 in /examples
dependabot[bot] Nov 7, 2022
78d0a19
Bump org.springframework.boot from 2.7.4 to 2.7.5 in /examples
dependabot[bot] Nov 7, 2022
39d6a9d
Bump aws-java-sdk-sqs from 1.12.333 to 1.12.336 in /modules/localstack
dependabot[bot] Nov 7, 2022
b71baa3
Bump google-cloud-datastore from 2.12.3 to 2.12.4 in /modules/gcloud
dependabot[bot] Nov 7, 2022
3a4a84d
Merge remote-tracking branch 'origin/dependabot/gradle/modules/locals…
eddumelendez Nov 7, 2022
a8251ee
Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.s…
eddumelendez Nov 7, 2022
a9443a8
Merge remote-tracking branch 'origin/dependabot/gradle/modules/locals…
eddumelendez Nov 7, 2022
13b8a3e
Merge remote-tracking branch 'origin/dependabot/gradle/examples/com.g…
eddumelendez Nov 7, 2022
0c28059
Merge remote-tracking branch 'origin/dependabot/gradle/examples/com.g…
eddumelendez Nov 7, 2022
7f1d731
Merge remote-tracking branch 'origin/dependabot/gradle/modules/dynali…
eddumelendez Nov 7, 2022
422a437
Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.g…
eddumelendez Nov 7, 2022
322d514
Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.j…
eddumelendez Nov 7, 2022
25825e7
Merge remote-tracking branch 'origin/dependabot/gradle/modules/mssqls…
eddumelendez Nov 7, 2022
a64e2e6
Merge remote-tracking branch 'origin/dependabot/gradle/modules/trino/…
eddumelendez Nov 7, 2022
2c6b1fe
Merge remote-tracking branch 'origin/dependabot/gradle/modules/questd…
eddumelendez Nov 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ buildscript {

plugins {
id 'io.franzbecker.gradle-lombok' version '5.0.0'
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'me.champeau.gradle.japicmp' version '0.2.9' apply false
id 'com.diffplug.spotless' version '6.8.0' apply false
id 'org.gradle.test-retry' version '1.4.0'
id 'org.gradle.test-retry' version '1.4.1'
}

apply from: "$rootDir/gradle/ci-support.gradle"
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/junit5/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Examples for docs"
dependencies {
api "io.lettuce:lettuce-core:5.1.1.RELEASE"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.1"
testImplementation project(":testcontainers")
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache-testng/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'redis.clients:jedis:4.2.3'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'ch.qos.logback:logback-classic:1.3.4'
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'redis.clients:jedis:4.2.3'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'junit:junit:4.13.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.4'
id 'org.springframework.boot' version '2.7.5'
}
apply plugin: 'io.spring.dependency-management'

Expand Down
2 changes: 1 addition & 1 deletion examples/singleton-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
dependencies {

implementation 'redis.clients:jedis:4.2.3'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.guava:guava:23.0'
compileOnly 'org.slf4j:slf4j-api:1.7.36'

Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot-kotlin-redis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.springframework.boot") version "2.7.4"
id("org.springframework.boot") version "2.7.5"
id("org.jetbrains.kotlin.jvm") version "1.7.20"
id("org.jetbrains.kotlin.plugin.spring") version "1.7.20"
}
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.4'
id 'org.springframework.boot' version '2.7.5'
}
apply plugin: 'io.spring.dependency-management'

Expand Down
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"
dependencies {
api project(':testcontainers')

compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.333'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.314'
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.336'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.336'
testImplementation 'org.assertj:assertj-core:3.23.1'
}
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 'com.google.cloud:google-cloud-datastore:2.12.3'
testImplementation 'com.google.cloud:google-cloud-datastore:2.12.4'
testImplementation 'com.google.cloud:google-cloud-firestore:3.7.0'
testImplementation 'com.google.cloud:google-cloud-pubsub:1.120.24'
testImplementation 'com.google.cloud:google-cloud-spanner:6.32.0'
Expand Down
4 changes: 2 additions & 2 deletions modules/localstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ dependencies {

compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.333'
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.333'
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.333'
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.336'
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.334'
testImplementation 'software.amazon.awssdk:s3:2.18.7'
testImplementation 'software.amazon.awssdk:s3:2.18.11'
testImplementation 'org.assertj:assertj-core:3.23.1'
}
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:0.9.0.RELEASE'

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

testImplementation project(':r2dbc')
testImplementation 'io.r2dbc:r2dbc-mssql:0.8.7.RELEASE'
Expand Down
2 changes: 1 addition & 1 deletion modules/questdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
testImplementation 'org.postgresql:postgresql:42.5.0'
testImplementation project(':jdbc-test')
testImplementation 'org.assertj:assertj-core:3.23.1'
testImplementation 'org.questdb:questdb:6.5.4-jdk8'
testImplementation 'org.questdb:questdb:6.5.5-jdk8'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.13'
}
2 changes: 1 addition & 1 deletion modules/trino/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')
testImplementation 'io.trino:trino-jdbc:401'
testImplementation 'io.trino:trino-jdbc:402'
compileOnly 'org.jetbrains:annotations:23.0.0'
}