From 1e8ba6ce6d1a4278fb833eceab88352116297d86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Jul 2022 15:34:25 +0200 Subject: [PATCH] Release version 0.0.6 (#317) --- .github/workflows/build.yaml | 334 +++--------------- .github/workflows/business-tests.yaml | 28 +- CHANGELOG.md | 10 +- deployment/helm/edc-controlplane/Chart.yaml | 4 +- deployment/helm/edc-controlplane/README.md | 4 +- deployment/helm/edc-dataplane/Chart.yaml | 4 +- deployment/helm/edc-dataplane/README.md | 4 +- .../edc-controlplane-base/pom.xml | 2 +- .../edc-controlplane-memory/pom.xml | 2 +- .../pom.xml | 2 +- .../edc-controlplane-postgresql/pom.xml | 2 +- edc-controlplane/pom.xml | 2 +- .../edc-dataplane-azure-vault/pom.xml | 2 +- edc-dataplane/edc-dataplane-base/pom.xml | 2 +- .../edc-dataplane-hashicorp-vault/pom.xml | 2 +- edc-dataplane/pom.xml | 2 +- .../business-partner-validation/pom.xml | 2 +- edc-extensions/hashicorp-vault/pom.xml | 8 +- edc-extensions/pom.xml | 2 +- edc-extensions/postgresql-migration/pom.xml | 2 +- edc-tests/pom.xml | 2 +- pom.xml | 16 +- 22 files changed, 97 insertions(+), 341 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2a1e4669a..165a7d67e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -101,182 +101,16 @@ jobs: -Dsonar.coverage.jacoco.xmlReportPaths=${GITHUB_WORKSPACE}/edc-tests/target/site/jacoco-aggregate/jacoco.xml \ -Dsonar.verbose=true - ################################# - ### edc-dataplane-azure-vault ### - ################################# - build-edc-dataplane-azure-vault: - needs: [ secret-presence, verify-formatting ] - runs-on: ubuntu-latest - steps: - # Set-Up - - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: recursive - - - name: Login to GitHub Container Registry - if: | - needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.CXNG_GHCR_PAT }} - - - name: Set up JDK 11 - uses: actions/setup-java@v3.4.1 - with: - java-version: '11' - distribution: 'adopt' - cache: 'maven' - - - name: Build edc with Gradle to get latest snapshots - run: ./gradlew publishToMavenLocal - working-directory: edc - # Build - - - name: Build edc-dataplane-azure-vault - run: |- - ./mvnw -s settings.xml -B -pl .,edc-dataplane/edc-dataplane-azure-vault -am package - env: - GITHUB_PACKAGE_USERNAME: ${{ github.actor }} - GITHUB_PACKAGE_PASSWORD: ${{ secrets.CXNG_GHCR_PAT }} - - - name: edc-dataplane-azure-vault Docker Metadata - id: edc_dataplane_azure_vault_meta - uses: docker/metadata-action@v4 - with: - images: | - ghcr.io/${{ github.repository }}/edc-dataplane-azure-vault - tags: | - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{raw}} - type=match,pattern=\d.\d.\d - type=sha - - - name: Build edc-dataplane-azure-vault Docker Image - uses: docker/build-push-action@v3 - with: - context: . - file: edc-dataplane/edc-dataplane-azure-vault/src/main/docker/Dockerfile - build-args: | - JAR=edc-dataplane/edc-dataplane-azure-vault/target/edc-dataplane-azure-vault.jar - LIB=edc-dataplane/edc-dataplane-azure-vault/target/lib - push: | - ${{ (needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' && 'true') || 'false' }} - tags: ${{ steps.edc_dataplane_azure_vault_meta.outputs.tags }} - labels: ${{ steps.edc_dataplane_azure_vault_meta.outputs.labels }} - - - name: Veracode Upload And Scan - uses: veracode/veracode-uploadandscan-action@v1.0 - if: | - needs.secret-presence.outputs.ORG_VERACODE_API_ID && needs.secret-presence.outputs.ORG_VERACODE_API_KEY && contains(' - refs/heads/develop - refs/heads/release/ - refs/tags/ - refs/heads/main', github.ref) - continue-on-error: true - with: - appname: 'product-edc/edc-dataplane-azure-vault' - createprofile: true - version: ${{ github.ref }}-${{ github.sha }} - filepath: edc-dataplane/edc-dataplane-azure-vault/target/edc-dataplane-azure-vault.jar - vid: ${{ secrets.ORG_VERACODE_API_ID }} - vkey: ${{ secrets.ORG_VERACODE_API_KEY }} - - ##################################### - ### edc-dataplane-hashicorp-vault ### - ##################################### - build-edc-dataplane-hashicorp-vault: - needs: [ secret-presence, verify-formatting ] + build-controlplane: runs-on: ubuntu-latest - steps: - # Set-Up - - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: recursive - - - name: Login to GitHub Container Registry - if: | - needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.CXNG_GHCR_PAT }} - - - name: Set up JDK 11 - uses: actions/setup-java@v3.4.1 - with: - java-version: '11' - distribution: 'adopt' - cache: 'maven' - - - name: Build edc with Gradle to get latest snapshots - run: ./gradlew publishToMavenLocal - working-directory: edc - # Build - - - name: Build edc-dataplane-hashicorp-vault - run: |- - ./mvnw -s settings.xml -B -pl .,edc-dataplane/edc-dataplane-hashicorp-vault -am package - env: - GITHUB_PACKAGE_USERNAME: ${{ github.actor }} - GITHUB_PACKAGE_PASSWORD: ${{ secrets.CXNG_GHCR_PAT }} - - - name: edc-dataplane-hashicorp-vault Docker Metadata - id: edc_dataplane_hashicorp_vault_metadata - uses: docker/metadata-action@v4 - with: - images: | - ghcr.io/${{ github.repository }}/edc-dataplane-hashicorp-vault - tags: | - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{raw}} - type=match,pattern=\d.\d.\d - type=sha - - - name: Build edc-dataplane-hashicorp-vault Docker Image - uses: docker/build-push-action@v3 - with: - context: . - file: edc-dataplane/edc-dataplane-hashicorp-vault/src/main/docker/Dockerfile - build-args: | - JAR=edc-dataplane/edc-dataplane-hashicorp-vault/target/edc-dataplane-hashicorp-vault.jar - LIB=edc-dataplane/edc-dataplane-hashicorp-vault/target/lib - push: | - ${{ (needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' && 'true') || 'false' }} - tags: ${{ steps.edc_dataplane_hashicorp_vault_metadata.outputs.tags }} - labels: ${{ steps.edc_dataplane_hashicorp_vault_metadata.outputs.labels }} - - - name: Veracode Upload And Scan - uses: veracode/veracode-uploadandscan-action@v1.0 - if: | - needs.secret-presence.outputs.ORG_VERACODE_API_ID && needs.secret-presence.outputs.ORG_VERACODE_API_KEY && contains(' - refs/heads/develop - refs/heads/release/ - refs/tags/ - refs/heads/main', github.ref) - continue-on-error: true - with: - appname: 'product-edc/edc-dataplane-hashicorp-vault' - createprofile: true - version: ${{ github.ref }}-${{ github.sha }} - filepath: edc-dataplane/edc-dataplane-hashicorp-vault/target/edc-dataplane-hashicorp-vault.jar - vid: ${{ secrets.ORG_VERACODE_API_ID }} - vkey: ${{ secrets.ORG_VERACODE_API_KEY }} - - ############################### - ### edc-controlplane-memory ### - ############################### - build-edc-controlplane-memory: needs: [ secret-presence, verify-formatting ] - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + name: + - edc-controlplane-memory + - edc-controlplane-postgresql + - edc-controlplane-postgresql-hashicorp-vault steps: # Set-Up - @@ -306,19 +140,19 @@ jobs: working-directory: edc # Build - - name: Build edc-controlplane-memory + name: Build Controlplane run: |- - ./mvnw -s settings.xml -B -pl .,edc-controlplane/edc-controlplane-memory -am package + ./mvnw -s settings.xml -B -pl .,edc-controlplane/${{ matrix.name }} -am package env: GITHUB_PACKAGE_USERNAME: ${{ github.actor }} GITHUB_PACKAGE_PASSWORD: ${{ secrets.CXNG_GHCR_PAT }} - - name: edc-controlplane-memory Docker Metadata - id: edc_controlplane_memory_meta + name: edc-controlplane Docker Metadata + id: edc_controlplane_meta uses: docker/metadata-action@v4 with: images: | - ghcr.io/${{ github.repository }}/edc-controlplane-memory + ghcr.io/${{ github.repository }}/${{ matrix.name }} tags: | type=ref,event=branch type=ref,event=pr @@ -326,18 +160,18 @@ jobs: type=match,pattern=\d.\d.\d type=sha - - name: Build edc-controlplane-memory Docker Image + name: Build Docker Image uses: docker/build-push-action@v3 with: context: . - file: edc-controlplane/edc-controlplane-memory/src/main/docker/Dockerfile + file: edc-controlplane/${{ matrix.name }}/src/main/docker/Dockerfile build-args: | - JAR=edc-controlplane/edc-controlplane-memory/target/edc-controlplane-memory.jar - LIB=edc-controlplane/edc-controlplane-memory/target/lib + JAR=edc-controlplane/${{ matrix.name }}/target/${{ matrix.name }}.jar + LIB=edc-controlplane/${{ matrix.name }}/target/lib push: | ${{ (needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' && 'true') || 'false' }} - tags: ${{ steps.edc_controlplane_memory_meta.outputs.tags }} - labels: ${{ steps.edc_controlplane_memory_meta.outputs.labels }} + tags: ${{ steps.edc_controlplane_meta.outputs.tags }} + labels: ${{ steps.edc_controlplane_meta.outputs.labels }} - name: Veracode Upload And Scan uses: veracode/veracode-uploadandscan-action@v1.0 @@ -349,104 +183,22 @@ jobs: refs/heads/main', github.ref) continue-on-error: true with: - appname: 'product-edc/edc-controlplane-memory' + appname: product-edc/${{ matrix.name }} createprofile: true version: ${{ github.ref }}-${{ github.sha }} - filepath: edc-controlplane/edc-controlplane-memory/target/edc-controlplane-memory.jar + filepath: edc-controlplane/${{ matrix.name }}/target/${{ matrix.name }}.jar vid: ${{ secrets.ORG_VERACODE_API_ID }} vkey: ${{ secrets.ORG_VERACODE_API_KEY }} - ################################### - ### edc-controlplane-postgresql ### - ################################### - build-edc-controlplane-postgresql: - needs: [ secret-presence, verify-formatting ] + build-dataplane: runs-on: ubuntu-latest - steps: - # Set-Up - - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: recursive - - - name: Login to Github Packages - if: | - needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.CXNG_GHCR_PAT }} - - - name: Set up JDK 11 - uses: actions/setup-java@v3.4.0 - with: - java-version: '11' - distribution: 'adopt' - cache: 'maven' - - - name: Build edc with Gradle to get latest snapshots - run: ./gradlew publishToMavenLocal - working-directory: edc - # Build - - - name: Build edc-controlplane-postgresql - run: |- - ./mvnw -s settings.xml -B -pl .,edc-controlplane/edc-controlplane-postgresql -am package - env: - GITHUB_PACKAGE_USERNAME: ${{ github.actor }} - GITHUB_PACKAGE_PASSWORD: ${{ secrets.CXNG_GHCR_PAT }} - - - name: edc-controlplane-postgresql Docker Metadata - id: edc_controlplane_postgresql_meta - uses: docker/metadata-action@v4 - with: - images: | - ghcr.io/${{ github.repository }}/edc-controlplane-postgresql - tags: | - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{raw}} - type=match,pattern=\d.\d.\d - type=sha - - - name: Build edc-controlplane-postgresql Docker Image - uses: docker/build-push-action@v3 - with: - context: . - file: edc-controlplane/edc-controlplane-postgresql/src/main/docker/Dockerfile - build-args: | - JAR=edc-controlplane/edc-controlplane-postgresql/target/edc-controlplane-postgresql.jar - LIB=edc-controlplane/edc-controlplane-postgresql/target/lib - push: | - ${{ (needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' && 'true') || 'false' }} - tags: ${{ steps.edc_controlplane_postgresql_meta.outputs.tags }} - labels: ${{ steps.edc_controlplane_postgresql_meta.outputs.labels }} - - - name: Veracode Upload And Scan - uses: veracode/veracode-uploadandscan-action@v1.0 - if: | - needs.secret-presence.outputs.ORG_VERACODE_API_ID && needs.secret-presence.outputs.ORG_VERACODE_API_KEY && contains(' - refs/heads/develop - refs/heads/release/ - refs/tags/ - refs/heads/main', github.ref) - continue-on-error: true - with: - appname: 'product-edc/edc-controlplane-postgresql' - createprofile: true - filepath: edc-controlplane/edc-controlplane-postgresql/target/edc-controlplane-postgresql.jar - version: ${{ github.ref_name }}-${{ github.sha }} - vid: ${{ secrets.ORG_VERACODE_API_ID }} - vkey: ${{ secrets.ORG_VERACODE_API_KEY }} - - ################################################### - ### edc-controlplane-postgresql-hashicorp-vault ### - ################################################### - build-edc-controlplane-postgresql-hashicorp-vault: needs: [ secret-presence, verify-formatting ] - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + name: + - edc-dataplane-azure-vault + - edc-dataplane-hashicorp-vault steps: # Set-Up - @@ -455,7 +207,7 @@ jobs: with: submodules: recursive - - name: Login to Github Packages + name: Login to GitHub Container Registry if: | needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' uses: docker/login-action@v2 @@ -476,19 +228,19 @@ jobs: working-directory: edc # Build - - name: Build edc-controlplane-postgresql-hashicorp-vault + name: Build Dataplane run: |- - ./mvnw -s settings.xml -B -pl .,edc-controlplane/edc-controlplane-postgresql-hashicorp-vault -am package + ./mvnw -s settings.xml -B -pl .,edc-dataplane/${{ matrix.name }} -am package env: GITHUB_PACKAGE_USERNAME: ${{ github.actor }} GITHUB_PACKAGE_PASSWORD: ${{ secrets.CXNG_GHCR_PAT }} - - name: edc-controlplane-postgresql-hashicorp-vault Docker Metadata - id: edc_controlplane_postgresql_hashicorp_vault_meta + name: edc-dataplane Docker Metadata + id: edc_dataplane_meta uses: docker/metadata-action@v4 with: images: | - ghcr.io/${{ github.repository }}/edc-controlplane-postgresql-hashicorp-vault + ghcr.io/${{ github.repository }}/${{ matrix.name }} tags: | type=ref,event=branch type=ref,event=pr @@ -496,18 +248,18 @@ jobs: type=match,pattern=\d.\d.\d type=sha - - name: Build edc-controlplane-postgresql-hashicorp-vault Docker Image + name: Build Docker Image uses: docker/build-push-action@v3 with: context: . - file: edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/src/main/docker/Dockerfile + file: edc-dataplane/${{ matrix.name }}/src/main/docker/Dockerfile build-args: | - JAR=edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/target/edc-controlplane-postgresql-hashicorp-vault.jar - LIB=edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/target/lib + JAR=edc-dataplane/${{ matrix.name }}/target/${{ matrix.name }}.jar + LIB=edc-dataplane/${{ matrix.name }}/target/lib push: | ${{ (needs.secret-presence.outputs.CXNG_GHCR_PAT && github.event_name != 'pull_request' && 'true') || 'false' }} - tags: ${{ steps.edc_controlplane_postgresql_hashicorp_vault_meta.outputs.tags }} - labels: ${{ steps.edc_controlplane_postgresql_hashicorp_vault_meta.outputs.labels }} + tags: ${{ steps.edc_dataplane_meta.outputs.tags }} + labels: ${{ steps.edc_dataplane_meta.outputs.labels }} - name: Veracode Upload And Scan uses: veracode/veracode-uploadandscan-action@v1.0 @@ -519,9 +271,9 @@ jobs: refs/heads/main', github.ref) continue-on-error: true with: - appname: 'product-edc/edc-controlplane-postgresql-hashicorp-vault' + appname: product-edc/${{ matrix.name }} createprofile: true - filepath: edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/target/edc-controlplane-postgresql-hashicorp-vault.jar - version: ${{ github.ref_name }}-${{ github.sha }} + version: ${{ github.ref }}-${{ github.sha }} + filepath: edc-dataplane/${{ matrix.name }}/target/${{ matrix.name }}.jar vid: ${{ secrets.ORG_VERACODE_API_ID }} vkey: ${{ secrets.ORG_VERACODE_API_KEY }} diff --git a/.github/workflows/business-tests.yaml b/.github/workflows/business-tests.yaml index 95be6f7ba..51ddba2a9 100644 --- a/.github/workflows/business-tests.yaml +++ b/.github/workflows/business-tests.yaml @@ -92,7 +92,9 @@ jobs: - name: Load images into KinD run: |- - kind get clusters | xargs -n1 kind load docker-image edc-controlplane-postgresql-hashicorp-vault:latest edc-dataplane-hashicorp-vault:latest --name + docker tag edc-controlplane-postgresql-hashicorp-vault:latest edc-controlplane-postgresql-hashicorp-vault:business-test + docker tag edc-dataplane-hashicorp-vault:latest edc-dataplane-hashicorp-vault:business-test + kind get clusters | xargs -n1 kind load docker-image edc-controlplane-postgresql-hashicorp-vault:business-test edc-dataplane-hashicorp-vault:business-test --name ############################################ ### Prepare And Install Test Environment ### @@ -115,10 +117,14 @@ jobs: # Install the all-in-one supporting infrastructure environment (daps, vault, pgsql) helm install test-environment edc-tests/src/main/resources/deployment/helm/all-in-one \ - --set platoedccontrolplane.image.tag=latest \ - --set sokratesedccontrolplane.image.tag=latest \ - --set platoedcdataplane.image.tag=latest \ - --set sokratesedcdataplane.image.tag=latest \ + --set platoedccontrolplane.image.repository=edc-controlplane-postgresql-hashicorp-vault \ + --set platoedccontrolplane.image.tag=business-test \ + --set sokratesedccontrolplane.image.repository=edc-controlplane-postgresql-hashicorp-vault \ + --set sokratesedccontrolplane.image.tag=business-test \ + --set platoedcdataplane.image.repository=edc-dataplane-hashicorp-vault \ + --set platoedcdataplane.image.tag=business-test \ + --set sokratesedcdataplane.image.repository=edc-dataplane-hashicorp-vault \ + --set sokratesedcdataplane.image.tag=business-test \ --set idsdaps.enabled=true \ --set platovault.enabled=true \ --set platopostgresql.enabled=true \ @@ -146,10 +152,14 @@ jobs: # Install the all-in-one Control-/DataPlanes and backend-services helm upgrade --install test-environment edc-tests/src/main/resources/deployment/helm/all-in-one \ - --set platoedccontrolplane.image.tag=latest \ - --set sokratesedccontrolplane.image.tag=latest \ - --set platoedcdataplane.image.tag=latest \ - --set sokratesedcdataplane.image.tag=latest \ + --set platoedccontrolplane.image.repository=edc-controlplane-postgresql-hashicorp-vault \ + --set platoedccontrolplane.image.tag=business-test \ + --set sokratesedccontrolplane.image.repository=edc-controlplane-postgresql-hashicorp-vault \ + --set sokratesedccontrolplane.image.tag=business-test \ + --set platoedcdataplane.image.repository=edc-dataplane-hashicorp-vault \ + --set platoedcdataplane.image.tag=business-test \ + --set sokratesedcdataplane.image.repository=edc-dataplane-hashicorp-vault \ + --set sokratesedcdataplane.image.tag=business-test \ --set idsdaps.enabled=true \ --set platovault.enabled=true \ --set platopostgresql.enabled=true \ diff --git a/CHANGELOG.md b/CHANGELOG.md index 05c56d823..96b22659c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6] - 2022-07-29 + +### Fixed + +- Fixes [release 0.0.5](https://github.com/catenax-ng/product-edc/releases/tag/0.0.5), which introduced classpath issues due to usage of [net.jodah:failsafe:2.4.3](https://search.maven.org/artifact/net.jodah/failsafe/2.4.3/jar) library + ## [0.0.5] - 2022-07-28 ### Added @@ -45,7 +51,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.0.1] - 2022-05-13 -[Unreleased]: https://github.com/catenax-ng/product-edc/compare/0.0.5...HEAD +[Unreleased]: https://github.com/catenax-ng/product-edc/compare/0.0.6...HEAD + +[0.0.6]: https://github.com/catenax-ng/product-edc/compare/0.0.5...0.0.6 [0.0.5]: https://github.com/catenax-ng/product-edc/compare/0.0.4...0.0.5 diff --git a/deployment/helm/edc-controlplane/Chart.yaml b/deployment/helm/edc-controlplane/Chart.yaml index 39b80b2f4..d0df333f3 100644 --- a/deployment/helm/edc-controlplane/Chart.yaml +++ b/deployment/helm/edc-controlplane/Chart.yaml @@ -5,6 +5,6 @@ description: >- EDC Control-Plane - The Eclipse DataSpaceConnector administration layer with responsibility of resource management and govern contracts and data transfers home: https://github.com/catenax-ng/product-edc/deployment/helm/edc-controlplane type: application -appVersion: "0.0.5" -version: 0.0.5 +appVersion: "0.0.6" +version: 0.0.6 maintainers: [] diff --git a/deployment/helm/edc-controlplane/README.md b/deployment/helm/edc-controlplane/README.md index a951af0a3..25832092b 100644 --- a/deployment/helm/edc-controlplane/README.md +++ b/deployment/helm/edc-controlplane/README.md @@ -1,6 +1,6 @@ # edc-controlplane -![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.5](https://img.shields.io/badge/AppVersion-0.0.5-informational?style=flat-square) +![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.6](https://img.shields.io/badge/AppVersion-0.0.6-informational?style=flat-square) EDC Control-Plane - The Eclipse DataSpaceConnector administration layer with responsibility of resource management and govern contracts and data transfers @@ -9,7 +9,7 @@ EDC Control-Plane - The Eclipse DataSpaceConnector administration layer with res ## TL;DR ```shell $ helm repo add catenax-ng-product-edc https://catenax-ng.github.io/product-edc -$ helm install my-release catenax-ng-product-edc/edc-controlplane --version 0.0.5 +$ helm install my-release catenax-ng-product-edc/edc-controlplane --version 0.0.6 ``` ## Values diff --git a/deployment/helm/edc-dataplane/Chart.yaml b/deployment/helm/edc-dataplane/Chart.yaml index 621ada893..f28414cfd 100644 --- a/deployment/helm/edc-dataplane/Chart.yaml +++ b/deployment/helm/edc-dataplane/Chart.yaml @@ -5,6 +5,6 @@ description: >- EDC Data-Plane - The Eclipse DataSpaceConnector data layer with responsibility of transferring and receiving data streams home: https://github.com/catenax-ng/product-edc/deployment/helm/edc-dataplane type: application -appVersion: "0.0.5" -version: 0.0.5 +appVersion: "0.0.6" +version: 0.0.6 maintainers: [] diff --git a/deployment/helm/edc-dataplane/README.md b/deployment/helm/edc-dataplane/README.md index 4478f05de..96108c59c 100644 --- a/deployment/helm/edc-dataplane/README.md +++ b/deployment/helm/edc-dataplane/README.md @@ -1,6 +1,6 @@ # edc-dataplane -![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.5](https://img.shields.io/badge/AppVersion-0.0.5-informational?style=flat-square) +![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.6](https://img.shields.io/badge/AppVersion-0.0.6-informational?style=flat-square) EDC Data-Plane - The Eclipse DataSpaceConnector data layer with responsibility of transferring and receiving data streams @@ -9,7 +9,7 @@ EDC Data-Plane - The Eclipse DataSpaceConnector data layer with responsibility o ## TL;DR ```shell $ helm repo add catenax-ng-product-edc https://catenax-ng.github.io/product-edc -$ helm install my-release catenax-ng-product-edc/edc-dataplane --version 0.0.5 +$ helm install my-release catenax-ng-product-edc/edc-dataplane --version 0.0.6 ``` ## Values diff --git a/edc-controlplane/edc-controlplane-base/pom.xml b/edc-controlplane/edc-controlplane-base/pom.xml index 356a4c90a..3a17a9f1f 100644 --- a/edc-controlplane/edc-controlplane-base/pom.xml +++ b/edc-controlplane/edc-controlplane-base/pom.xml @@ -5,7 +5,7 @@ edc-controlplane net.catenax.edc - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-controlplane/edc-controlplane-memory/pom.xml b/edc-controlplane/edc-controlplane-memory/pom.xml index 92d787765..3fbb1aac1 100644 --- a/edc-controlplane/edc-controlplane-memory/pom.xml +++ b/edc-controlplane/edc-controlplane-memory/pom.xml @@ -16,7 +16,7 @@ net.catenax.edc edc-controlplane - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/pom.xml b/edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/pom.xml index bb704f560..9e2a46686 100644 --- a/edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/pom.xml +++ b/edc-controlplane/edc-controlplane-postgresql-hashicorp-vault/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc edc-controlplane - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-controlplane/edc-controlplane-postgresql/pom.xml b/edc-controlplane/edc-controlplane-postgresql/pom.xml index a9751b84d..711d805f9 100644 --- a/edc-controlplane/edc-controlplane-postgresql/pom.xml +++ b/edc-controlplane/edc-controlplane-postgresql/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc edc-controlplane - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-controlplane/pom.xml b/edc-controlplane/pom.xml index 73088e796..0fc89d724 100644 --- a/edc-controlplane/pom.xml +++ b/edc-controlplane/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc product-edc-parent - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-dataplane/edc-dataplane-azure-vault/pom.xml b/edc-dataplane/edc-dataplane-azure-vault/pom.xml index 92f131f52..bd994cdb3 100644 --- a/edc-dataplane/edc-dataplane-azure-vault/pom.xml +++ b/edc-dataplane/edc-dataplane-azure-vault/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc edc-dataplane - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-dataplane/edc-dataplane-base/pom.xml b/edc-dataplane/edc-dataplane-base/pom.xml index 60234e6b9..f641ee206 100644 --- a/edc-dataplane/edc-dataplane-base/pom.xml +++ b/edc-dataplane/edc-dataplane-base/pom.xml @@ -5,7 +5,7 @@ edc-dataplane net.catenax.edc - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-dataplane/edc-dataplane-hashicorp-vault/pom.xml b/edc-dataplane/edc-dataplane-hashicorp-vault/pom.xml index 750b14f20..552d5c1cb 100644 --- a/edc-dataplane/edc-dataplane-hashicorp-vault/pom.xml +++ b/edc-dataplane/edc-dataplane-hashicorp-vault/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc edc-dataplane - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-dataplane/pom.xml b/edc-dataplane/pom.xml index 1fefb632b..64c65305b 100644 --- a/edc-dataplane/pom.xml +++ b/edc-dataplane/pom.xml @@ -18,7 +18,7 @@ net.catenax.edc product-edc-parent - 0.0.5 + 0.0.6 edc-dataplane diff --git a/edc-extensions/business-partner-validation/pom.xml b/edc-extensions/business-partner-validation/pom.xml index 20b3d609c..1f066d852 100644 --- a/edc-extensions/business-partner-validation/pom.xml +++ b/edc-extensions/business-partner-validation/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc.extensions edc-extensions - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-extensions/hashicorp-vault/pom.xml b/edc-extensions/hashicorp-vault/pom.xml index 48fff9d76..90c88d23c 100644 --- a/edc-extensions/hashicorp-vault/pom.xml +++ b/edc-extensions/hashicorp-vault/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc.extensions edc-extensions - 0.0.5 + 0.0.6 4.0.0 @@ -185,12 +185,6 @@ hamcrest test - - net.jodah - failsafe - test - - diff --git a/edc-extensions/pom.xml b/edc-extensions/pom.xml index 8f98fa7dd..b1782adda 100644 --- a/edc-extensions/pom.xml +++ b/edc-extensions/pom.xml @@ -17,7 +17,7 @@ net.catenax.edc product-edc-parent - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-extensions/postgresql-migration/pom.xml b/edc-extensions/postgresql-migration/pom.xml index 84a96cc09..af854bf9b 100644 --- a/edc-extensions/postgresql-migration/pom.xml +++ b/edc-extensions/postgresql-migration/pom.xml @@ -17,7 +17,7 @@ edc-extensions net.catenax.edc.extensions - 0.0.5 + 0.0.6 4.0.0 diff --git a/edc-tests/pom.xml b/edc-tests/pom.xml index d32148cd6..935f5b67e 100644 --- a/edc-tests/pom.xml +++ b/edc-tests/pom.xml @@ -19,7 +19,7 @@ net.catenax.edc product-edc-parent - 0.0.5 + 0.0.6 net.catenax.edc.tests diff --git a/pom.xml b/pom.xml index b6152f493..be5c8b204 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ net.catenax.edc product-edc-parent - 0.0.5 + 0.0.6 pom product-edc @@ -47,7 +47,7 @@ 3.3.0 3.2.2 - 2.23.0 + 2.24.0 3.1.0 3.4.0 2.0.0 @@ -66,12 +66,12 @@ 0.0.1-SNAPSHOT 1.2.2 42.4.0 - 9.0.2 + 9.0.4 5.9.0 1.8.2 - 7.4.1 + 7.5.0 5.1.1 1.1.0 4.6.1 @@ -82,7 +82,6 @@ 2.0.0-alpha1 1.2.11 2.2 - 2.4.3 catenax-ng @@ -1084,13 +1083,6 @@ ${org.hamcrest.hamcrest.version} test - - net.jodah - failsafe - ${net.jodah.failsafe.version} - test - -