Skip to content

Commit 5059b10

Browse files
authored
fix: upgrade tomcat-embed-core (#260)
1 parent c9c36e6 commit 5059b10

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [9.0.1]
11+
12+
- Upgrades the embedded tomcat from 11.0.5 to 11.0.6 because of security vulnerabilities
13+
1014
## [9.0.0]
1115

1216
- Migrates to github actions

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "9.0.0"
5+
version = "9.0.1"
66

77
repositories {
88
mavenCentral()
@@ -20,7 +20,7 @@ dependencies {
2020
implementation group: 'org.postgresql', name: 'postgresql', version: '42.7.2'
2121

2222
// https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core
23-
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '11.0.5'
23+
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '11.0.6'
2424

2525
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
2626
compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'

0 commit comments

Comments
 (0)