Skip to content

Commit

Permalink
chore: release prep 10.5.0 (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilczaja authored Dec 13, 2024
1 parent 83a999a commit 3b2100d
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 15 deletions.
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

0 comments on commit 3b2100d

Please sign in to comment.