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

chore(release): Prepare IRS release 2.6.0 #305

Merged
merged 1 commit into from
May 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/publish-documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Build API documentation with Maven
run: |
mvn clean package -pl irs-models,irs-testing,irs-api -DskipTests --batch-mode
mvn clean package -pl irs-common,irs-models,irs-testing,irs-ess,irs-edc-client,irs-api -DskipTests --batch-mode
cp irs-api/target/generated-sources/openapi/index.html docs/src/docs/api-specification/index.html

- name: Build with Maven
Expand Down
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Known knowns
- PLACEHOLDER REMOVE IF EMPTY: risks that were introduced or discovered in the release and are known but not resolved
-

## [2.6.0] - 2023-05-05
### Added
- IRS now checks the EDC policies and only negotiates contracts if the policy matches the ones defined in the configuration at `edc.catalog.policies.allowedNames` (comma separated string)

### Changed
- Restructured the repository to make it more comprehensive
- Improved API descriptions regarding errors

## [2.5.1] - 2023-04-28
### Changed
- Replaced Discovery Service mock with real implementation
Expand Down Expand Up @@ -206,7 +214,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/2.5.1...HEAD
[Unreleased]: https://github.com/eclipse-tractusx/item-relationship-service/compare/2.6.0...HEAD
[2.6.0]: https://github.com/eclipse-tractusx/item-relationship-service/compare/2.5.1...2.6.0
[2.5.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/2.5.0...2.5.1
[2.5.0]: https://github.com/eclipse-tractusx/item-relationship-service/compare/2.4.0...2.5.0
[2.4.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/2.4.0...2.4.1
Expand Down
4 changes: 4 additions & 0 deletions charts/irs-helm/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]

## [5.3.0] - 2023-05-05
### Changed
- Updated IRS to version 2.6.0

## [5.2.0] - 2023-04-28
### Added
- New config entries for portal user, used to call discovery service
Expand Down
2 changes: 2 additions & 0 deletions charts/irs-helm/templates/configmap-spring-app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ data:
enabled: {{ .Values.edc.catalog.cache.enabled | default true }}
ttl: {{ .Values.edc.catalog.cache.ttl | default "P1D" | quote }}
maxCachedItems: {{ .Values.edc.catalog.cache.maxCachedItems | default 64000 }}
policies:
allowedNames: {{ .Values.edc.catalog.policies.allowedNames | default "" | quote }}

ess:
localBpn: {{ tpl (.Values.bpn | default "") . | quote }}
Expand Down
2 changes: 2 additions & 0 deletions charts/irs-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ edc:
enabled: true # Set to false to disable caching
ttl: P1D # Time after which a cached Item is no longer valid and the real catalog is called instead
maxCachedItems: 64000 # Maximum amount of cached catalog items
policies:
allowedNames: ID 3.0 Trace, ID 3.1 Trace, R2_Traceability

discovery:
endpoint: # EDC Discovery Service endpoint
Expand Down