Skip to content

Commit eb88575

Browse files
Merge pull request #281 from qbicsoftware/hotfix/2.14.4
Sync Hotfix/2.14.4 to Dev
2 parents 0a2de89 + 741c683 commit eb88575

File tree

7 files changed

+372
-298
lines changed

7 files changed

+372
-298
lines changed
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL"
13+
14+
on:
15+
push:
16+
branches: [ master, development, patch/*, release/*, hotfix/* ]
17+
pull_request:
18+
# The branches below must be a subset of the branches above
19+
branches: [ master ]
20+
schedule:
21+
- cron: '21 1 * * 4'
22+
23+
jobs:
24+
analyze:
25+
name: Analyze
26+
runs-on: ubuntu-latest
27+
permissions:
28+
actions: read
29+
contents: read
30+
security-events: write
31+
32+
strategy:
33+
fail-fast: false
34+
matrix:
35+
language: [ 'java' ]
36+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
38+
39+
steps:
40+
- name: Checkout repository
41+
uses: actions/checkout@v2
42+
- name: Set up JDK 1.8
43+
uses: actions/setup-java@v1
44+
with:
45+
java-version: 1.8
46+
settings-path: ${{ github.workspace }}
47+
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-
55+
56+
# Initializes the CodeQL tools for scanning.
57+
- name: Initialize CodeQL
58+
uses: github/codeql-action/init@v1
59+
with:
60+
languages: ${{ matrix.language }}
61+
# If you wish to specify custom queries, you can do so here or in a config file.
62+
# By default, queries listed here will override any specified in a config file.
63+
# Prefix the list here with "+" to use these queries and those in the config file.
64+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
65+
66+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
67+
# If this step fails, then you should remove it and run the build manually (see below)
68+
- name: Autobuild
69+
uses: github/codeql-action/autobuild@v1
70+
71+
# ℹ️ Command-line programs to run using the OS shell.
72+
# 📚 https://git.io/JvXDl
73+
74+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
75+
# and modify them (or add more) to build your code if your project
76+
# uses a compiled language
77+
78+
#- run: |
79+
# make bootstrap
80+
# make release
81+
82+
- name: Perform CodeQL Analysis
83+
uses: github/codeql-action/analyze@v1

.github/workflows/qube_lint.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/sync_project.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.qube.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,77 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
1515

1616
**Deprecated**
1717

18+
2.14.4 (2022-01-04)
19+
-------------------
20+
21+
**Added**
22+
23+
**Fixed**
24+
25+
* CVE-2021-44832
26+
27+
**Dependencies**
28+
29+
* Bump `org.apache.logging.log4j:log4j-api` from 2.17.0 to 2.17.1
30+
31+
* Bump `org.apache.logging.log4j:log4j-core` from 2.17.0 to 2.17.1
32+
33+
**Deprecated**
34+
35+
2.14.3 (2021-12-20)
36+
-------------------
37+
38+
**Added**
39+
40+
**Fixed**
41+
42+
* CVE-2021-45105
43+
44+
**Dependencies**
45+
46+
* Bump `org.apache.logging.log4j:log4j-api` from 2.16.0 to 2.17.0
47+
48+
* Bump `org.apache.logging.log4j:log4j-core` from 2.16.0 to 2.17.0
49+
50+
**Deprecated**
51+
52+
2.14.2 (2021-12-16)
53+
-------------------
54+
55+
**Added**
56+
57+
**Fixed**
58+
59+
* CVE-2021-45046
60+
61+
**Dependencies**
62+
63+
* `org.codehaus.groovy:groovy-bom:2.5.10` -> `2.5.14`
64+
* `org.codehaus.groovy:groovy-all:2.5.10` -> `2.5.14`
65+
* `org.osgi:osgi.core:7.0.0` -> 8.0.0
66+
* `com.github.everit-org.json-schema:org.everit.json.schema:1.12.1` -> `1.12.2`
67+
* `org.apache.logging.log4j:log4j-api:2.15.0` -> `2.16.0` (CVE-2021-45046)
68+
* `org.apache.logging.log4j:log4j-core:2.15.0` -> `2.16.0` (CVE-2021-45046)
69+
* `maven-surefire-plugin:2.21.0` -> `2.22.2`
70+
* `org.codehaus.gmavenplus:gmavenplus-plugin:1.12.0` -> `1.12.1`
71+
* `org.apache.maven.plugins:maven-site-plugin:3.7.1` -> `3.9.1`
72+
* `org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0` -> `3.1.1`
73+
74+
**Deprecated**
75+
76+
2.14.1 (2021-12-13)
77+
-------------------
78+
79+
**Added**
80+
81+
**Fixed**
82+
83+
**Dependencies**
84+
85+
* org.apache.logging.log4j 2.13.2 -> 2.15.0 (addresses CVE-2021-44228)
86+
87+
**Deprecated**
88+
1889

1990
2.14.0 (2021-10-27)
2091
-------------------

0 commit comments

Comments
 (0)