Skip to content

Commit ea8cb31

Browse files
Hotfix 1.0.0-beta.7 (#176)
* Fix dependencies Co-authored-by: Steffengreiner <[email protected]>
1 parent 06890fe commit ea8cb31

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
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.rst

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ Changelog
44

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

7+
1.0.0-beta.7 (2021-12-15)
8+
---------------------------
9+
10+
**Added**
11+
12+
**Fixed**
13+
14+
* CVE-2021-45046
15+
16+
**Dependencies**
17+
18+
* ``org.apache.logging.log4j:log4j-core:2.15.0`` -> ``2.16.0``
19+
* ``org.apache.logging.log4j:log4j-api:2.15.0`` -> ``2.16.0``
20+
721
1.0.0-beta.6 (2021-12-13)
822
---------------------------
923

pom.xml

+11-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</modules>
1111
<artifactId>sample-tracking-status-overview</artifactId>
1212
<groupId>life.qbic</groupId>
13-
<version>1.0.0-beta.6</version> <!-- <<QUBE_FORCE_BUMP>> -->
13+
<version>1.0.0-beta.7</version> <!-- <<QUBE_FORCE_BUMP>> -->
1414
<name>Sample Tracking Status Overview</name>
1515
<url>http://github.com/qbicsoftware/sample-tracking-status-overview</url>
1616
<description>Gives a visual overview of sample statuses</description>
@@ -133,6 +133,16 @@
133133
<artifactId>data-model-lib</artifactId>
134134
<version>2.12.0</version>
135135
</dependency>
136+
<dependency>
137+
<groupId>org.apache.logging.log4j</groupId>
138+
<artifactId>log4j-api</artifactId>
139+
<version>2.16.0</version>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.apache.logging.log4j</groupId>
143+
<artifactId>log4j-core</artifactId>
144+
<version>2.16.0</version>
145+
</dependency>
136146
</dependencies>
137147
</dependencyManagement>
138148
<dependencies>

sample-tracking-status-overview-app/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>sample-tracking-status-overview</artifactId>
77
<groupId>life.qbic</groupId>
8-
<version>1.0.0-beta.6</version> <!-- <<QUBE_FORCE_BUMP>> -->
8+
<version>1.0.0-beta.7</version> <!-- <<QUBE_FORCE_BUMP>> -->
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>war</packaging>
1212
<properties>
13-
<log4j.version>2.15.0</log4j.version>
13+
<log4j.version>2.16.0</log4j.version>
1414
</properties>
1515
<artifactId>sample-tracking-status-overview-app</artifactId>
1616
<name>The sample tracking status overview portlet</name>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>life.qbic</groupId>
2121
<artifactId>sample-tracking-status-overview-domain</artifactId>
22-
<version>1.0.0-beta.6</version> <!-- <<QUBE_FORCE_BUMP>> -->
22+
<version>1.0.0-beta.7</version> <!-- <<QUBE_FORCE_BUMP>> -->
2323
<scope>compile</scope>
2424
</dependency>
2525
<dependency>

sample-tracking-status-overview-domain/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>sample-tracking-status-overview</artifactId>
99
<groupId>life.qbic</groupId>
10-
<version>1.0.0-beta.6</version> <!-- <<QUBE_FORCE_BUMP>> -->
10+
<version>1.0.0-beta.7</version> <!-- <<QUBE_FORCE_BUMP>> -->
1111
</parent>
1212
<dependencies>
1313
<dependency>

0 commit comments

Comments
 (0)