From 60d2bb72a38c3b6eb8f8dc74e15b9f6dc8efbac7 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 19 Jul 2024 16:24:52 +0200 Subject: [PATCH] chore(changelog): [#542] update chart changelog --- charts/item-relationship-service/CHANGELOG.md | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/charts/item-relationship-service/CHANGELOG.md b/charts/item-relationship-service/CHANGELOG.md index 860501bd7..479d90ae7 100644 --- a/charts/item-relationship-service/CHANGELOG.md +++ b/charts/item-relationship-service/CHANGELOG.md @@ -6,6 +6,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Changed configuration for default policies (#542) from: + ``` + edc: + catalog: + acceptedPolicies: + - leftOperand: "https://w3id.org/catenax/policy/FrameworkAgreement" + operator: "eq" + rightOperand: "traceability:1.0" + - leftOperand: "https://w3id.org/catenax/policy/UsagePurpose" + operator: "eq" + rightOperand: "cx.core.industrycore:1" + ``` + to: + ``` + edc: + catalog: + acceptedPolicies: > + [{ + "policyId": "default-policy", + "createdOn": "2024-07-17T16:15:14.12345678Z", + "validUntil": "9999-01-01T00:00:00.00000000Z", + "permissions": [ + { + "action": "use", + "constraint": { + "and": [ + { + "leftOperand": "https://w3id.org/catenax/policy/FrameworkAgreement", + "operator": { + "@id": "eq" + }, + "rightOperand": "traceability:1.0" + }, + { + "leftOperand": "https://w3id.org/catenax/policy/UsagePurpose", + "operator": { + "@id": "eq" + }, + "rightOperand": "cx.core.industrycore:1" + } + ] + } + } + ] + }] + ``` + ## [7.3.1] - 2024-07-16 ### Changed