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: Prepare release 10.4.0 #1042

Merged
merged 3 commits into from
Sep 18, 2024
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
46 changes: 43 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/api/postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -876,15 +876,15 @@
}
},
"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}}"
],
"path": [
"wrapper",
"ui",
"pages",
"create-asset",
"create-data-offer",
""
]
}
Expand Down Expand Up @@ -2159,4 +2159,4 @@
"type": "default"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading