diff --git a/CHANGELOG.md b/CHANGELOG.md index 50efff6d1..038f1769d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ For documentation on how to update this changelog, please see [changelog_updates.md](docs/dev/changelog_updates.md). + ## [x.x.x] - UNRELEASED ### Overview @@ -13,13 +14,12 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md). #### Minor Changes -- Extend the Wrapper API - - Adds `createDataOffer` endpoint to create an asset, policies and a contract definition in a single call - #### Patch Changes ### Deployment Migration Notes +_No special deployment migration steps required_ + #### Compatible Versions - Connector Backend Docker Images: @@ -31,6 +31,46 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md). - Connector UI Docker Image: `ghcr.io/sovity/edc-ui:{{ UI VERSION }}` +## [10.4.0] - 2024-09-18 + +### Overview + +MDS Patch release + +### Detailed Changes + +UI and Wrapper API improvements. + +#### Minor Changes + +- Extend the Wrapper API ([PR 1035](https://github.com/sovity/edc-ce/pull/1035)) + - Adds `createDataOffer` / `pages/create-data-offer` endpoint to create an asset, policies and a contract definition in a single call + +#### Patch Changes + +- Changed wording on the data offer creation page ([#817](https://github.com/sovity/edc-ui/issues/795)) +- Data Offer details now display the contract ID for each contract offer ([#795](https://github.com/sovity/edc-ui/issues/795)) +- Warn the user when using an invalid Policy Id ([#746](https://github.com/sovity/edc-ui/issues/746)) +- Warn the user when using an invalid Data Offer Id ([#745](https://github.com/sovity/edc-ui/issues/745)) +- Fixed time restriction upper bound "local day to datetime" conversion issues + ([#815](https://github.com/sovity/edc-ui/issues/815)) + + +### Deployment Migration Notes + +_No special deployment migration steps required_ + +#### Compatible Versions + +- Connector Backend Docker Images: + - Dev EDC: `ghcr.io/sovity/edc-dev:10.4.0` + - sovity EDC CE: `ghcr.io/sovity/edc-ce:10.4.0` + - MDS EDC CE: `ghcr.io/sovity/edc-ce-mds:10.4.0` + - Dev Catalog Crawler: `ghcr.io/sovity/catalog-crawler-dev:10.4.0` + - Catalog Crawler CE: `ghcr.io/sovity/catalog-crawler-ce:10.4.0` +- Connector UI Docker Image: `ghcr.io/sovity/edc-ui:4.1.4` + + ## [10.3.0] - 2024-09-04 ### Overview diff --git a/docs/api/postman_collection.json b/docs/api/postman_collection.json index 9d8a0b327..b15b1bf9a 100644 --- a/docs/api/postman_collection.json +++ b/docs/api/postman_collection.json @@ -876,7 +876,7 @@ } }, "url": { - "raw": "{{PROVIDER_EDC_MANAGEMENT_URL}}/wrapper/ui/pages/create-asset/", + "raw": "{{PROVIDER_EDC_MANAGEMENT_URL}}/wrapper/ui/pages/create-data-offer/", "host": [ "{{PROVIDER_EDC_MANAGEMENT_URL}}" ], @@ -884,7 +884,7 @@ "wrapper", "ui", "pages", - "create-asset", + "create-data-offer", "" ] } @@ -2159,4 +2159,4 @@ "type": "default" } ] -} \ No newline at end of file +} diff --git a/extensions/wrapper/wrapper-api/src/main/java/de/sovity/edc/ext/wrapper/api/ui/UiResource.java b/extensions/wrapper/wrapper-api/src/main/java/de/sovity/edc/ext/wrapper/api/ui/UiResource.java index a024ed9dc..71895a4b0 100644 --- a/extensions/wrapper/wrapper-api/src/main/java/de/sovity/edc/ext/wrapper/api/ui/UiResource.java +++ b/extensions/wrapper/wrapper-api/src/main/java/de/sovity/edc/ext/wrapper/api/ui/UiResource.java @@ -138,7 +138,7 @@ interface UiResource { IdResponseDto deleteContractDefinition(@PathParam("contractDefinitionId") String contractDefinitionId); @POST - @Path("pages/create-data-offer/") + @Path("pages/create-data-offer") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) @Operation(description = "Create a new asset, contract definition and optional policies. Uses the same id for the asset, the contract policy, the access policy and the contract definition")