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 #7292

Merged
merged 15 commits into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
beccd29
Bump redis.clients:jedis from 4.3.2 to 4.4.3 in /core
dependabot[bot] Jul 2, 2023
06c591d
Bump org.testng:testng from 7.5 to 7.5.1 in /examples
dependabot[bot] Jul 2, 2023
1e317bd
Bump mysql:mysql-connector-java from 8.0.32 to 8.0.33 in /examples
dependabot[bot] Jul 2, 2023
b6ef74d
Bump org.junit.platform:junit-platform-launcher in /modules/spock
dependabot[bot] Jul 2, 2023
6e4f50e
Bump com.hivemq:hivemq-mqtt-client in /modules/hivemq
dependabot[bot] Jul 2, 2023
f366b71
Bump org.jetbrains:annotations from 24.0.0 to 24.0.1 in /modules/trino
dependabot[bot] Jul 2, 2023
0ba2fc3
Bump org.apache.tinkerpop:gremlin-driver in /modules/orientdb
dependabot[bot] Jul 3, 2023
385e530
Bump org.junit.jupiter:junit-jupiter-api in /examples
dependabot[bot] Jul 3, 2023
0c7b6ad
Merge remote-tracking branch 'origin/dependabot/gradle/modules/orient…
eddumelendez Jul 3, 2023
e815152
Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.t…
eddumelendez Jul 3, 2023
c400665
Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.j…
eddumelendez Jul 3, 2023
0bfaa6b
Merge remote-tracking branch 'origin/dependabot/gradle/examples/mysql…
eddumelendez Jul 3, 2023
3d1e427
Merge remote-tracking branch 'origin/dependabot/gradle/modules/hivemq…
eddumelendez Jul 3, 2023
6ef946d
Merge remote-tracking branch 'origin/dependabot/gradle/modules/spock/…
eddumelendez Jul 3, 2023
3e8ffe9
Merge remote-tracking branch 'origin/dependabot/gradle/modules/trino/…
eddumelendez Jul 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ dependencies {

testImplementation 'com.google.cloud.tools:jib-core:0.23.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
testImplementation 'redis.clients:jedis:4.3.2'
testImplementation 'redis.clients:jedis:4.4.3'
testImplementation 'com.rabbitmq:amqp-client:5.18.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 @@ -6,7 +6,7 @@ dependencies {
testImplementation project(":selenium")
testImplementation project(":mysql")

testImplementation 'mysql:mysql-connector-java:8.0.32'
testImplementation 'mysql:mysql-connector-java:8.0.33'
testImplementation "org.seleniumhq.selenium:selenium-api:4.10.0"
testImplementation 'org.assertj:assertj-core:3.24.2'
}
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:6.2.3.RELEASE"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.2"
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 @@ -13,7 +13,7 @@ dependencies {
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'ch.qos.logback:logback-classic:1.3.8'
testImplementation 'org.testng:testng:7.5'
testImplementation 'org.testng:testng:7.5.1'
testImplementation 'org.assertj:assertj-core:3.24.2'
}

Expand Down
2 changes: 1 addition & 1 deletion modules/hivemq/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
testImplementation(project(":junit-jupiter"))
testImplementation("com.hivemq:hivemq-extension-sdk:4.16.0")
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.0")
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.1")
testImplementation("org.apache.httpcomponents:httpclient:4.5.14")
testImplementation("ch.qos.logback:logback-classic:1.4.8")
testImplementation 'org.assertj:assertj-core:3.24.2'
Expand Down
2 changes: 1 addition & 1 deletion modules/orientdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
api "com.orientechnologies:orientdb-client:3.2.20"

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.6.2'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.6.4'
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.20"
}
2 changes: 1 addition & 1 deletion modules/spock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {

testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.9.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.9.3'
testRuntimeOnly 'org.junit.platform:junit-platform-testkit:1.9.3'

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

testImplementation project(':jdbc-test')
testImplementation 'io.trino:trino-jdbc:420'
compileOnly 'org.jetbrains:annotations:24.0.0'
compileOnly 'org.jetbrains:annotations:24.0.1'
}