Skip to content

Commit 46519c4

Browse files
Hotfix 2.14.2 (#273)
* Bump version 2.14.1 -> 2.14.2 * reformat file * bump dependencies * org.codehaus.groovy:groovy-bom:2.5.10 -> 2.5.14 * org.codehaus.groovy:groovy-all:2.5.10 -> 2.5.14 * org.osgi:osgi.core:7.0.0 -> 8.0.0 * com.github.everit-org.json-schema:org.everit.json.schema:1.12.1 -> 1.12.2 * org.apache.logging.log4j:log4j-api:2.15.0 -> 2.16.0 * org.apache.logging.log4j:log4j-core:2.15.0 -> 2.16.0 * Bump plugin versions * maven-surefire-plugin:2.21.0 -> 2.22.2 * org.codehaus.gmavenplus:gmavenplus-plugin:1.12.0 -> 1.12.1 * org.apache.maven.plugins:maven-site-plugin:3.7.1 -> 3.9.1 * org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0 -> 3.1.1 * Update CHANGELOG.rst * Introduce caching to codeql-analysis.yml * Update CHANGELOG.rst Co-authored-by: Steffengreiner <Steffen.Greiner@gmx.de> Co-authored-by: Steffengreiner <Steffen.Greiner@gmx.de>
1 parent 4707e74 commit 46519c4

File tree

3 files changed

+256
-222
lines changed

3 files changed

+256
-222
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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ Changelog
44

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

7+
2.14.2 (2021-12-16)
8+
-------------------
9+
10+
**Added**
11+
12+
**Fixed**
13+
14+
* CVE-2021-45046
15+
16+
**Dependencies**
17+
18+
* `org.codehaus.groovy:groovy-bom:2.5.10` -> `2.5.14`
19+
* `org.codehaus.groovy:groovy-all:2.5.10` -> `2.5.14`
20+
* `org.osgi:osgi.core:7.0.0` -> 8.0.0
21+
* `com.github.everit-org.json-schema:org.everit.json.schema:1.12.1` -> `1.12.2`
22+
* `org.apache.logging.log4j:log4j-api:2.15.0` -> `2.16.0` (CVE-2021-45046)
23+
* `org.apache.logging.log4j:log4j-core:2.15.0` -> `2.16.0` (CVE-2021-45046)
24+
* `maven-surefire-plugin:2.21.0` -> `2.22.2`
25+
* `org.codehaus.gmavenplus:gmavenplus-plugin:1.12.0` -> `1.12.1`
26+
* `org.apache.maven.plugins:maven-site-plugin:3.7.1` -> `3.9.1`
27+
* `org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0` -> `3.1.1`
28+
29+
**Deprecated**
30+
731
2.14.1 (2021-12-13)
832
-------------------
933

0 commit comments

Comments
 (0)