File tree 32 files changed +40
-40
lines changed
redis-backed-cache-testng
32 files changed +40
-40
lines changed Original file line number Diff line number Diff line change 22
22
java-version : ' 8.0.302'
23
23
distribution : temurin
24
24
- name : Cache Gradle Home files
25
-
25
+
26
26
continue-on-error : true
27
27
with :
28
28
path : ~/.gradle/caches
50
50
java-version : ' 8.0.302'
51
51
distribution : temurin
52
52
- name : Cache Gradle Home files
53
-
53
+
54
54
continue-on-error : true
55
55
with :
56
56
path : ~/.gradle/caches
Original file line number Diff line number Diff line change 30
30
java-version : ' 8.0.302'
31
31
distribution : temurin
32
32
- name : Cache Gradle Home files
33
-
33
+
34
34
with :
35
35
path : ~/.gradle/caches
36
36
key : ${{ runner.os }}-gradle-home-testmatrix-${{ hashFiles('**/*.gradle') }}
56
56
java-version : ' 8.0.302'
57
57
distribution : temurin
58
58
- name : Cache Gradle Home files
59
-
59
+
60
60
continue-on-error : true
61
61
with :
62
62
path : ~/.gradle/caches
Original file line number Diff line number Diff line change 17
17
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
18
18
git diff
19
19
- name : Create Pull Request
20
- uses : peter-evans/create-pull-request@f1a7646cead32c950d90344a4fb5d4e926972a8f # v3.10.1
20
+ uses : peter-evans/create-pull-request@bd72e1b7922d417764d27d30768117ad7da78a0e # v3.10.1
21
21
with :
22
22
title : Update docs version to ${GITHUB_REF##*/}
23
23
body : |
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ dependencies {
89
89
shaded ' org.zeroturnaround:zt-exec:1.12'
90
90
91
91
testImplementation ' org.apache.httpcomponents:httpclient:4.5.9'
92
- testImplementation ' redis.clients:jedis:4.0.1 '
92
+ testImplementation ' redis.clients:jedis:4.2.2 '
93
93
testImplementation ' com.rabbitmq:amqp-client:5.14.2'
94
94
testImplementation ' org.mongodb:mongo-java-driver:3.12.10'
95
95
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ repositories {
7
7
}
8
8
9
9
dependencies {
10
- compileOnly " org.projectlombok:lombok:1.18.22 "
11
- annotationProcessor " org.projectlombok:lombok:1.18.20 "
10
+ compileOnly " org.projectlombok:lombok:1.18.24 "
11
+ annotationProcessor " org.projectlombok:lombok:1.18.24 "
12
12
implementation ' biz.paluch.redis:spinach:0.3'
13
13
implementation ' com.google.code.gson:gson:2.8.9'
14
14
implementation ' com.google.guava:guava:23.0'
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ repositories {
7
7
}
8
8
9
9
dependencies {
10
- testCompileOnly " org.projectlombok:lombok:1.18.22 "
10
+ testCompileOnly " org.projectlombok:lombok:1.18.24 "
11
11
testAnnotationProcessor " org.projectlombok:lombok:1.18.22"
12
12
testImplementation ' org.testcontainers:kafka'
13
13
testImplementation ' org.apache.kafka:kafka-clients:3.1.0'
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repositories {
8
8
9
9
dependencies {
10
10
compileOnly ' org.slf4j:slf4j-api:1.7.32'
11
- implementation ' redis.clients:jedis:4.2.1 '
11
+ implementation ' redis.clients:jedis:4.2.2 '
12
12
implementation ' com.google.code.gson:gson:2.8.9'
13
13
implementation ' com.google.guava:guava:23.0'
14
14
testImplementation ' org.testcontainers:testcontainers'
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repositories {
8
8
9
9
dependencies {
10
10
compileOnly ' org.slf4j:slf4j-api:1.7.32'
11
- implementation ' redis.clients:jedis:4.2.1 '
11
+ implementation ' redis.clients:jedis:4.2.2 '
12
12
implementation ' com.google.code.gson:gson:2.8.9'
13
13
implementation ' com.google.guava:guava:23.0'
14
14
testImplementation ' org.testcontainers:testcontainers'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
6
6
}
7
7
dependencies {
8
8
classpath " gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
9
- classpath " com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.8.1 "
9
+ classpath " com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.10 "
10
10
classpath " com.gradle:common-custom-user-data-gradle-plugin:1.6.2"
11
11
}
12
12
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repositories {
8
8
9
9
dependencies {
10
10
11
- implementation ' redis.clients:jedis:4.2.1 '
11
+ implementation ' redis.clients:jedis:4.2.2 '
12
12
implementation ' com.google.code.gson:gson:2.8.9'
13
13
implementation ' com.google.guava:guava:23.0'
14
14
compileOnly ' org.slf4j:slf4j-api:1.7.32'
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ repositories {
7
7
}
8
8
9
9
dependencies {
10
- compileOnly " org.projectlombok:lombok:1.18.22 "
10
+ compileOnly " org.projectlombok:lombok:1.18.24 "
11
11
annotationProcessor " org.projectlombok:lombok:1.18.22"
12
12
13
13
implementation ' org.apache.solr:solr-solrj:8.11.1'
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" org.springframework.boot" ) version " 2.6.4"
3
- id(" org.jetbrains.kotlin.jvm" ) version " 1.6.10 "
3
+ id(" org.jetbrains.kotlin.jvm" ) version " 1.6.21 "
4
4
id(" org.jetbrains.kotlin.plugin.spring" ) version " 1.6.20"
5
5
}
6
6
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ dependencies {
6
6
shaded ' com.squareup.okhttp3:okhttp:3.14.9'
7
7
8
8
testImplementation ' org.assertj:assertj-core:3.22.0'
9
- testImplementation ' com.azure:azure-cosmos:4.26.0 '
9
+ testImplementation ' com.azure:azure-cosmos:4.29.1 '
10
10
}
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ dependencies {
4
4
api project(' :jdbc' )
5
5
6
6
testImplementation project(' :jdbc-test' )
7
- testImplementation ' org.postgresql:postgresql:42.3.3 '
7
+ testImplementation ' org.postgresql:postgresql:42.3.4 '
8
8
}
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ dependencies {
5
5
// TODO use JDK's HTTP client and/or Apache HttpClient5
6
6
shaded ' com.squareup.okhttp3:okhttp:3.14.9'
7
7
8
- testImplementation ' com.couchbase.client:java-client:3.2.6 '
8
+ testImplementation ' com.couchbase.client:java-client:3.3.0 '
9
9
testImplementation ' org.awaitility:awaitility:4.1.1'
10
10
}
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ description = "Testcontainers :: Dynalite"
3
3
dependencies {
4
4
api project(' :testcontainers' )
5
5
6
- compileOnly ' com.amazonaws:aws-java-sdk-dynamodb:1.12.169 '
7
- testImplementation ' com.amazonaws:aws-java-sdk-dynamodb:1.12.150 '
6
+ compileOnly ' com.amazonaws:aws-java-sdk-dynamodb:1.12.210 '
7
+ testImplementation ' com.amazonaws:aws-java-sdk-dynamodb:1.12.210 '
8
8
9
9
testImplementation ' org.rnorth.visible-assertions:visible-assertions:2.1.2'
10
10
}
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ description = "TestContainers :: elasticsearch"
3
3
dependencies {
4
4
api project(' :testcontainers' )
5
5
testImplementation " org.elasticsearch.client:elasticsearch-rest-client:7.16.2"
6
- testImplementation " org.elasticsearch.client:transport:7.17.2 "
6
+ testImplementation " org.elasticsearch.client:transport:7.17.3 "
7
7
testImplementation ' org.rnorth.visible-assertions:visible-assertions:2.1.2'
8
8
}
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ description = "Testcontainers :: GCloud"
3
3
dependencies {
4
4
api project(' :testcontainers' )
5
5
6
- testImplementation ' com.google.cloud:google-cloud-datastore:2.2.2 '
6
+ testImplementation ' com.google.cloud:google-cloud-datastore:2.4.0 '
7
7
testImplementation ' com.google.cloud:google-cloud-firestore:3.0.21'
8
- testImplementation ' com.google.cloud:google-cloud-pubsub:1.115.1 '
8
+ testImplementation ' com.google.cloud:google-cloud-pubsub:1.116.4 '
9
9
testImplementation ' com.google.cloud:google-cloud-spanner:6.20.0'
10
- testImplementation ' com.google.cloud:google-cloud-bigtable:2.6.1 '
10
+ testImplementation ' com.google.cloud:google-cloud-bigtable:2.6.2 '
11
11
testImplementation ' org.assertj:assertj-core:3.22.0'
12
12
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies {
13
13
14
14
testImplementation(" org.junit.jupiter:junit-jupiter-api:5.8.2" )
15
15
testImplementation(project(" :junit-jupiter" ))
16
- testImplementation(" com.hivemq:hivemq-extension-sdk:4.7.5 " )
16
+ testImplementation(" com.hivemq:hivemq-extension-sdk:4.8.0 " )
17
17
testImplementation(" com.hivemq:hivemq-mqtt-client:1.3.0" )
18
18
testImplementation(" org.apache.httpcomponents:httpclient:4.5.13" )
19
19
testImplementation(" ch.qos.logback:logback-classic:1.2.10" )
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ dependencies {
16
16
17
17
api ' org.apache.tomcat:tomcat-jdbc:10.0.20'
18
18
api ' org.vibur:vibur-dbcp:25.0'
19
- api ' mysql:mysql-connector-java:8.0.28 '
19
+ api ' mysql:mysql-connector-java:8.0.29 '
20
20
}
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ dependencies {
7
7
testImplementation project(' :mysql' )
8
8
testImplementation project(' :postgresql' )
9
9
testImplementation ' com.zaxxer:HikariCP:4.0.3'
10
- testImplementation ' redis.clients:jedis:4.1.1 '
10
+ testImplementation ' redis.clients:jedis:4.2.2 '
11
11
testImplementation ' org.apache.httpcomponents:httpclient:4.5.13'
12
12
testImplementation (' org.mockito:mockito-core:4.4.0' ) {
13
13
exclude(module : ' hamcrest-core' )
14
14
}
15
15
testImplementation ' org.assertj:assertj-core:3.22.0'
16
16
testImplementation ' org.junit.jupiter:junit-jupiter-params:5.8.2'
17
17
18
- testRuntimeOnly ' org.postgresql:postgresql:42.3.3 '
18
+ testRuntimeOnly ' org.postgresql:postgresql:42.3.4 '
19
19
testRuntimeOnly ' mysql:mysql-connector-java:8.0.27'
20
20
testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.8.2'
21
21
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ dependencies {
8
8
// Any >2.8 version here is not compatible with jackson-databind 2.8.x.
9
9
shaded ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'
10
10
11
- testImplementation ' io.fabric8:kubernetes-client:5.12.1 '
11
+ testImplementation ' io.fabric8:kubernetes-client:5.12.2 '
12
12
testImplementation ' io.kubernetes:client-java:15.0.0'
13
13
testImplementation ' org.assertj:assertj-core:3.22.0'
14
14
}
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ dependencies {
5
5
6
6
compileOnly ' com.amazonaws:aws-java-sdk-s3:1.12.191'
7
7
testImplementation ' com.amazonaws:aws-java-sdk-s3:1.12.169'
8
- testImplementation ' com.amazonaws:aws-java-sdk-sqs:1.12.150 '
8
+ testImplementation ' com.amazonaws:aws-java-sdk-sqs:1.12.210 '
9
9
testImplementation ' com.amazonaws:aws-java-sdk-logs:1.12.169'
10
- testImplementation ' software.amazon.awssdk:s3:2.17.162 '
10
+ testImplementation ' software.amazon.awssdk:s3:2.17.181 '
11
11
testImplementation ' org.rnorth.visible-assertions:visible-assertions:2.1.2'
12
12
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies {
10
10
compileOnly ' io.r2dbc:r2dbc-mssql:0.8.7.RELEASE'
11
11
12
12
testImplementation project(' :jdbc-test' )
13
- testImplementation ' com.microsoft.sqlserver:mssql-jdbc:10.2.0 .jre8'
13
+ testImplementation ' com.microsoft.sqlserver:mssql-jdbc:11.1.1 .jre8-preview '
14
14
15
15
testImplementation project(' :r2dbc' )
16
16
testImplementation ' io.r2dbc:r2dbc-mssql:0.8.7.RELEASE'
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies {
10
10
compileOnly ' dev.miku:r2dbc-mysql:0.8.2.RELEASE'
11
11
12
12
testImplementation project(' :jdbc-test' )
13
- testImplementation ' mysql:mysql-connector-java:8.0.28 '
13
+ testImplementation ' mysql:mysql-connector-java:8.0.29 '
14
14
15
15
testImplementation testFixtures(project(' :r2dbc' ))
16
16
testImplementation ' dev.miku:r2dbc-mysql:0.8.2.RELEASE'
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ task customNeo4jPluginJar(type: Jar) {
29
29
test. dependsOn customNeo4jPluginJar
30
30
31
31
dependencies {
32
- customNeo4jPluginCompileOnly " org.neo4j:neo4j:3.5.31 "
32
+ customNeo4jPluginCompileOnly " org.neo4j:neo4j:3.5.32 "
33
33
34
34
api project(" :testcontainers" )
35
35
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies {
11
11
12
12
testImplementation project(' :jdbc-test' )
13
13
testImplementation project(' :test-support' )
14
- testImplementation ' org.postgresql:postgresql:42.3.3 '
14
+ testImplementation ' org.postgresql:postgresql:42.3.4 '
15
15
16
16
testImplementation testFixtures(project(' :r2dbc' ))
17
17
testImplementation ' io.r2dbc:r2dbc-postgresql:0.8.11.RELEASE'
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ dependencies {
15
15
testImplementation ' io.r2dbc:r2dbc-postgresql:0.8.12.RELEASE'
16
16
testImplementation project(' :postgresql' )
17
17
18
- testFixturesImplementation ' io.projectreactor:reactor-core:3.4.16 '
18
+ testFixturesImplementation ' io.projectreactor:reactor-core:3.4.17 '
19
19
testFixturesImplementation ' org.assertj:assertj-core:3.14.0'
20
20
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies {
16
16
testImplementation ' org.apache.httpcomponents:httpclient:4.5.13'
17
17
18
18
testRuntimeOnly ' org.postgresql:postgresql:42.3.1'
19
- testRuntimeOnly ' mysql:mysql-connector-java:8.0.28 '
19
+ testRuntimeOnly ' mysql:mysql-connector-java:8.0.29 '
20
20
21
21
testCompileClasspath ' org.jetbrains:annotations:23.0.0'
22
22
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ description = "Testcontainers :: Toxiproxy"
2
2
3
3
dependencies {
4
4
api project(' :testcontainers' )
5
- api ' eu.rekawek.toxiproxy:toxiproxy-java:2.1.5 '
5
+ api ' eu.rekawek.toxiproxy:toxiproxy-java:2.1.7 '
6
6
7
7
testImplementation ' redis.clients:jedis:3.0.1'
8
8
testImplementation ' org.rnorth.visible-assertions:visible-assertions:2.1.2'
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ dependencies {
4
4
api project(' :jdbc' )
5
5
6
6
testImplementation project(' :jdbc-test' )
7
- testImplementation ' io.trino:trino-jdbc:375 '
7
+ testImplementation ' io.trino:trino-jdbc:379 '
8
8
compileOnly ' org.jetbrains:annotations:23.0.0'
9
9
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dependencies {
4
4
api project(' :testcontainers' )
5
5
6
6
testImplementation ' com.bettercloud:vault-java-driver:5.1.0'
7
- testImplementation ' io.rest-assured:rest-assured:5.0.0 '
7
+ testImplementation ' io.rest-assured:rest-assured:5.0.1 '
8
8
testImplementation ' org.assertj:assertj-core:3.22.0'
9
9
10
10
}
You can’t perform that action at this time.
0 commit comments