Skip to content

Commit

Permalink
chore(changelog): [#542] update chart changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmf committed Jul 19, 2024
1 parent 2e4dc25 commit 60d2bb7
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions charts/item-relationship-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 60d2bb7

Please sign in to comment.