Skip to content

Commit

Permalink
chore: prepare release (#776)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier authored Jul 24, 2024
1 parent 46e2166 commit 37437ce
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 15 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,34 @@ the detailed section referring to by linking pull requests or issues.

#### Minor

#### Patch

## [v4.1.0] - 2024-07-24

### Overview

MDS 2.2 release

### Detailed Changes

#### Minor

- Reworked data offer creation page for easier data sharing
- Complex policies using AND, OR and XONE
- Both providers and consumers can now terminate contracts
- Contracts can be filtered by their termination status
- Adjusted data offer card/detail dialog UI to differentiate live and on request assets
- Adjusted data offer card/detail dialog UI to differentiate live and on request
assets

#### Patch

- Fixed an issue that caused the auth information to get lost during asset creation.
- Fixed an issue that caused the auth information to get lost during asset
creation.

### Deployment Migration Notes

_No special deployment migration steps required_

## [v4.0.0] - 2024-07-15

### Overview
Expand Down
Binary file modified docs/screenshots/screenshot-assets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/screenshot-contracts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/screenshot-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import {TestAssets} from './data/test-assets';

let assets: UiAsset[] = [
TestAssets.full,
TestAssets.onRequestAsset,
TestAssets.boring,
TestAssets.short,
TestAssets.onRequestAsset,
];

export const assetPage = (): AssetPage => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ let dataOffers: UiDataOffer[] = [
},
{
endpoint: 'http://existing-other-connector/api/dsp',
asset: TestAssets.boring,
participantId: 'MDSL1234XX.C1234XX',
asset: TestAssets.onRequestAsset,
contractOffers: [
{
contractOfferId: 'test-contract-offer-2',
contractOfferId: 'on-request-contract-offer',
policy: TestPolicies.failedMapping,
},
],
},
{
endpoint: 'http://existing-other-connector/api/dsp',
asset: TestAssets.short,
asset: TestAssets.boring,
participantId: 'MDSL1234XX.C1234XX',
contractOffers: [
{
contractOfferId: 'test-contract-offer-3',
contractOfferId: 'test-contract-offer-2',
policy: TestPolicies.failedMapping,
},
],
},
{
endpoint: 'http://existing-other-connector/api/dsp',
asset: TestAssets.short,
participantId: 'MDSL1234XX.C1234XX',
asset: TestAssets.onRequestAsset,
contractOffers: [
{
contractOfferId: 'on-request-contract-offer',
contractOfferId: 'test-contract-offer-3',
policy: TestPolicies.failedMapping,
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,18 @@ This is a short description text that should be fully rendered without being **c

export const onRequestAsset: UiAsset = {
dataSourceAvailability: 'ON_REQUEST',
assetId: 'comfee-or',
title: 'Comfee OR',
description: '',
descriptionShortText: '',
assetId: 'part-names-july-2024',
title: 'Part Names July 2024',
description: 'Example "On Request" data Offer',
descriptionShortText: 'Example "On Request" data Offer',
connectorEndpoint: 'https://my-other-connector/api/dsp',
participantId: 'MDSL1234XX.C1234XX',
creatorOrganizationName: 'my-org',
temporalCoverageFrom: new Date('2024-01-01'),
onRequestContactEmail: '[email protected]',
onRequestContactEmailSubject: "Request for asset 'comfee-or'",
onRequestContactEmail: '[email protected]',
onRequestContactEmailSubject: "Data Offer 'Part Names July 2024'",
version: 'July 2024',
keywords: ['automotive', 'partnumber', 'part names'],
isOwnConnector: false,
};

Expand Down

0 comments on commit 37437ce

Please sign in to comment.