Skip to content

Commit cd41ae5

Browse files
Merge pull request #137 from qbicsoftware/hotfix/1.3.4
Sync Hotfix 1.3.4
2 parents 507442f + 7e0fb04 commit cd41ae5

File tree

9 files changed

+142
-114
lines changed

9 files changed

+142
-114
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 & 32 deletions
This file was deleted.

.qube.yml

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

CHANGELOG.rst

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

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

7+
1.4.0-SNAPSHOT (2021-12-22)
8+
---------------------------
9+
10+
**Added**
11+
12+
**Fixed**
13+
14+
**Dependencies**
15+
16+
**Deprecated**
17+
18+
1.3.4 (2021-12-22)
19+
------------------
20+
21+
**Added**
22+
23+
**Fixed**
24+
25+
* CVE-2021-45105
26+
27+
**Dependencies**
28+
29+
* org.apache.logging.log4j 2.16.0 -> 2.17.0
30+
31+
**Deprecated**
32+
33+
1.3.3 (2021-12-15)
34+
------------------
35+
36+
**Added**
37+
38+
**Fixed**
39+
40+
* CVE-2021-45046
41+
42+
**Dependencies**
43+
44+
* com.vaadin.* 8.14.0 -> 8.14.3
45+
* org.apache.logging.log4j 2.15.0 -> 2.16.0
46+
* org.codehaus.groovy.* 3.0.7 -> 3.0.9
47+
* org.mariadb.jdbc:mariadb-java-client 2.0.2 -> 2.7.3
48+
49+
**Deprecated**
50+
751

852
1.4.0-SNAPSHOT (2021-11-02)
953
---------------------------

README.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ sample-tracking-update-portlet
99
:target: https://github.com/qbicsoftware/sample-tracking-update-portlet/workflows/Run%20Maven%20Tests/badge.svg
1010
:alt: Github Workflow Tests Status
1111

12-
.. image:: https://github.com/qbicsoftware/sample-tracking-update-portlet/workflows/QUBE%20lint/badge.svg
13-
:target: https://github.com/qbicsoftware/sample-tracking-update-portlet/workflows/QUBE%20lint/badge.svg
14-
:alt: qube Lint Status
15-
1612
.. image:: https://readthedocs.org/projects/sample-tracking-update-portlet/badge/?version=latest
1713
:target: https://sample-tracking-update-portlet.readthedocs.io/en/latest/?badge=latest
1814
:alt: Documentation Status

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# the built documents.
5656
#
5757
# The short X.Y version.
58-
version = '1.4.0-SNAPSHOT'
58+
version = '1.3.4'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.4.0-SNAPSHOT'
60+
release = '1.3.4'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

pom.xml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
<version>3.1.4</version>
1111
</parent>
1212
<artifactId>sample-tracking-update-portlet</artifactId>
13-
<version>1.4.0-SNAPSHOT</version> <!-- <<QUBE_FORCE_BUMP>> -->
13+
<version>1.4.0-SNAPSHOT</version>
1414
<name>Sample Tracking Update Portlet</name>
1515
<url>http://github.com/qbicsoftware/sample-tracking-update-portlet</url>
1616
<description>This application provides functionality to update and set the location and status of specific samples</description>
1717
<packaging>war</packaging>
1818
<properties>
19-
<vaadin.version>8.14.0</vaadin.version>
20-
<vaadin.plugin.version>8.14.0</vaadin.plugin.version>
21-
<log4j.version>2.15.0</log4j.version>
19+
<vaadin.version>8.14.3</vaadin.version>
20+
<vaadin.plugin.version>8.14.3</vaadin.plugin.version>
21+
<log4j.version>2.17.0</log4j.version>
2222
</properties>
2323
<!-- Since no distribution management was specified,
2424
we need to explicitly set a dummy example here to allow for correct site generation-->
@@ -115,18 +115,23 @@
115115
<dependency>
116116
<groupId>org.codehaus.groovy</groupId>
117117
<artifactId>groovy-all</artifactId>
118-
<version>3.0.7</version>
118+
<version>3.0.9</version>
119119
<type>pom</type>
120120
</dependency>
121+
<dependency>
122+
<groupId>org.codehaus.groovy</groupId>
123+
<artifactId>groovy</artifactId>
124+
<version>3.0.9</version>
125+
</dependency>
121126
<dependency>
122127
<groupId>org.codehaus.groovy</groupId>
123128
<artifactId>groovy-sql</artifactId>
124-
<version>3.0.7</version>
129+
<version>3.0.9</version>
125130
</dependency>
126131
<dependency>
127132
<groupId>org.codehaus.groovy</groupId>
128133
<artifactId>groovy-json</artifactId>
129-
<version>3.0.7</version>
134+
<version>3.0.9</version>
130135
</dependency>
131136
<!-- Necessary since switch to Java 11 -->
132137
<dependency>
@@ -143,13 +148,13 @@
143148
</dependency>
144149

145150

146-
147151
<!-- Access to our custom databases (portlets use direct JDBC to access data for now),
148152
but we will create a client library that portlets will use
149153
(version is defined in the parent POM hierarchy (/portal/pom.xml)) -->
150154
<dependency>
151155
<groupId>org.mariadb.jdbc</groupId>
152156
<artifactId>mariadb-java-client</artifactId>
157+
<version>2.7.3</version>
153158
</dependency>
154159

155160
<!-- for access to endpoints -->

qube.cfg

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

0 commit comments

Comments
 (0)