Skip to content

Commit 5ace35b

Browse files
committed
spring upgrade
1 parent 4bde6ce commit 5ace35b

5 files changed

Lines changed: 13 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| VERSION | API | CHANGELOG |
22
|---------|-----|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
3+
| 1.41 | 1.5 | Spring Boot 3.4.5, aws-java-sdk-s3 1.12.782, cassandra 4.19.0, spring-doc 2.8.6, brave-instrumentation-kafka-clients 6.2.0, testcontainers 1.21.0, quay.io/strimzi/kafka 3.9.0 |
34
| 1.40 | 1.5 | JDK 21, Spring Boot 3.3.1, aws-java-sdk-s3 1.12.767, spring-doc 2.6.0, markdownpagegenerator 2.4.2, brave-instrumentation-kafka-clients 6.0.3, json-schema-validator 1.2.0, testcontainers 1.20.1, quay.io/strimzi/kafka 3.8.0 |
45
| 1.39 | 1.5 | Spring Boot 3.2.3, aws-java-sdk-s3 1.12.674, brave-instrumentation-kafka-clients 6.0.2, testcontainers 1.19.7, quay.io/strimzi/kafka 3.7.0 |
56
| 1.38 | 1.5 | Spring Boot 3.1.6, springdoc 2.3.0, aws-java-sdk-s3 1.12.610, json-schema-validator 1.0.88, testcontainers 1.19.3, quay.io/strimzi/kafka 3.6.1 |

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.3.1</version>
8+
<version>3.4.5</version>
99
<relativePath/>
1010
</parent>
1111
<groupId>org.opentesting</groupId>
1212
<artifactId>impl_java</artifactId>
13-
<version>1.40</version>
13+
<version>1.41</version>
1414
<name>impl_java</name>
1515
<description>open testing implementation spring boot</description>
1616

1717
<properties>
1818
<java.version>21</java.version>
19-
<cassandra.version>4.17.0</cassandra.version>
20-
<aws.sdk.version>1.12.767</aws.sdk.version>
21-
<springdoc.version>2.6.0</springdoc.version>
19+
<cassandra.version>4.19.0</cassandra.version>
20+
<aws.sdk.version>1.12.782</aws.sdk.version>
21+
<springdoc.version>2.8.6</springdoc.version>
2222
<cache2k.version>2.6.1.Final</cache2k.version>
2323
<markdownpagegenerator.version>2.4.2</markdownpagegenerator.version>
24-
<rgxgen.version>1.4</rgxgen.version>
25-
<brave-instrumentation-kafka-clients>6.0.3</brave-instrumentation-kafka-clients>
24+
<rgxgen.version>1.4</rgxgen.version><!-- higher versions break the system -->
25+
<brave-instrumentation-kafka-clients>6.2.0</brave-instrumentation-kafka-clients>
2626
<json-schema-validator>1.2.0</json-schema-validator><!-- higher versions break the system -->
27-
<testcontainers.version>1.20.1</testcontainers.version>
27+
<testcontainers.version>1.21.0</testcontainers.version>
2828
</properties>
2929

3030
<dependencies>
@@ -154,7 +154,7 @@
154154

155155
<!-- adapter cassandra -->
156156
<dependency>
157-
<groupId>com.datastax.oss</groupId>
157+
<groupId>org.apache.cassandra</groupId>
158158
<artifactId>java-driver-core</artifactId>
159159
<version>${cassandra.version}</version>
160160
</dependency>

src/test/resources/testcontainers/kafka/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/strimzi/kafka:latest-kafka-3.8.0
1+
FROM quay.io/strimzi/kafka:latest-kafka-3.9.0
22

33
COPY scripts /opt/kafka/scripts
44

src/test/resources/testcontainers/kafkainit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/strimzi/kafka:latest-kafka-3.8.0
1+
FROM quay.io/strimzi/kafka:latest-kafka-3.9.0
22

33
COPY init /opt/kafka/init
44

trivy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

33
#run trivy scanner
4-
docker run aquasec/trivy image ghcr.io/opentestingapi/opentesting:1.40
4+
docker run aquasec/trivy image ghcr.io/opentestingapi/opentesting:1.41

0 commit comments

Comments
 (0)