Skip to content

Commit 8725be0

Browse files
fix(deps): update all dependencies
1 parent f76fd01 commit 8725be0

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

docker/monitoring/compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22

33
grafana:
4-
image: grafana/grafana:12.1.1
4+
image: grafana/grafana:12.2.0
55
ports:
66
- "3000:3000"
77
volumes:
@@ -12,7 +12,7 @@ services:
1212
network_mode: host
1313

1414
prometheus:
15-
image: prom/prometheus:v3.5.0
15+
image: prom/prometheus:v3.7.1
1616
volumes:
1717
- ./prometheus.yml:/etc/prometheus/prometheus.yml
1818
- prometheus_data:/prometheus

metasvc-model/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>org.projectlombok</groupId>
8383
<artifactId>lombok</artifactId>
84-
<version>1.18.38</version>
84+
<version>1.18.42</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.slf4j</groupId>
@@ -95,7 +95,7 @@
9595
<dependency>
9696
<groupId>org.wikidata.wdtk</groupId>
9797
<artifactId>wdtk-datamodel</artifactId>
98-
<version>0.16.0</version>
98+
<version>0.17.0</version>
9999
</dependency>
100100
<dependency>
101101
<groupId>org.zalando</groupId>

metasvc-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>io.swagger.core.v3</groupId>
7070
<artifactId>swagger-annotations</artifactId>
71-
<version>2.2.36</version>
71+
<version>2.2.39</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>net.logstash.logback</groupId>

pom.xml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.5.5</version>
9+
<version>3.5.6</version>
1010
</parent>
1111

