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 prep 10.5.0 #1105

Merged
merged 2 commits into from
Dec 13, 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
6 changes: 3 additions & 3 deletions .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Env variables for docker-compose.yaml
EDC_IMAGE=ghcr.io/sovity/edc-dev:10.4.3
TEST_BACKEND_IMAGE=ghcr.io/sovity/test-backend:10.4.3
EDC_UI_IMAGE=ghcr.io/sovity/edc-ui:4.1.6
EDC_IMAGE=ghcr.io/sovity/edc-dev:10.5.0
TEST_BACKEND_IMAGE=ghcr.io/sovity/test-backend:10.5.0
EDC_UI_IMAGE=ghcr.io/sovity/edc-ui:4.1.8
EDC_UI_ACTIVE_PROFILE=sovity-open-source
38 changes: 32 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,37 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md).

#### Minor Changes

- Only return `Datasets` with valid `Offers` ([#1065](https://github.com/sovity/edc-ce/issues/1065))
#### Patch Changes

### Deployment Migration Notes

#### Compatible Versions

- Connector Backend Docker Images:
- Dev EDC: `ghcr.io/sovity/edc-dev:{VERSION}`
- sovity EDC CE: `ghcr.io/sovity/edc-ce:{VERSION}`
- MDS EDC CE: `ghcr.io/sovity/edc-ce-mds:{VERSION}`
- Connector UI Docker Image: `ghcr.io/sovity/edc-ui:{UI_VERSION}`

## [10.5.0] - 2024-12-13

### Overview

MDS Patch Update

### Detailed Changes

#### Minor Changes

- Catalog now only returns `Datasets` with valid `Offers` ([#1065](https://github.com/sovity/edc-ce/issues/1065))

#### Patch Changes

- Fix issues with the Create Data Offer Endpoint ([PR#1055](https://github.com/sovity/edc-ce/pull/1055))
- EDC UI:
- Fix wrong placeholders for On Request data offer type
([#878](https://github.com/sovity/edc-ui/issues/878))
- Rearrange Sidebar Navigation Groups
([#836](https://github.com/sovity/edc-ui/issues/836))

### Deployment Migration Notes

Expand All @@ -26,10 +52,10 @@ _No special deployment migration steps required_
#### Compatible Versions

- Connector Backend Docker Images:
- Dev EDC: `ghcr.io/sovity/edc-dev:{{ VERSION }}`
- sovity EDC CE: `ghcr.io/sovity/edc-ce:{{ VERSION }}`
- MDS EDC CE: `ghcr.io/sovity/edc-ce-mds:{{ VERSION }}`
- Connector UI Docker Image: `ghcr.io/sovity/edc-ui:{{ UI VERSION }}`
- Dev EDC: `ghcr.io/sovity/edc-dev:10.5.0`
- sovity EDC CE: `ghcr.io/sovity/edc-ce:10.5.0`
- MDS EDC CE: `ghcr.io/sovity/edc-ce-mds:10.5.0`
- Connector UI Docker Image: `ghcr.io/sovity/edc-ui:4.1.8`

## [10.4.4] - 2024-12-09

Expand Down
4 changes: 2 additions & 2 deletions docs/api/sovity-edc-api-wrapper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -623,11 +623,11 @@ components:
DataSourceType:
type: string
description: Supported Data Source Types by UiDataSource
default: CUSTOM
enum:
- HTTP_DATA
- ON_REQUEST
- CUSTOM
default: CUSTOM
SecretValue:
type: object
properties:
Expand Down Expand Up @@ -835,14 +835,14 @@ components:
UiDataSourceHttpDataMethod:
type: string
description: Supported HTTP Methods by UiDataSource
default: GET
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
default: GET
UiDataSourceOnRequest:
required:
- contactEmail
Expand Down
8 changes: 4 additions & 4 deletions tests/src/test/java/de/sovity/edc/e2e/DatasetTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void canRetrieveOfferedDataset(
// act & assert
prepareDatasetApiCall(
consumerConnector,
providerConfig.getProtocolApiUrl(),
providerConfig.getProtocolEndpoint().getUri().toString(),
assetId)
.then()
.statusCode(200)
Expand All @@ -73,7 +73,7 @@ void canNotRetrieveNotOfferedDataset(
// act & assert
prepareDatasetApiCall(
consumerConnector,
providerConfig.getProtocolApiUrl(),
providerConfig.getProtocolEndpoint().getUri().toString(),
assetId)
.then()
.statusCode(502);
Expand All @@ -96,14 +96,14 @@ void canNotRetrieveNotOfferedDatasetIfValidOfferAvailable(
// act & assert
prepareDatasetApiCall(
consumerConnector,
providerConfig.getProtocolApiUrl(),
providerConfig.getProtocolEndpoint().getUri().toString(),
notOfferedAssetId)
.then()
.statusCode(502);

prepareDatasetApiCall(
consumerConnector,
providerConfig.getProtocolApiUrl(),
providerConfig.getProtocolEndpoint().getUri().toString(),
offeredAssetId)
.then()
.statusCode(200)
Expand Down
Loading