Skip to content

Commit 92fd1cc

Browse files
authored
Merge pull request #663 from scireum/feature/SE-13995_db_upgrades
Version upgrades
2 parents 3347b98 + 76a9078 commit 92fd1cc

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

pom.xml

+4-14
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>redis.clients</groupId>
5757
<artifactId>jedis</artifactId>
58-
<version>5.1.3</version>
58+
<version>5.1.5</version>
5959
<exclusions>
6060
<exclusion>
6161
<groupId>org.json</groupId>
@@ -72,26 +72,16 @@
7272
<dependency>
7373
<groupId>org.mariadb.jdbc</groupId>
7474
<artifactId>mariadb-java-client</artifactId>
75-
<version>3.3.1</version>
75+
<version>3.4.1</version>
7676
<scope>test</scope>
7777
</dependency>
7878
<dependency>
7979
<groupId>com.clickhouse</groupId>
8080
<artifactId>clickhouse-jdbc</artifactId>
81-
<version>0.4.6</version>
81+
<version>0.6.5</version>
82+
<classifier>http</classifier>
8283
<scope>test</scope>
8384
</dependency>
84-
<dependency>
85-
<groupId>org.lz4</groupId>
86-
<artifactId>lz4-java</artifactId>
87-
<version>1.8.0</version>
88-
<scope>test</scope>
89-
</dependency>
90-
<!-- Required as the version brought by clickhouse-jdbc contains security issues -->
91-
<dependency>
92-
<groupId>com.fasterxml.jackson.core</groupId>
93-
<artifactId>jackson-databind</artifactId>
94-
</dependency>
9585
</dependencies>
9686

9787
</project>

src/test/resources/docker-db.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
redis:
3-
image: redis:7.0.11-alpine
3+
image: redis:7.2.6-alpine
44
ports:
55
- "6379"
66
hostname: redis
@@ -18,14 +18,14 @@ services:
1818
hostname: qdrant
1919

2020
mariadb:
21-
image: mariadb:10.11.2-jammy
21+
image: mariadb:11.4.3-noble
2222
ports:
2323
- "3306"
2424
environment:
2525
MYSQL_ROOT_PASSWORD: root
2626
hostname: mysql
2727
clickhouse:
28-
image: clickhouse/clickhouse-server:24.5.1-alpine
28+
image: clickhouse/clickhouse-server:24.5.8-alpine
2929
ports:
3030
- "8123"
3131
- "9000"

0 commit comments

Comments
 (0)