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

Prepare IRS hotfix 4.0.1 #269

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
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]

## [4.0.1] - 2023-11-10
### Changed
- Added state `STARTED` as acceptable state to complete the EDC transfer process to be compatible with EDC 0.5.1

## [4.0.0] - 2023-10-27
### Added
- Introduced new API endpoint to register ESS Jobs in Batch - POST {{IRS_HOST}}/irs/ess/orders
Expand Down Expand Up @@ -401,7 +405,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/4.0.0...HEAD
[Unreleased]: https://github.com/eclipse-tractusx/item-relationship-service/compare/4.0.1...HEAD
[4.0.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.5.4...4.0.0
[3.5.4]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.5.3...3.5.4
[3.5.3]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.5.2...3.5.3
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]

## [6.9.1]
### Changed
- Update IRS version to 4.0.1

## [6.9.0]
### Changed
- Update IRS version to 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public class EdcControlPlaneClient {

public static final String STATUS_FINALIZED = "FINALIZED";
public static final String STATUS_COMPLETED = "COMPLETED";
public static final String STATUS_STARTED = "STARTED";
public static final String STATUS_ERROR = "ERROR";
public static final String DATASPACE_PROTOCOL_HTTP = "dataspace-protocol-http";
public static final String STATUS_TERMINATED = "TERMINATED";
Expand Down Expand Up @@ -209,7 +210,7 @@ private NegotiationResponse getContractNegotiationResponse(final Response negoti

if (transferProcessState != null) {
return switch (transferProcessState.getState()) {
case STATUS_COMPLETED -> Optional.of(
case STATUS_COMPLETED, STATUS_STARTED -> Optional.of(
getTransferProcessResponse(transferProcessId, objectHttpEntity));
case STATUS_ERROR -> throw new IllegalStateException(
"TransferProcessResponse with id " + getTransferProcessResponse(
Expand Down
Loading