1212
<groupId>io.github.dbmdz.metadata</groupId>
@@ -80,22 +80,22 @@
8080
<dependency>
8181
<groupId>com.fasterxml.jackson.core</groupId>
8282
<artifactId>jackson-annotations</artifactId>
83-
<version>2.19.2</version>
83+
<version>2.20</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>com.fasterxml.jackson.core</groupId>
8787
<artifactId>jackson-core</artifactId>
88-
<version>2.19.2</version>
88+
<version>2.20.0</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>com.fasterxml.jackson.core</groupId>
9292
<artifactId>jackson-databind</artifactId>
93-
<version>2.19.2</version>
93+
<version>2.20.0</version>
9494
</dependency>
9595
<dependency>
9696
<groupId>com.fasterxml.jackson.datatype</groupId>
9797
<artifactId>jackson-datatype-jsr310</artifactId>
98-
<version>2.19.2</version>
98+
<version>2.20.0</version>
9999
</dependency>
100100
<dependency>
101101
<groupId>com.github.openjson</groupId>
@@ -105,13 +105,13 @@
105105
<dependency>
106106
<groupId>com.github.spotbugs</groupId>
107107
<artifactId>spotbugs-annotations</artifactId>
108-
<version>4.8.3</version>
108+
<version>4.9.7</version>
109109
<optional>true</optional>
110110
</dependency>
111111
<dependency>
112112
<groupId>com.google.guava</groupId>
113113
<artifactId>guava</artifactId>
114-
<version>33.4.8-jre</version>
114+
<version>33.5.0-jre</version>
115115
</dependency>
116116
<dependency>
117117
<groupId>commons-beanutils</groupId>
@@ -121,29 +121,29 @@
121121
<dependency>
122122
<groupId>org.flywaydb</groupId>
123123
<artifactId>flyway-core</artifactId>
124-
<version>11.11.2</version>
124+
<version>11.14.1</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>org.flywaydb</groupId>
128128
<artifactId>flyway-database-postgresql</artifactId>
129-
<version>11.11.2</version>
129+
<version>11.14.1</version>
130130
</dependency>
131131
<dependency>
132132
<groupId>org.postgresql</groupId>
133133
<artifactId>postgresql</artifactId>
134-
<version>42.7.7</version>
134+
<version>42.7.8</version>
135135
</dependency>
136136
<dependency>
137137
<groupId>org.jdbi</groupId>
138138
<artifactId>jdbi3-bom</artifactId>
139139
<type>pom</type>
140140
<scope>import</scope>
141-
<version>3.49.5</version>
141+
<version>3.49.6</version>
142142
</dependency>
143143
<dependency>
144144
<groupId>org.springdoc</groupId>
145145
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
146-
<version>2.8.11</version>
146+
<version>2.8.13</version>
147147
</dependency>
148148
<dependency>
149149
<groupId>org.zalando</groupId>
@@ -203,7 +203,7 @@
203203
<dependency>
204204
<groupId>org.apache.commons</groupId>
205205
<artifactId>commons-lang3</artifactId>
206-
<version>3.18.0</version>
206+
<version>3.19.0</version>
207207
</dependency>
208208
<dependency>
209209
<groupId>org.apache.commons</groupId>
@@ -213,24 +213,24 @@
213213
<dependency>
214214
<groupId>org.apache.httpcomponents.client5</groupId>
215215
<artifactId>httpclient5</artifactId>
216-
<version>5.5</version>
216+
<version>5.5.1</version>
217217
</dependency>
218218
<dependency>
219219
<groupId>org.assertj</groupId>
220220
<artifactId>assertj-core</artifactId>
221-
<version>3.27.4</version>
221+
<version>3.27.6</version>
222222
<scope>test</scope>
223223
</dependency>
224224
<dependency>
225225
<groupId>org.junit.jupiter</groupId>
226226
<artifactId>junit-jupiter</artifactId>
227-
<version>5.13.4</version>
227+
<version>5.14.0</version>
228228
<scope>test</scope>
229229
</dependency>
230230
<dependency>
231231
<groupId>org.mockito</groupId>
232232
<artifactId>mockito-core</artifactId>
233-
<version>5.19.0</version>
233+
<version>5.20.0</version>
234234
<scope>test</scope>
235235
</dependency>
236236
<dependency>
@@ -288,7 +288,7 @@
288288
<plugin>
289289
<groupId>com.spotify.fmt</groupId>
290290
<artifactId>fmt-maven-plugin</artifactId>
291-
<version>2.27</version>
291+
<version>2.29</version>
292292
<executions>
293293
<execution>
294294
<goals>
@@ -300,13 +300,13 @@
300300
<plugin>
301301
<groupId>com.github.spotbugs</groupId>
302302
<artifactId>spotbugs-maven-plugin</artifactId>
303-
<version>4.8.5.0</version>
303+
<version>4.9.7.0</version>
304304
<dependencies>
305305
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs -->
306306
<dependency>
307307
<groupId>com.github.spotbugs</groupId>
308308
<artifactId>spotbugs</artifactId>
309-
<version>4.7.2</version>
309+
<version>4.9.7</version>
310310
</dependency>
311311
</dependencies>
312312
<executions>
@@ -330,7 +330,7 @@
330330
<plugin>
331331
<groupId>org.apache.maven.plugins</groupId>
332332
<artifactId>maven-failsafe-plugin</artifactId>
333-
<version>3.5.3</version>
333+
<version>3.5.4</version>
334334
</plugin>
335335
<plugin>
336336
<groupId>org.apache.maven.plugins</groupId>
@@ -359,12 +359,12 @@
359359
<plugin>
360360
<groupId>org.apache.maven.plugins</groupId>
361361
<artifactId>maven-surefire-plugin</artifactId>
362-
<version>3.5.3</version>
362+
<version>3.5.4</version>
363363
</plugin>
364364
<plugin>
365365
<groupId>org.jacoco</groupId>
366366
<artifactId>jacoco-maven-plugin</artifactId>
367-
<version>0.8.13</version>
367+
<version>0.8.14</version>
368368
<executions>
369369
<execution>
370370
<id>pre-unit-test</id>
@@ -421,7 +421,7 @@
421421
<plugin>
422422
<groupId>org.jacoco</groupId>
423423
<artifactId>jacoco-maven-plugin</artifactId>
424-
<version>0.8.13</version>
424+
<version>0.8.14</version>
425425
</plugin>
426426
</plugins>
427427
</reporting>
@@ -474,7 +474,7 @@
474474
<plugin>
475475
<groupId>org.sonatype.central</groupId>
476476
<artifactId>central-publishing-maven-plugin</artifactId>
477-
<version>0.8.0</version>
477+
<version>0.9.0</version>
478478
<extensions>true</extensions>
479479
<configuration>
480480
<publishingServerId>central</publishingServerId>

0 commit comments

Comments
 (0)