Skip to content

Commit 44fb747

Browse files
authored
Vulnerabilities updates (fix level: critical and high) (#7)
* maven updates * maven updates * maven updates * maven updates * maven updates
1 parent 284a9cd commit 44fb747

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Fixed
1515

16+
## [0.19.1]
17+
18+
### Fixed
19+
- Vulnerabilities updates
20+
- spring-boot-parent
21+
- webjars-locator
22+
- snakeyaml
23+
1624
## [0.19.0]
1725

1826
### Added

pom.xml

+16-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>net.sberg</groupId>
1212
<artifactId>openkim</artifactId>
13-
<version>0.19.0</version>
13+
<version>0.19.1</version>
1414
<name>openkim</name>
15-
<description>Open KIM Client Modul</description>
15+
<description>Open KIM Client Modul </description>
1616

1717
<properties>
1818
<logback.version>1.4.5</logback.version>
@@ -31,6 +31,18 @@
3131
<dependency>
3232
<groupId>org.springframework.boot</groupId>
3333
<artifactId>spring-boot-starter-web</artifactId>
34+
<exclusions>
35+
<!-- exclude snakeyaml version 1.33 (with Vulnerabilities), newer version 2.2 is set later-->
36+
<exclusion>
37+
<groupId>org.yaml</groupId>
38+
<artifactId>snakeyaml</artifactId>
39+
</exclusion>
40+
</exclusions>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.yaml</groupId>
44+
<artifactId>snakeyaml</artifactId>
45+
<version>2.2</version>
3446
</dependency>
3547
<dependency>
3648
<groupId>org.springframework.boot</groupId>
@@ -211,7 +223,7 @@
211223
<dependency>
212224
<groupId>org.webjars</groupId>
213225
<artifactId>webjars-locator</artifactId>
214-
<version>0.45</version>
226+
<version>0.47</version>
215227
</dependency>
216228
<dependency>
217229
<groupId>org.projectlombok</groupId>

0 commit comments

Comments
 (0)