Skip to content

Commit c608cdb

Browse files
Merge pull request #38 from qbicsoftware/hotfix/1.12.4
Hotfix 1.12.4
2 parents 6c010ff + 86ed530 commit c608cdb

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 0 deletions
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.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ Changelog
44

55
This project adheres to `Semantic Versioning <https://semver.org/>`_.
66

7+
1.12.4 (2021-12-16)
8+
-------------------
9+
10+
**Added**
11+
12+
**Fixed**
13+
14+
**Dependencies**
15+
16+
* org.apache.logging.log4j 2.15.0 -> 2.16.0 (addresses CVE-2021-45046)
17+
18+
**Deprecated**
19+
720
1.12.3 (2021-11-13)
821
-------------------
922

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>projectwizard-portlet</artifactId>
7-
<version>1.12.3</version>
7+
<version>1.12.4</version>
88
<name>ProjectWizard Portlet</name>
9-
<url>http://github.com/qbicsoftware/projectwizard-portlet</url>
9+
<url>https://github.com/qbicsoftware/projectwizard-portlet</url>
1010
<description>Creates hierarchical experiments using factorial design.</description>
1111
<packaging>war</packaging>
1212
<parent>
@@ -17,6 +17,7 @@
1717
<properties>
1818
<vaadin.version>7.7.28</vaadin.version>
1919
<vaadin.plugin.version>7.7.28</vaadin.plugin.version>
20+
<log4j.version>2.16.0</log4j.version>
2021
</properties>
2122
<repositories>
2223
<repository>
@@ -75,12 +76,12 @@
7576
<dependency>
7677
<groupId>org.apache.logging.log4j</groupId>
7778
<artifactId>log4j-core</artifactId>
78-
<version>2.15.0</version>
79+
<version>${log4j.version}</version>
7980
</dependency>
8081
<dependency>
8182
<groupId>org.apache.logging.log4j</groupId>
8283
<artifactId>log4j-api</artifactId>
83-
<version>2.15.0</version>
84+
<version>${log4j.version}</version>
8485
</dependency>
8586
<dependency>
8687
<groupId>life.qbic</groupId>

0 commit comments

Comments
 (0)