Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix for missing BPN #139

Merged
merged 20 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
502cf5d
feat(impl):[TRI-1465] quality checks workflow
ds-ext-kmassalski Jul 19, 2023
894b6e2
feat(impl):[TRI-1465] quality checks workflow
ds-ext-kmassalski Jul 19, 2023
30e1feb
chore(charts): Delete outdated edc consumer charts
ds-jhartmann Jul 19, 2023
8e66fb1
chore(workflows): Remove edc charts form helm workflows
ds-jhartmann Jul 19, 2023
9c962a8
Merge branch 'chore/delete-edc-consumer-charts' into feature/TRI-1465…
ds-ext-kmassalski Jul 20, 2023
e62680d
chore(docs): Add quality scenario for data sovereignty
ds-jhartmann Jul 20, 2023
5435a31
Merge pull request #435 from catenax-ng/chore/delete-edc-consumer-charts
ds-jhartmann Jul 21, 2023
4aba197
Merge branch 'main' into feature/TRI-1465-quality-checks-workflow
ds-jhartmann Jul 21, 2023
dc03586
Merge branch 'main' into feature/TRI-1465-quality-checks-workflow
ds-jhartmann Jul 21, 2023
49602b8
Merge pull request #444 from catenax-ng/chore/TRI-994-documentation-h…
ds-jhartmann Jul 21, 2023
7a27228
Merge pull request #434 from catenax-ng/feature/TRI-1465-quality-chec…
ds-ext-kmassalski Jul 21, 2023
70527b2
fix(irs-api): Add businessPartner field to SingleLevelUsageAsBuilt
ds-jhartmann Jul 21, 2023
0ccaaf6
fix(irs-api): Remove unused exception
ds-jhartmann Jul 21, 2023
2d7aeb8
fix(irs-api): Remove unused method
ds-jhartmann Jul 21, 2023
0a398dc
Merge pull request #446 from catenax-ng/fix/add-bpn-to-upward-relatio…
ds-jhartmann Jul 24, 2023
ba0baf0
chore(changelog): Update changelog
ds-jhartmann Jul 24, 2023
a9cd516
chore(changelog): Update changelog
ds-jhartmann Jul 24, 2023
3007587
Merge pull request #449 from catenax-ng/chore/prepare-release-3.3.1
ds-jhartmann Jul 24, 2023
7e0eb97
chore(release): Prepare release for Helm version 6.3.1
ds-jhartmann Jul 24, 2023
8b3308d
Merge pull request #450 from catenax-ng/chore/prepare-helm-release-6.3.1
ds-jhartmann Jul 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 2 additions & 28 deletions .github/workflows/helm-chart-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,35 +35,9 @@ jobs:
echo "::set-output name=current_version::$chartVersion"
echo "Exported $chartVersion helm charts version"

get-helm-charts-versions-edc:
outputs:
latest_version: ${{ steps.step1.outputs.latest_version }}
current_version: ${{ steps.step2.outputs.current_version }}
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get helm charts latest tag version
id: step1
run: |
latestVersion=$(git tag | grep "irs-edc-consumer-[1-9]" | tail -1)
echo "::set-output name=latest_version::$latestVersion"
echo "Exported $latestVersion latest helm charts version"
- name: Get helm charts current version
id: step2
run: |
chartVersion=irs-edc-consumer-$(cat ./charts/edc-consumer/Chart.yaml | grep "version:" | head -1 | cut -d ":" -d " " -f2)
echo "::set-output name=current_version::$chartVersion"
echo "Exported $chartVersion helm charts version"

release:
needs: ["get-helm-charts-versions-irs", "get-helm-charts-versions-edc"]
if: needs.get-helm-charts-versions-irs.outputs.latest_version != needs.get-helm-charts-versions-irs.outputs.current_version || needs.get-helm-charts-versions-edc.outputs.latest_version != needs.get-helm-charts-versions-edc.outputs.current_version
needs: "get-helm-charts-versions-irs"
if: needs.get-helm-charts-versions-irs.outputs.latest_version != needs.get-helm-charts-versions-irs.outputs.current_version
# depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Run chart-testing (lint)
run: |
ct lint --excluded-charts=edc-consumer --validate-maintainers=false --check-version-increment=false --target-branch ${{ github.event.repository.default_branch }}
ct lint --validate-maintainers=false --check-version-increment=false --target-branch ${{ github.event.repository.default_branch }}

- name: Run chart-testing (install)
run: |
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/quality-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Quality Checks (Release Guidelines)"

on:
workflow_dispatch: # Trigger manually
push:
branches:
- main
pull_request:
branches:
- main

jobs:
check-quality:
name: Check quality guidelines
uses: eclipse-tractusx/sig-infra/.github/workflows/reusable-quality-checks.yaml@main
secrets: inherit
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.3.1] - 2023-07-24
### Fixed
- Added missing field `businessPartner` for relationship aspect SingleLevelUsageAsBuilt

## [3.3.0] - 2023-07-20
### Changed
- BPN is now taken from the submodel data while traversing the item graph
Expand Down Expand Up @@ -287,7 +291,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Unresolved
- **Select Aspects you need** You are able to select the needed aspects for which you want to collect the correct endpoint information.

[Unreleased]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.0...HEAD
[Unreleased]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.1...HEAD
[3.3.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.2.1...3.3.0
[3.2.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.2.0...3.2.1
[3.2.0]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.1.0...3.2.0
Expand Down
23 changes: 0 additions & 23 deletions charts/edc-consumer/.helmignore

This file was deleted.

53 changes: 0 additions & 53 deletions charts/edc-consumer/CHANGELOG.md

This file was deleted.

33 changes: 0 additions & 33 deletions charts/edc-consumer/Chart.yaml

This file was deleted.

Loading
Loading