From 8c83fdcc0671b8bf2be17ef4f557c6ae82145e08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 09:24:00 +0000 Subject: [PATCH 01/30] build(deps): Bump com.powsybl:powsybl-single-line-diagram-core Bumps com.powsybl:powsybl-single-line-diagram-core from 3.3.2 to 4.0.0. --- updated-dependencies: - dependency-name: com.powsybl:powsybl-single-line-diagram-core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47d55f8..e31faa6 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ SPDX-License-Identifier: Apache-2.0 3.4.3 2.21.1 - 3.3.2 + 4.0.0 2.10.1 0.9.1 From 1eda7b53e5143a3bee5a68a3f14f2a9163830aa0 Mon Sep 17 00:00:00 2001 From: Juan Munoz Date: Wed, 15 Nov 2023 23:01:57 +0100 Subject: [PATCH 02/30] ci: add release-please Signed-off-by: Juan Munoz --- ...release-project.yml => release-please.yml} | 28 +++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) rename .github/workflows/{release-project.yml => release-please.yml} (76%) diff --git a/.github/workflows/release-project.yml b/.github/workflows/release-please.yml similarity index 76% rename from .github/workflows/release-project.yml rename to .github/workflows/release-please.yml index f280cfb..717b059 100644 --- a/.github/workflows/release-project.yml +++ b/.github/workflows/release-please.yml @@ -1,17 +1,35 @@ -# SPDX-FileCopyrightText: 2022 Alliander N.V. +# SPDX-FileCopyrightText: 2023 Alliander N.V. # # SPDX-License-Identifier: Apache-2.0 +on: + push: + branches: + - main -name: Release Project +permissions: + contents: write + pull-requests: write -on: - release: - types: [ released ] +name: release-please jobs: + release_please: + runs-on: ubuntu-latest + outputs: + release_created: ${{ steps.release.outputs.release_created }} + steps: + - uses: google-github-actions/release-please-action@v3 + id: release + with: + release-type: node + package-name: compas-cim-mapping + # The logic below handles the docker hub publication: push_to_registry: + needs: release_please + if: needs.release_please.outputs.release_created == "true" name: Build and publish runs-on: ubuntu-latest + timeout-minutes: 15 steps: - name: Checkout From d93aa9d600f4d23eaa3925843892b35a763dd39d Mon Sep 17 00:00:00 2001 From: Juan Munoz Date: Wed, 15 Nov 2023 23:43:06 +0100 Subject: [PATCH 03/30] chore: update package name Signed-off-by: Juan Munoz --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 717b059..96fc41d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -22,7 +22,7 @@ jobs: id: release with: release-type: node - package-name: compas-cim-mapping + package-name: compas-scl-auto-alignment # The logic below handles the docker hub publication: push_to_registry: needs: release_please From 33b1d4d23747a23108aa4273360c08a5b61779b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 17:57:51 +0000 Subject: [PATCH 04/30] build(deps): Bump ubi8/ubi-minimal in /app/src/main/docker Bumps ubi8/ubi-minimal from 8.8-1072.1697626218 to 8.9-1029. --- updated-dependencies: - dependency-name: ubi8/ubi-minimal dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- app/src/main/docker/Dockerfile.jvm | 2 +- app/src/main/docker/Dockerfile.native | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/docker/Dockerfile.jvm b/app/src/main/docker/Dockerfile.jvm index 2123f6c..28c9210 100644 --- a/app/src/main/docker/Dockerfile.jvm +++ b/app/src/main/docker/Dockerfile.jvm @@ -21,7 +21,7 @@ # docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/app-jvm # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8-1072.1697626218 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1029 ARG JAVA_PACKAGE=java-17-openjdk-headless ARG RUN_JAVA_VERSION=1.3.8 diff --git a/app/src/main/docker/Dockerfile.native b/app/src/main/docker/Dockerfile.native index ddd95ff..364c7dc 100644 --- a/app/src/main/docker/Dockerfile.native +++ b/app/src/main/docker/Dockerfile.native @@ -14,7 +14,7 @@ # docker run -i --rm -p 8080:8080 quarkus/app # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8-1072.1697626218 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1029 WORKDIR /work/ RUN chown 1001 /work \ && chmod "g+rwX" /work \ From 6a81af18e257bdc44961f49c8a4f498a533881c1 Mon Sep 17 00:00:00 2001 From: Juan Munoz Date: Mon, 20 Nov 2023 16:58:29 +0100 Subject: [PATCH 05/30] chore: update release-type to maven Co-authored-by: Pascal Wilbrink Signed-off-by: Juan Munoz --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 96fc41d..8c4987e 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -21,7 +21,7 @@ jobs: - uses: google-github-actions/release-please-action@v3 id: release with: - release-type: node + release-type: maven package-name: compas-scl-auto-alignment # The logic below handles the docker hub publication: push_to_registry: From e4e1cc4f0994684e0abec4e9e883c7fbf37cd78d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 17:59:06 +0000 Subject: [PATCH 06/30] build(deps): Bump log4j2.version from 2.21.1 to 2.22.0 Bumps `log4j2.version` from 2.21.1 to 2.22.0. Updates `org.apache.logging.log4j:log4j-api` from 2.21.1 to 2.22.0 Updates `org.apache.logging.log4j:log4j-core` from 2.21.1 to 2.22.0 Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.21.1 to 2.22.0 --- updated-dependencies: - dependency-name: org.apache.logging.log4j:log4j-api dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.logging.log4j:log4j-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.logging.log4j:log4j-slf4j-impl dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2d57d4e..1a3ffe1 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 3.5.1 - 2.21.1 + 2.22.0 3.3.2 2.10.1 0.9.1 From f8be6b13a1dad447c5f94ef881c5271f4533d321 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 10:33:06 +0000 Subject: [PATCH 07/30] build(deps): Bump quarkus.platform.version from 3.5.1 to 3.5.3 Bumps `quarkus.platform.version` from 3.5.1 to 3.5.3. Updates `io.quarkus.platform:quarkus-bom` from 3.5.1 to 3.5.3 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.5.1...3.5.3) Updates `io.quarkus:quarkus-maven-plugin` from 3.5.1 to 3.5.3 --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a3ffe1..ba174a6 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 - 3.5.1 + 3.5.3 2.22.0 3.3.2 2.10.1 From 917be32d28493da48ddc860b7502421e35f6f847 Mon Sep 17 00:00:00 2001 From: Juan Munoz Date: Mon, 27 Nov 2023 23:26:39 +0100 Subject: [PATCH 08/30] chore: add SECURITY.md Signed-off-by: Juan Munoz --- SECURITY.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..62da36d --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,11 @@ + +# Security Policy + +## Reporting a Vulnerability + +Please go to [Security Advisories](https://github.com/com-pas/compas-scl-auto-alignment/security/advisories) to privately report a security vulnerability, +our contributors will try to respond within a week of your report with a rough plan for a fix and new tests. From 2632e3d90835c25ecb4ea4eb495fdbf52da5cfbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 14:38:17 +0100 Subject: [PATCH 09/30] build(deps): Bump actions/setup-java from 3 to 4 (#263) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-project.yml | 2 +- .github/workflows/release-please.yml | 2 +- .github/workflows/sonarcloud-analysis.yml | 2 +- .github/workflows/sonarcloud-build.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index 5a234d2..949dc70 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -39,7 +39,7 @@ jobs: id: buildx uses: docker/setup-buildx-action@v3 - name: Set up JDK 17 - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: '17' diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 8c4987e..2e503a2 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -54,7 +54,7 @@ jobs: run: echo "##[set-output name=tagname;]$(echo ${GITHUB_REF##*/})" - name: Set up JDK 17 - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: '17' diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index 6493c60..ca5e28a 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -67,7 +67,7 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Set up JDK 17 - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: '17' diff --git a/.github/workflows/sonarcloud-build.yml b/.github/workflows/sonarcloud-build.yml index 7228a74..291d817 100644 --- a/.github/workflows/sonarcloud-build.yml +++ b/.github/workflows/sonarcloud-build.yml @@ -44,7 +44,7 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: '17' From b27afe571ff72d6dfa738e20adc93ef08e123259 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:06:34 +0100 Subject: [PATCH 10/30] build(deps): Bump org.apache.maven.plugins:maven-javadoc-plugin (#264) Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.6.2 to 3.6.3. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.6.2...maven-javadoc-plugin-3.6.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ba174a6..8322f47 100644 --- a/pom.xml +++ b/pom.xml @@ -240,7 +240,7 @@ SPDX-License-Identifier: Apache-2.0 org.apache.maven.plugins maven-javadoc-plugin - 3.6.2 + 3.6.3 attach-javadocs From 6b0b1e690f28bd3b73f57bb96bd7240c138f284e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:12:49 +0100 Subject: [PATCH 11/30] build(deps): Bump quarkus.platform.version from 3.5.3 to 3.6.1 (#267) Bumps `quarkus.platform.version` from 3.5.3 to 3.6.1. Updates `io.quarkus.platform:quarkus-bom` from 3.5.3 to 3.6.1 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.5.3...3.6.1) Updates `io.quarkus:quarkus-maven-plugin` from 3.5.3 to 3.6.1 --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8322f47..ea04921 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 - 3.5.3 + 3.6.1 2.22.0 3.3.2 2.10.1 From ba91264ec07e9fe4a955bd4b2c052d82dbd01c4b Mon Sep 17 00:00:00 2001 From: Stef3st Date: Mon, 11 Dec 2023 17:01:40 +0100 Subject: [PATCH 12/30] chore: solved depricated functions Signed-off-by: Stef3st --- .../service/SclAutoAlignmentDiagramLabelProvider.java | 2 +- .../alignment/service/SclAutoAlignmentService.java | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentDiagramLabelProvider.java b/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentDiagramLabelProvider.java index 3d7cc42..8e13ca6 100644 --- a/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentDiagramLabelProvider.java +++ b/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentDiagramLabelProvider.java @@ -16,7 +16,7 @@ import java.util.*; -public class SclAutoAlignmentDiagramLabelProvider implements DiagramLabelProvider { +public class SclAutoAlignmentDiagramLabelProvider implements LabelProvider { private final Map> busLabels = new HashMap<>(); public SclAutoAlignmentDiagramLabelProvider(SubstationGraph graph) { diff --git a/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentService.java b/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentService.java index 8042304..8f52e03 100644 --- a/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentService.java +++ b/service/src/main/java/org/lfenergy/compas/scl/auto/alignment/service/SclAutoAlignmentService.java @@ -8,6 +8,7 @@ import com.powsybl.sld.layout.PositionVoltageLevelLayoutFactory; import com.powsybl.sld.library.ConvergenceComponentLibrary; import com.powsybl.sld.model.graphs.SubstationGraph; +import com.powsybl.sld.svg.SvgParameters; import com.powsybl.sld.svg.styles.BasicStyleProvider; import com.powsybl.sld.svg.DefaultSVGWriter; import org.lfenergy.compas.core.commons.ElementConverter; @@ -102,17 +103,14 @@ String createSVG(SubstationGraphBuilder substationGraphBuilder) { configureLayout(graph, layoutParameters); var writer = new StringWriter(); - var svgWriter = new DefaultSVGWriter(new ConvergenceComponentLibrary(), layoutParameters); - svgWriter.write("", graph, new SclAutoAlignmentDiagramLabelProvider(graph), new BasicStyleProvider(), writer); + var svgWriter = new DefaultSVGWriter(new ConvergenceComponentLibrary(), layoutParameters, new SvgParameters()); + svgWriter.write(graph, new SclAutoAlignmentDiagramLabelProvider(graph), new BasicStyleProvider(), writer); return writer.toString(); } private LayoutParameters getLayoutParameters() { return new LayoutParameters() - .setAdaptCellHeightToContent(true) - .setShowInternalNodes(true) - .setCssLocation(LayoutParameters.CssLocation.INSERTED_IN_SVG) - .setShowInternalNodes(true); + .setAdaptCellHeightToContent(true); } private void configureLayout(SubstationGraph graph, LayoutParameters layoutParameters) { From c6aa547b88caa7a002091c15548138b67d4fe9e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:57:58 +0100 Subject: [PATCH 13/30] build(deps): Bump quarkus.platform.version from 3.6.1 to 3.6.2 (#268) Bumps `quarkus.platform.version` from 3.6.1 to 3.6.2. Updates `io.quarkus.platform:quarkus-bom` from 3.6.1 to 3.6.2 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.6.1...3.6.2) Updates `io.quarkus:quarkus-maven-plugin` from 3.6.1 to 3.6.2 --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ea04921..d5a1e6d 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 - 3.6.1 + 3.6.2 2.22.0 3.3.2 2.10.1 From 4ef0abd06e808b98a0a0cfbce616a27a6484987f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:04:13 +0100 Subject: [PATCH 14/30] build(deps): Bump google-github-actions/release-please-action (#265) Bumps [google-github-actions/release-please-action](https://github.com/google-github-actions/release-please-action) from 3 to 4. - [Release notes](https://github.com/google-github-actions/release-please-action/releases) - [Changelog](https://github.com/google-github-actions/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/release-please-action/compare/v3...v4) --- updated-dependencies: - dependency-name: google-github-actions/release-please-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 2e503a2..ab8dbbf 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -18,7 +18,7 @@ jobs: outputs: release_created: ${{ steps.release.outputs.release_created }} steps: - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 id: release with: release-type: maven From cdb402749954939c27ad43310bfb60c0bae08955 Mon Sep 17 00:00:00 2001 From: Juan Munoz Date: Thu, 14 Dec 2023 10:11:54 +0100 Subject: [PATCH 15/30] ci: refactor release please workflow (#261) * ci: refactor release please workflow Signed-off-by: Juan Munoz * docs: add changelog Signed-off-by: Juan Munoz * chore: of course Succumbing to the irresistible allure of a life devoid of human connection, powered by REUSE.software Signed-off-by: Juan Munoz --------- Signed-off-by: Juan Munoz Signed-off-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- .github/workflows/release-please.yml | 21 ++++++++++----------- CHANGELOG.md | 6 ++++++ 2 files changed, 16 insertions(+), 11 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index ab8dbbf..565767a 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -15,32 +15,24 @@ name: release-please jobs: release_please: runs-on: ubuntu-latest - outputs: - release_created: ${{ steps.release.outputs.release_created }} steps: - uses: google-github-actions/release-please-action@v4 id: release with: release-type: maven package-name: compas-scl-auto-alignment - # The logic below handles the docker hub publication: - push_to_registry: - needs: release_please - if: needs.release_please.outputs.release_created == "true" - name: Build and publish - runs-on: ubuntu-latest - timeout-minutes: 15 - - steps: - name: Checkout + if: ${{ steps.release.outputs.release_created }} uses: actions/checkout@v4 - name: Cache Docker Register + if: ${{ steps.release.outputs.release_created }} uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} - name: Cache Maven packages + if: ${{ steps.release.outputs.release_created }} uses: actions/cache@v3 with: path: ~/.m2 @@ -48,35 +40,42 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Extract tag name + if: ${{ steps.release.outputs.release_created }} id: extract_tagname shell: bash # Extract the tag name from the git reference, value of GITHUB_REF will be something like refs/tags/. run: echo "##[set-output name=tagname;]$(echo ${GITHUB_REF##*/})" - name: Set up JDK 17 + if: ${{ steps.release.outputs.release_created }} uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: '17' - name: Set up Docker Buildx + if: ${{ steps.release.outputs.release_created }} id: buildx uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub + if: ${{ steps.release.outputs.release_created }} uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: Create custom Maven Settings.xml + if: ${{ steps.release.outputs.release_created }} uses: whelk-io/maven-settings-xml-action@v21 with: output_file: custom_maven_settings.xml servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' - name: Set version with Maven + if: ${{ steps.release.outputs.release_created }} run: ./mvnw -B versions:set -DprocessAllModules=true -DnewVersion=${{ steps.extract_tagname.outputs.tagname }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Deploy with Maven to GitHub Packages and Docker Hub + if: ${{ steps.release.outputs.release_created }} run: ./mvnw -B -s custom_maven_settings.xml -Pnative-image,release clean deploy env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8e721b5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ + +For older changelogs, please check the release tag on GitHub. From 54e542d2ec830abe7a36af5f11248529537201aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:17:18 +0100 Subject: [PATCH 16/30] build(deps): Bump surefire-plugin.version from 3.2.2 to 3.2.3 (#270) Bumps `surefire-plugin.version` from 3.2.2 to 3.2.3. Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.2 to 3.2.3 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.3) Updates `org.apache.maven.plugins:maven-failsafe-plugin` from 3.2.2 to 3.2.3 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.maven.plugins:maven-failsafe-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d5a1e6d..8d5c2f5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ SPDX-License-Identifier: Apache-2.0 UTF-8 3.11.0 - 3.2.2 + 3.2.3 3.2.0 0.16.0 From a20ba03073a65ba765e782f2307c3521ef933cc0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:21:44 +0100 Subject: [PATCH 17/30] build(deps): Bump quarkus.platform.version from 3.6.2 to 3.6.3 (#271) Bumps `quarkus.platform.version` from 3.6.2 to 3.6.3. Updates `io.quarkus.platform:quarkus-bom` from 3.6.2 to 3.6.3 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.6.2...3.6.3) Updates `io.quarkus:quarkus-maven-plugin` from 3.6.2 to 3.6.3 --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8d5c2f5..5ee0346 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 - 3.6.2 + 3.6.3 2.22.0 3.3.2 2.10.1 From c0d2972dd06452cce73c5721bab0965e9dde74e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:26:45 +0100 Subject: [PATCH 18/30] build(deps): Bump dawidd6/action-download-artifact from 2 to 3 (#269) Bumps [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) from 2 to 3. - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: dawidd6/action-download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- .github/workflows/sonarcloud-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index ca5e28a..64c72c5 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -19,7 +19,7 @@ jobs: run: cat $GITHUB_EVENT_PATH - name: Download PR number artifact if: github.event.workflow_run.event == 'pull_request' - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v3 with: workflow: SonarCloud Build run_id: ${{ github.event.workflow_run.id }} From 6240c74291d2dab072b7775518cdd93a95c5403a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 14:37:59 +0100 Subject: [PATCH 19/30] build(deps): Bump actions/upload-artifact from 3 to 4 (#272) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/sonarcloud-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarcloud-build.yml b/.github/workflows/sonarcloud-build.yml index 291d817..7728d79 100644 --- a/.github/workflows/sonarcloud-build.yml +++ b/.github/workflows/sonarcloud-build.yml @@ -71,7 +71,7 @@ jobs: run: echo ${{ github.event.number }} > PR_NUMBER.txt - name: Archive PR number if: github.event_name == 'pull_request' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PR_NUMBER path: PR_NUMBER.txt From f2b6f5a7e023315dc767c4a4e58239b51e6d53d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:09:43 +0100 Subject: [PATCH 20/30] build(deps): Bump quarkus.platform.version from 3.6.3 to 3.6.4 (#274) Bumps `quarkus.platform.version` from 3.6.3 to 3.6.4. Updates `io.quarkus.platform:quarkus-bom` from 3.6.3 to 3.6.4 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.6.3...3.6.4) Updates `io.quarkus:quarkus-maven-plugin` from 3.6.3 to 3.6.4 --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5ee0346..c3d4813 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 - 3.6.3 + 3.6.4 2.22.0 3.3.2 2.10.1 From a92e4832bc55cfe48e7ba152c38f7d64d70f6d01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:27:53 +0100 Subject: [PATCH 21/30] build(deps): Bump org.apache.maven.plugins:maven-compiler-plugin (#275) Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.11.0 to 3.12.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.11.0...maven-compiler-plugin-3.12.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3d4813..ca539ea 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ SPDX-License-Identifier: Apache-2.0 UTF-8 UTF-8 - 3.11.0 + 3.12.1 3.2.3 3.2.0 From 220fb695c5f39a4eaea4eae035aa72a4c07a5a91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 15:46:42 +0100 Subject: [PATCH 22/30] build(deps): Bump log4j2.version from 2.22.0 to 2.22.1 (#276) Bumps `log4j2.version` from 2.22.0 to 2.22.1. Updates `org.apache.logging.log4j:log4j-api` from 2.22.0 to 2.22.1 Updates `org.apache.logging.log4j:log4j-core` from 2.22.0 to 2.22.1 Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.22.0 to 2.22.1 --- updated-dependencies: - dependency-name: org.apache.logging.log4j:log4j-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.logging.log4j:log4j-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.logging.log4j:log4j-slf4j-impl dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ca539ea..d1e6cb0 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 3.6.4 - 2.22.0 + 2.22.1 3.3.2 2.10.1 0.9.1 From 67df3ae547ef5f6a23e3da8546d6cbcef9dce548 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 15:51:52 +0100 Subject: [PATCH 23/30] build(deps): Bump alex-page/github-project-automation-plus (#277) Bumps [alex-page/github-project-automation-plus](https://github.com/alex-page/github-project-automation-plus) from 0.8.3 to 0.9.0. - [Release notes](https://github.com/alex-page/github-project-automation-plus/releases) - [Commits](https://github.com/alex-page/github-project-automation-plus/compare/v0.8.3...v0.9.0) --- updated-dependencies: - dependency-name: alex-page/github-project-automation-plus dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- .github/workflows/automate-projects.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automate-projects.yml b/.github/workflows/automate-projects.yml index c907722..ec1a05d 100644 --- a/.github/workflows/automate-projects.yml +++ b/.github/workflows/automate-projects.yml @@ -14,14 +14,14 @@ jobs: steps: - name: add-new-issues-to-organization-based-project-column if: github.event_name == 'issues' && github.event.action == 'opened' - uses: alex-page/github-project-automation-plus@v0.8.3 + uses: alex-page/github-project-automation-plus@v0.9.0 with: project: CoMPAS Issues Overview Board column: To do repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} - name: add-new-pull-request-to-organization-based-project-column if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.action == 'opened' - uses: alex-page/github-project-automation-plus@v0.8.3 + uses: alex-page/github-project-automation-plus@v0.9.0 with: project: CoMPAS Pull Request Overview Board column: To do From 4669e8337bcba2bab929ab407fd858e4c7b32dea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 15:59:39 +0100 Subject: [PATCH 24/30] build(deps): Bump surefire-plugin.version from 3.2.3 to 3.2.5 (#278) Bumps `surefire-plugin.version` from 3.2.3 to 3.2.5. Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.3 to 3.2.5 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.3...surefire-3.2.5) Updates `org.apache.maven.plugins:maven-failsafe-plugin` from 3.2.3 to 3.2.5 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.3...surefire-3.2.5) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.maven.plugins:maven-failsafe-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d1e6cb0..8567e18 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ SPDX-License-Identifier: Apache-2.0 UTF-8 3.12.1 - 3.2.3 + 3.2.5 3.2.0 0.16.0 From 157a23485533563ddaa9f65f1628e5d3dc6e3ee1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:05:15 +0100 Subject: [PATCH 25/30] build(deps): Bump actions/cache from 3 to 4 (#280) Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- .github/workflows/build-project.yml | 4 ++-- .github/workflows/release-please.yml | 4 ++-- .github/workflows/sonarcloud-analysis.yml | 4 ++-- .github/workflows/sonarcloud-build.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index 949dc70..bd24ad3 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -24,12 +24,12 @@ jobs: uses: actions/checkout@v4 - name: Cache Docker Register - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 565767a..c1671c2 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -27,13 +27,13 @@ jobs: - name: Cache Docker Register if: ${{ steps.release.outputs.release_created }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} - name: Cache Maven packages if: ${{ steps.release.outputs.release_created }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index 64c72c5..be2c296 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -54,13 +54,13 @@ jobs: git checkout ${{ github.event.workflow_run.head_branch }} git clean -ffdx && git reset --hard HEAD - name: Cache SonarCloud packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/sonarcloud-build.yml b/.github/workflows/sonarcloud-build.yml index 7728d79..9c0b830 100644 --- a/.github/workflows/sonarcloud-build.yml +++ b/.github/workflows/sonarcloud-build.yml @@ -31,13 +31,13 @@ jobs: fetch-depth: 0 - name: Cache SonarCloud packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} From cac5b66d06349af0357e8bf33d0e4020bfa87a42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:11:54 +0100 Subject: [PATCH 26/30] build(deps): Bump ubi8/ubi-minimal in /app/src/main/docker (#282) Bumps ubi8/ubi-minimal from 8.9-1029 to 8.9-1108.1706691034. --- updated-dependencies: - dependency-name: ubi8/ubi-minimal dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steffen van den Driest <35229971+Stef3st@users.noreply.github.com> --- app/src/main/docker/Dockerfile.jvm | 2 +- app/src/main/docker/Dockerfile.native | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/docker/Dockerfile.jvm b/app/src/main/docker/Dockerfile.jvm index 28c9210..2716fd6 100644 --- a/app/src/main/docker/Dockerfile.jvm +++ b/app/src/main/docker/Dockerfile.jvm @@ -21,7 +21,7 @@ # docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/app-jvm # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1029 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1108.1706691034 ARG JAVA_PACKAGE=java-17-openjdk-headless ARG RUN_JAVA_VERSION=1.3.8 diff --git a/app/src/main/docker/Dockerfile.native b/app/src/main/docker/Dockerfile.native index 364c7dc..2dd35ce 100644 --- a/app/src/main/docker/Dockerfile.native +++ b/app/src/main/docker/Dockerfile.native @@ -14,7 +14,7 @@ # docker run -i --rm -p 8080:8080 quarkus/app # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1029 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1108.1706691034 WORKDIR /work/ RUN chown 1001 /work \ && chmod "g+rwX" /work \ From 195e1df2bac32f96b7b91c4d161f5c11d43f1b59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 21:54:21 +0100 Subject: [PATCH 27/30] build(deps): Bump quarkus.platform.version from 3.6.4 to 3.7.1 (#283) Bumps `quarkus.platform.version` from 3.6.4 to 3.7.1. Updates `io.quarkus.platform:quarkus-bom` from 3.6.4 to 3.7.1 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.6.4...3.7.1) Updates `io.quarkus:quarkus-maven-plugin` from 3.6.4 to 3.7.1 --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8567e18..25cfbe4 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 - 3.6.4 + 3.7.1 2.22.1 3.3.2 2.10.1 From 1305b2eaaba8f8e00804b7aa0737f9154cb8ec9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 17:11:21 +0000 Subject: [PATCH 28/30] build(deps): Bump whelk-io/maven-settings-xml-action from 21 to 22 Bumps [whelk-io/maven-settings-xml-action](https://github.com/whelk-io/maven-settings-xml-action) from 21 to 22. - [Release notes](https://github.com/whelk-io/maven-settings-xml-action/releases) - [Commits](https://github.com/whelk-io/maven-settings-xml-action/compare/v21...v22) --- updated-dependencies: - dependency-name: whelk-io/maven-settings-xml-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-project.yml | 2 +- .github/workflows/release-please.yml | 2 +- .github/workflows/sonarcloud-analysis.yml | 2 +- .github/workflows/sonarcloud-build.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index bd24ad3..82babce 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -45,7 +45,7 @@ jobs: java-version: '17' - name: Create custom Maven Settings.xml - uses: whelk-io/maven-settings-xml-action@v21 + uses: whelk-io/maven-settings-xml-action@v22 with: output_file: custom_maven_settings.xml servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index c1671c2..3e265c1 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -65,7 +65,7 @@ jobs: - name: Create custom Maven Settings.xml if: ${{ steps.release.outputs.release_created }} - uses: whelk-io/maven-settings-xml-action@v21 + uses: whelk-io/maven-settings-xml-action@v22 with: output_file: custom_maven_settings.xml servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index be2c296..de0c188 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -79,7 +79,7 @@ jobs: -Dsonar.projectKey=com-pas_compas-scl-auto-alignment \ -Dsonar.organization=com-pas )" - name: Create custom Maven Settings.xml - uses: whelk-io/maven-settings-xml-action@v21 + uses: whelk-io/maven-settings-xml-action@v22 with: output_file: custom_maven_settings.xml servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' diff --git a/.github/workflows/sonarcloud-build.yml b/.github/workflows/sonarcloud-build.yml index 9c0b830..25d4d8c 100644 --- a/.github/workflows/sonarcloud-build.yml +++ b/.github/workflows/sonarcloud-build.yml @@ -50,7 +50,7 @@ jobs: java-version: '17' - name: Create custom Maven Settings.xml - uses: whelk-io/maven-settings-xml-action@v21 + uses: whelk-io/maven-settings-xml-action@v22 with: output_file: custom_maven_settings.xml servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' From 639b05dc1455bc2a7796f2d3be4b212868492b78 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 17:21:07 +0000 Subject: [PATCH 29/30] build(deps): Bump ubi8/ubi-minimal in /app/src/main/docker Bumps ubi8/ubi-minimal from 8.9-1108.1706691034 to 8.9-1137. --- updated-dependencies: - dependency-name: ubi8/ubi-minimal dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- app/src/main/docker/Dockerfile.jvm | 2 +- app/src/main/docker/Dockerfile.native | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/docker/Dockerfile.jvm b/app/src/main/docker/Dockerfile.jvm index 2716fd6..77d1348 100644 --- a/app/src/main/docker/Dockerfile.jvm +++ b/app/src/main/docker/Dockerfile.jvm @@ -21,7 +21,7 @@ # docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/app-jvm # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1108.1706691034 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1137 ARG JAVA_PACKAGE=java-17-openjdk-headless ARG RUN_JAVA_VERSION=1.3.8 diff --git a/app/src/main/docker/Dockerfile.native b/app/src/main/docker/Dockerfile.native index 2dd35ce..9ccb5d5 100644 --- a/app/src/main/docker/Dockerfile.native +++ b/app/src/main/docker/Dockerfile.native @@ -14,7 +14,7 @@ # docker run -i --rm -p 8080:8080 quarkus/app # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1108.1706691034 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1137 WORKDIR /work/ RUN chown 1001 /work \ && chmod "g+rwX" /work \ From 20941c898f773dd1dd79ef77f081bb191a57bff6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 17:13:04 +0000 Subject: [PATCH 30/30] build(deps): Bump log4j2.version from 2.22.1 to 2.23.0 Bumps `log4j2.version` from 2.22.1 to 2.23.0. Updates `org.apache.logging.log4j:log4j-api` from 2.22.1 to 2.23.0 Updates `org.apache.logging.log4j:log4j-core` from 2.22.1 to 2.23.0 Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.22.1 to 2.23.0 --- updated-dependencies: - dependency-name: org.apache.logging.log4j:log4j-api dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.logging.log4j:log4j-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.logging.log4j:log4j-slf4j-impl dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 25cfbe4..73d4c0e 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ SPDX-License-Identifier: Apache-2.0 0.16.0 3.7.1 - 2.22.1 + 2.23.0 3.3.2 2.10.1 0.9.1