Skip to content

Commit 8e76ca2

Browse files
Merge pull request #27 from qbicsoftware/hotfix/1.9.2
Hotfix 1.9.2
2 parents 76d921a + dce8ef7 commit 8e76ca2

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/codeql-analysis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
java-version: 1.8
4646
settings-path: ${{ github.workspace }}
4747

48+
- name: Load local Maven repository cache
49+
uses: actions/cache@v2
50+
with:
51+
path: ~/.m2/repository
52+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
53+
restore-keys: |
54+
${{ runner.os }}-maven-
4855
4956
# Initializes the CodeQL tools for scanning.
5057
- name: Initialize CodeQL

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.9.2 (2021-12-15)
4+
* Fix CVE-2021-45046
5+
* Increase log4j-version `2.15.0` -> `2.16.0`
6+
37
## 1.9.1 (2021-12-13)
48
* Fix CVE-2021-44228
59
* Fix [Denial of Service Vulnerability](https://vaadin.com/security/2021-10-27)

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<version>3.1.4</version>
1010
</parent>
1111
<artifactId>user-db-portlet</artifactId>
12-
<version>1.9.1</version>
12+
<version>1.9.2</version>
1313
<name>User Database Portlet</name>
1414
<url>http://github.com/qbicsoftware/user-db-portlet</url>
1515
<packaging>war</packaging>
1616
<properties>
1717
<vaadin.version>7.7.28</vaadin.version>
1818
<vaadin.plugin.version>7.7.28</vaadin.plugin.version>
19-
<log4j.version>2.15.0</log4j.version>
19+
<log4j.version>2.16.0</log4j.version>
2020
</properties>
2121
<!-- we only need to tell maven where to find our parent pom and other QBiC
2222
dependencies -->

0 commit comments

Comments
 (0)