From baf5a82f4a08a44c3a26ee7f4f03937e86c7f814 Mon Sep 17 00:00:00 2001 From: Jakob Allgaier Date: Wed, 14 Jan 2026 17:34:09 +0100 Subject: [PATCH 1/5] feat: add default production time - added environment variables - created a utility to apply the default time to Date object - updated PlannedProductionCreationModal --- CHANGELOG.md | 1 + charts/puris/Chart.yaml | 2 +- charts/puris/README.md | 1 + .../puris/templates/frontend-deployment.yaml | 2 + charts/puris/values.yaml | 2 + frontend/.env | 2 + frontend/.env.dockerbuild | 2 + frontend/src/config.json | 3 +- .../PlannedProductionCreationModal.tsx | 10 ++++- frontend/src/models/constants/config.ts | 1 + frontend/src/util/production-helpers.ts | 38 +++++++++++++++++++ 11 files changed, 60 insertions(+), 4 deletions(-) create mode 100644 frontend/src/util/production-helpers.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index 718306691..a969e596a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ The **need for configuration updates** is **marked bold**. ### Changed - switch to ssi-dim-wallet-stub instead of own mock-util-service (now DCP 1.0 is used) ([#1066](https://github.com/eclipse-tractusx/puris/pull/1066)) +- Added environment variable for default production time ([#1071](https://github.com/eclipse-tractusx/puris/pull/1071)) ### Fixes diff --git a/charts/puris/Chart.yaml b/charts/puris/Chart.yaml index df89da646..8f65c0be2 100644 --- a/charts/puris/Chart.yaml +++ b/charts/puris/Chart.yaml @@ -35,7 +35,7 @@ dependencies: # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 6.1.0 +version: 6.1.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/puris/README.md b/charts/puris/README.md index bcd7e20bf..b231b0abc 100644 --- a/charts/puris/README.md +++ b/charts/puris/README.md @@ -188,6 +188,7 @@ dependencies: | frontend.podSecurityContext.seccompProfile.type | string | `"RuntimeDefault"` | Restrict a Container's Syscalls with seccomp | | frontend.puris.appName | string | `"PURIS"` | The name of the app displayed in the frontend | | frontend.puris.baseUrl | string | `"your-backend-host-address.com"` | The base URL for the backend base URL without further endpoints. Must contain protocol (http/https). If protocol is missing, it's defaulted based on ingress configuration. | +| frontend.puris.defaultProductionTime | string | `"23:59"` | The default time to complete production | | frontend.puris.endpointAllMaterials | string | `"materials"` | The endpoint for interfacing with all materials | | frontend.puris.endpointAllPartners | string | `"partners"` | The endpoint for interfacing with all partners | | frontend.puris.endpointCustomer | string | `"stockView/customer?ownMaterialNumber="` | The endpoint for the customers who buy a material identified via the own material number for the stock view | diff --git a/charts/puris/templates/frontend-deployment.yaml b/charts/puris/templates/frontend-deployment.yaml index 6ddd76831..2b2dc9600 100644 --- a/charts/puris/templates/frontend-deployment.yaml +++ b/charts/puris/templates/frontend-deployment.yaml @@ -119,6 +119,8 @@ spec: value: "{{ .Values.frontend.puris.rateLimiting.rate }}" - name: FRONTEND_GENERATE_MATERIAL_CATENAX_ID value: "{{ .Values.backend.puris.generatematerialcatenaxid | default true }}" + - name: FRONTEND_DEFAULT_PRODUCTION_TIME + value: "{{ .Values.frontend.puris.defaultProductionTime | default "23:59" }}" ###################################### ## Additional environment variables ## ###################################### diff --git a/charts/puris/values.yaml b/charts/puris/values.yaml index ed806f61f..919ec88e1 100644 --- a/charts/puris/values.yaml +++ b/charts/puris/values.yaml @@ -179,6 +179,8 @@ frontend: appName: PURIS # -- The base URL for the backend base URL without further endpoints. Must contain protocol (http/https). If protocol is missing, it's defaulted based on ingress configuration. baseUrl: *domain + # -- The default production time for production creation + defaultProductionTime: 23:59 # -- The endpoint for materials for the stock view endpointMaterials: stockView/materials # -- The endpoint for products for the stock view diff --git a/frontend/.env b/frontend/.env index cb51be4d1..47eca62fe 100644 --- a/frontend/.env +++ b/frontend/.env @@ -29,3 +29,5 @@ VITE_IDP_URL=http://localhost:10081/ VITE_IDP_REALM=Catena-X VITE_IDP_CLIENT_ID=puris-customer VITE_IDP_REDIRECT_URL_FRONTEND=http://localhost:5173/ + +VITE_DEFAULT_PRODUCTION_TIME=23:59 diff --git a/frontend/.env.dockerbuild b/frontend/.env.dockerbuild index c8dd471c1..b50a5cf9e 100644 --- a/frontend/.env.dockerbuild +++ b/frontend/.env.dockerbuild @@ -28,3 +28,5 @@ VITE_IDP_URL=\$IDP_URL VITE_IDP_REALM=\$IDP_REALM VITE_IDP_CLIENT_ID=\$IDP_CLIENT_ID VITE_IDP_REDIRECT_URL_FRONTEND=\$IDP_REDIRECT_URL_FRONTEND + +VITE_DEFAULT_PRODUCTION_TIME=$DEFAULT_PRODUCTION_TIME diff --git a/frontend/src/config.json b/frontend/src/config.json index 763528421..e2b4ddeb6 100644 --- a/frontend/src/config.json +++ b/frontend/src/config.json @@ -25,5 +25,6 @@ "ENDPOINT_ALL_MATERIALS": "$ENDPOINT_ALL_MATERIALS", "GENERATE_MATERIAL_CATENAX_ID": "$GENERATE_MATERIAL_CATENAX_ID", "ENDPOINT_ALL_PARTNERS": "$ENDPOINT_ALL_PARTNERS", - "ENDPOINT_MATERIAL_PARTNER_RELATIONS": "$ENDPOINT_MATERIAL_PARTNER_RELATIONS" + "ENDPOINT_MATERIAL_PARTNER_RELATIONS": "$ENDPOINT_MATERIAL_PARTNER_RELATIONS", + "DEFAULT_PRODUCTION_TIME": "$DEFAULT_PRODUCTION_TIME" } diff --git a/frontend/src/features/material-details/components/PlannedProductionCreationModal.tsx b/frontend/src/features/material-details/components/PlannedProductionCreationModal.tsx index 710027cd5..06ed9fcbb 100644 --- a/frontend/src/features/material-details/components/PlannedProductionCreationModal.tsx +++ b/frontend/src/features/material-details/components/PlannedProductionCreationModal.tsx @@ -43,6 +43,7 @@ import { useSites } from '@features/stock-view/hooks/useSites'; import { postProduction, updateProduction } from '@services/productions-service'; import { useNotifications } from '@contexts/notificationContext'; import { GridItem } from '@components/ui/GridItem'; +import { withDefaultProductionTime } from '@util/production-helpers'; type ProductionCategoryCreationModalProps = { open: boolean; @@ -153,8 +154,13 @@ export const PlannedProductionCreationModal = ({ locale="de" error={formError} value={temporaryProduction.estimatedTimeOfCompletion ?? null} - onValueChange={(date) => - setTemporaryProduction({ ...temporaryProduction, estimatedTimeOfCompletion: date ?? undefined }) + onValueChange={(date) => + setTemporaryProduction({ + ...temporaryProduction, + estimatedTimeOfCompletion: temporaryProduction.estimatedTimeOfCompletion == null + ? withDefaultProductionTime(date) + : date ?? undefined + }) } /> diff --git a/frontend/src/models/constants/config.ts b/frontend/src/models/constants/config.ts index 639657d66..20c0959c2 100644 --- a/frontend/src/models/constants/config.ts +++ b/frontend/src/models/constants/config.ts @@ -21,6 +21,7 @@ SPDX-License-Identifier: Apache-2.0 const app = { APP_NAME: import.meta.env.VITE_APP_NAME.trim() as string, BACKEND_BASE_URL: import.meta.env.VITE_BACKEND_BASE_URL.trim() as string, + DEFAULT_PRODUCTION_TIME: (import.meta.env.VITE_DEFAULT_PRODUCTION_TIME).trim() as string, ENDPOINT_MATERIALS: import.meta.env.VITE_ENDPOINT_MATERIALS.trim() as string, ENDPOINT_PRODUCTS: import.meta.env.VITE_ENDPOINT_PRODUCTS.trim() as string, ENDPOINT_MATERIAL_STOCKS: import.meta.env.VITE_ENDPOINT_MATERIAL_STOCKS.trim() as string, diff --git a/frontend/src/util/production-helpers.ts b/frontend/src/util/production-helpers.ts new file mode 100644 index 000000000..2ee120d08 --- /dev/null +++ b/frontend/src/util/production-helpers.ts @@ -0,0 +1,38 @@ +/* +Copyright (c) 2026 Volkswagen AG +Copyright (c) 2026 Contributors to the Eclipse Foundation + +See the NOTICE file(s) distributed with this work for additional +information regarding copyright ownership. + +This program and the accompanying materials are made available under the +terms of the Apache License, Version 2.0 which is available at +https://www.apache.org/licenses/LICENSE-2.0. + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +License for the specific language governing permissions and limitations +under the License. + +SPDX-License-Identifier: Apache-2.0 +*/ + +import { config } from '@models/constants/config'; + +export function withDefaultProductionTime(date: Date | null): Date | undefined { + if (!date || isNaN(date.getTime())) { + return undefined; + } + const dateCopy = new Date(date); + const hasTime = dateCopy.getHours() !== 0 || dateCopy.getMinutes() !== 0; + if (!hasTime) { + const [hours, minutes] = getDefaultProductionTimeNumbers(); + dateCopy.setHours(hours, minutes, 0, 0); + } + return dateCopy; +} + +export function getDefaultProductionTimeNumbers(): [number, number] { + return config.app.DEFAULT_PRODUCTION_TIME.split(":").map(Number) as [number, number]; +} From 17445495ddcb269149fbc3eac2069188dcb6cea1 Mon Sep 17 00:00:00 2001 From: Jakob Allgaier Date: Wed, 14 Jan 2026 17:39:10 +0100 Subject: [PATCH 2/5] chore: update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a969e596a..88c37f40f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ The **need for configuration updates** is **marked bold**. ### Changed - switch to ssi-dim-wallet-stub instead of own mock-util-service (now DCP 1.0 is used) ([#1066](https://github.com/eclipse-tractusx/puris/pull/1066)) -- Added environment variable for default production time ([#1071](https://github.com/eclipse-tractusx/puris/pull/1071)) +- Added environment variable for default production time ([#1072](https://github.com/eclipse-tractusx/puris/pull/1072)) ### Fixes From 6240e5bc0eadb69af0a4f46b533d278d314125e5 Mon Sep 17 00:00:00 2001 From: Jakob Allgaier Date: Thu, 19 Feb 2026 11:23:52 +0100 Subject: [PATCH 3/5] fix: apply PR changes - fix default production time in local deployment - update chart - update changelog --- CHANGELOG.md | 2 +- charts/puris/Chart.yaml | 2 +- frontend/.env.dockerbuild | 2 +- local/docker-compose.yaml | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88c37f40f..8206b6913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,11 +21,11 @@ The **need for configuration updates** is **marked bold**. - updated user guide ([#1070](https://github.com/eclipse-tractusx/puris/pull/1070)) - Added component to copy text to clipboard for puris frontend ([#1058](https://github.com/eclipse-tractusx/puris/pull/1058)) - Added version to about license ([#1067](https://github.com/eclipse-tractusx/puris/pull/1067)) +- Added environment variable for default production time ([#1072](https://github.com/eclipse-tractusx/puris/pull/1072)) ### Changed - switch to ssi-dim-wallet-stub instead of own mock-util-service (now DCP 1.0 is used) ([#1066](https://github.com/eclipse-tractusx/puris/pull/1066)) -- Added environment variable for default production time ([#1072](https://github.com/eclipse-tractusx/puris/pull/1072)) ### Fixes diff --git a/charts/puris/Chart.yaml b/charts/puris/Chart.yaml index 8f65c0be2..df89da646 100644 --- a/charts/puris/Chart.yaml +++ b/charts/puris/Chart.yaml @@ -35,7 +35,7 @@ dependencies: # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 6.1.1 +version: 6.1.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/frontend/.env.dockerbuild b/frontend/.env.dockerbuild index b50a5cf9e..c781b9e2c 100644 --- a/frontend/.env.dockerbuild +++ b/frontend/.env.dockerbuild @@ -29,4 +29,4 @@ VITE_IDP_REALM=\$IDP_REALM VITE_IDP_CLIENT_ID=\$IDP_CLIENT_ID VITE_IDP_REDIRECT_URL_FRONTEND=\$IDP_REDIRECT_URL_FRONTEND -VITE_DEFAULT_PRODUCTION_TIME=$DEFAULT_PRODUCTION_TIME +VITE_DEFAULT_PRODUCTION_TIME=\$DEFAULT_PRODUCTION_TIME diff --git a/local/docker-compose.yaml b/local/docker-compose.yaml index 690ae6cfb..14bcf6140 100644 --- a/local/docker-compose.yaml +++ b/local/docker-compose.yaml @@ -59,6 +59,7 @@ services: - IDP_REALM=Catena-X - IDP_CLIENT_ID=puris-customer - IDP_REDIRECT_URL_FRONTEND=http://localhost:3000 + - DEFAULT_PRODUCTION_TIME=23:59 - NGINX_RATE_LIMIT=10m - NGINX_BURST=30 - NGINX_RATE=10r/s @@ -255,6 +256,7 @@ services: - IDP_REALM=Catena-X - IDP_CLIENT_ID=puris-supplier - IDP_REDIRECT_URL_FRONTEND=http://localhost:3001 + - DEFAULT_PRODUCTION_TIME=23:59 - NGINX_RATE_LIMIT=10m - NGINX_BURST=30 - NGINX_RATE=10r/s From a48b55ae1857df94a3acf049a939b2d1831c39ba Mon Sep 17 00:00:00 2001 From: Jakob Allgaier Date: Thu, 26 Mar 2026 14:14:28 +0100 Subject: [PATCH 4/5] chore: set helm version to 6.2.0 and app version to 5.2.0 --- CHANGELOG.md | 64 +++++++++++++++++++++++++++++++++++++- backend/pom.xml | 2 +- charts/puris/Chart.yaml | 4 +-- charts/puris/README.md | 2 +- frontend/package-lock.json | 4 +-- frontend/package.json | 2 +- 6 files changed, 70 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8ecd03e9..0defb5dd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,69 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v5.2.0 + +The following Changelog lists the changes. Please refer to the [documentation](docs/README.md) for configuration needs and understanding the concept changes. + +The **need for configuration updates** is **marked bold**. + +### Added + +- Added environment variable for default production time ([#1072](https://github.com/eclipse-tractusx/puris/pull/1072)) + +### Changed + +- / + +### Fixes + +- / + +### Known Knowns + +#### Running With Shared DTR and EDC + +PURIS FOSS may not be run on a shared DTR and EDC with full scope. See [Admin Guide](docs/admin/Admin_Guide.md#running-the-puris-foss-application-on-shared-enablement-services) for more information of possible scenarios. + +#### Upgradeability + +Data base migrations are performed but assets. + +#### Data Sovereignty + +For productive use the following enhancements are encouraged + +- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role + --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules +- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this + --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) + --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed +- As a non-Admin user I do not have ability to view policies in detail + --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced +- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented + --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. +- unclear meaning of different stati in negotations + --> add view of successfull contract agreeements wrt which data have been closed +- current logging only done on info level + --> enhance logging of policies (currently only available at debug level) +- in case of non-matching policies (tested in various scenarios) no negotiation takes place + --> enhance visualization or specific Error message to user +- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) + +#### Styleguide + +##### Overall + +- Brief description at the top of each page describing content would be nice for better user experience. + +##### Catalog + +- No action possible -> unclear to user when and how user will consume an offer + +##### Negotiations + +- Add filters for transparency (bpnl, state) + ## v5.1.0 The following Changelog lists the changes. Please refer to the [documentation](docs/README.md) for configuration needs and understanding the concept changes. @@ -21,7 +84,6 @@ The **need for configuration updates** is **marked bold**. - updated user guide ([#1070](https://github.com/eclipse-tractusx/puris/pull/1070)) - Added component to copy text to clipboard for puris frontend ([#1058](https://github.com/eclipse-tractusx/puris/pull/1058)) - Added version to about license ([#1067](https://github.com/eclipse-tractusx/puris/pull/1067)) -- Added environment variable for default production time ([#1072](https://github.com/eclipse-tractusx/puris/pull/1072)) - Added update flow to Material Details View buttons ([#1034](https://github.com/eclipse-tractusx/puris/pull/1034)) - Add Update Partner Data Batch - Prepare backend for batch ([#1105](https://github.com/eclipse-tractusx/puris/pull/1105)) diff --git a/backend/pom.xml b/backend/pom.xml index 59d592062..4403c7e99 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -33,7 +33,7 @@ org.eclipse.tractusx.puris puris-backend - 5.1.0 + 5.2.0 puris-backend PURIS Backend diff --git a/charts/puris/Chart.yaml b/charts/puris/Chart.yaml index df89da646..9aa3fe5b7 100644 --- a/charts/puris/Chart.yaml +++ b/charts/puris/Chart.yaml @@ -35,10 +35,10 @@ dependencies: # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 6.1.0 +version: 6.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "5.1.0" +appVersion: "5.2.0" diff --git a/charts/puris/README.md b/charts/puris/README.md index ab95e0d7d..f85b06c32 100644 --- a/charts/puris/README.md +++ b/charts/puris/README.md @@ -1,6 +1,6 @@ # puris -![Version: 6.1.0](https://img.shields.io/badge/Version-6.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.1.0](https://img.shields.io/badge/AppVersion-5.1.0-informational?style=flat-square) +![Version: 6.2.0](https://img.shields.io/badge/Version-6.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.2.0](https://img.shields.io/badge/AppVersion-5.2.0-informational?style=flat-square) A helm chart for Kubernetes deployment of PURIS diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 25e67fd9c..712abcc1a 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "puris-frontend", - "version": "5.1.0", + "version": "5.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "puris-frontend", - "version": "5.1.0", + "version": "5.2.0", "license": "Apache-2.0", "dependencies": { "@catena-x/portal-shared-components": "^2.1.31", diff --git a/frontend/package.json b/frontend/package.json index 5d33a9f96..9b80ffd4c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -2,7 +2,7 @@ "name": "puris-frontend", "description": "Puris frontend", "license": "Apache-2.0", - "version": "5.1.0", + "version": "5.2.0", "type": "module", "scripts": { "dev": "npm run customer & npm run supplier", From a46a349c5a93b1fc71550488ef7170c0939a3d0b Mon Sep 17 00:00:00 2001 From: Jakob Allgaier Date: Thu, 26 Mar 2026 14:35:36 +0100 Subject: [PATCH 5/5] refactor: CHANEGELOG.md --- CHANGELOG.md | 733 ++++++++++++++++++++++++++------------------------- 1 file changed, 367 insertions(+), 366 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0defb5dd4..3c7ff5c8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -120,36 +120,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v5.0.1 @@ -186,36 +186,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v5.0.0 @@ -251,36 +251,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v4.1.1 @@ -317,36 +317,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v4.1.0 @@ -382,36 +382,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v4.0.0 @@ -448,36 +448,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v3.4.0 @@ -495,7 +495,7 @@ The **need for configuration updates** is **marked bold**. ### Fixes -- Fixed import bugs for empty rows and duplicate stocks ([#961](https://github.com/eclipse-tractusx/puris/pull/961)) +* Fixed import bugs for empty rows and duplicate stocks ([#961](https://github.com/eclipse-tractusx/puris/pull/961)) ### Known Knowns @@ -511,36 +511,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v3.3.0 @@ -550,35 +550,35 @@ The **need for configuration updates** is **marked bold**. ### Added -- Added unit tests Excel imports ([#922](https://github.com/eclipse-tractusx/puris/pull/922)) -- Added role based permission handling for endpoints ([#925](https://github.com/eclipse-tractusx/puris/pull/925)) -- Added Excel import page with template files download ([#930](https://github.com/eclipse-tractusx/puris/pull/930)) +* Added unit tests Excel imports ([#922](https://github.com/eclipse-tractusx/puris/pull/922)) +* Added role based permission handling for endpoints ([#925](https://github.com/eclipse-tractusx/puris/pull/925)) +* Added Excel import page with template files download ([#930](https://github.com/eclipse-tractusx/puris/pull/930)) ### Changed -- Updated End-to-End tests to support local authentication ([#920](https://github.com/eclipse-tractusx/puris/pull/920)) -- Update DemandAndCapacityNotification API to implement standard version 2.0 ([#921](https://github.com/eclipse-tractusx/puris/pull/921)) -- Update Frontend Notification View with grouping based on disruptionId and seperating by status, forwarding connected notifications, editing and resolving notifications ([#926](https://github.com/eclipse-tractusx/puris/pull/926)) -- CI: Trivy workflow should not fail if critical or high vulnerabilities are found ([#948](https://github.com/eclipse-tractusx/puris/pull/948)). +* Updated End-to-End tests to support local authentication ([#920](https://github.com/eclipse-tractusx/puris/pull/920)) +* Update DemandAndCapacityNotification API to implement standard version 2.0 ([#921](https://github.com/eclipse-tractusx/puris/pull/921)) +* Update Frontend Notification View with grouping based on disruptionId and seperating by status, forwarding connected notifications, editing and resolving notifications ([#926](https://github.com/eclipse-tractusx/puris/pull/926)) +* CI: Trivy workflow should not fail if critical or high vulnerabilities are found ([#948](https://github.com/eclipse-tractusx/puris/pull/948)). ### Fixes -- Drop further security capabilities and apply default seccomp in chart's deployments ([#938](https://github.com/eclipse-tractusx/puris/pull/938)) -- Fixed notification resolution validation issue ([#952](https://github.com/eclipse-tractusx/puris/pull/952)) -- Fixed notification resolution start date validation ([#954](https://github.com/eclipse-tractusx/puris/pull/954)) -- Fixed E2E test for sidebar ([#958](https://github.com/eclipse-tractusx/puris/pull/958)) +* Drop further security capabilities and apply default seccomp in chart's deployments ([#938](https://github.com/eclipse-tractusx/puris/pull/938)) +* Fixed notification resolution validation issue ([#952](https://github.com/eclipse-tractusx/puris/pull/952)) +* Fixed notification resolution start date validation ([#954](https://github.com/eclipse-tractusx/puris/pull/954)) +* Fixed E2E test for sidebar ([#958](https://github.com/eclipse-tractusx/puris/pull/958)) ### Chore -- Updated open API ([#929](https://github.com/eclipse-tractusx/puris/pull/929)) -- Updated dependencies to resolve high and critical security vulnerabilities ([#932](https://github.com/eclipse-tractusx/puris/pull/932)) -- Updated User guide with the updated notification view and the new import page ([#933](https://github.com/eclipse-tractusx/puris/pull/933)) -- Updated Arc42 documentation ([#937](https://github.com/eclipse-tractusx/puris/pull/937)) -- Bump helm test workfow to new kubernetes version and latest q-gates puris version ([#938](https://github.com/eclipse-tractusx/puris/pull/938)) +* Updated open API ([#929](https://github.com/eclipse-tractusx/puris/pull/929)) +* Updated dependencies to resolve high and critical security vulnerabilities ([#932](https://github.com/eclipse-tractusx/puris/pull/932)) +* Updated User guide with the updated notification view and the new import page ([#933](https://github.com/eclipse-tractusx/puris/pull/933)) +* Updated Arc42 documentation ([#937](https://github.com/eclipse-tractusx/puris/pull/937)) +* Bump helm test workfow to new kubernetes version and latest q-gates puris version ([#938](https://github.com/eclipse-tractusx/puris/pull/938)) ### Version Bumps -- Digital Twin Registry to 0.9.0-RC1 ([#957](https://github.com/eclipse-tractusx/puris/pull/957)) +* Digital Twin Registry to 0.9.0-RC1 ([#957](https://github.com/eclipse-tractusx/puris/pull/957)) ### Known Knowns @@ -590,36 +590,36 @@ Data base migrations are performed but assets. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> enhance visualization or specific Error message to user -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide ##### Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. ##### Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer ##### Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## v3.2.0 @@ -629,17 +629,17 @@ The **need for configuration updates** is **marked bold**. ### Added -- Implement Excel imports through +* Implement Excel imports through API ([#897](https://github.com/eclipse-tractusx/puris/pull/897/), [#907](https://github.com/eclipse-tractusx/puris/pull/907)) -- Added liquibase for database migrations ([#913](https://github.com/eclipse-tractusx/puris/pull/913)) +* Added liquibase for database migrations ([#913](https://github.com/eclipse-tractusx/puris/pull/913)) ### Changed -- Use the frontend's existing keycloak authentication to authorize backend calls ([#896](https://github.com/eclipse-tractusx/puris/pull/896)) (**moved IDP configuration and IDP no longer optional**) +* Use the frontend's existing keycloak authentication to authorize backend calls ([#896](https://github.com/eclipse-tractusx/puris/pull/896)) (**moved IDP configuration and IDP no longer optional**) ### Fixes -- Added lastUpdatedOnDateTime to local representations of Demand, Production and Delivery ([#908](https://github.com/eclipse-tractusx/puris/pull/908)) +* Added lastUpdatedOnDateTime to local representations of Demand, Production and Delivery ([#908](https://github.com/eclipse-tractusx/puris/pull/908)) ## [v3.1.0](https://github.com/eclipse-tractusx/puris/releases/tag/3.1.0) @@ -649,50 +649,50 @@ The **need for configuration updates** is **marked bold**. ### Added -- One line local deployment script ([#469](https://github.com/eclipse-tractusx/puris/pull/469)) -- End-to-end tests using Cypress ([#868](https://github.com/eclipse-tractusx/puris/pull/868)) +* One line local deployment script ([#469](https://github.com/eclipse-tractusx/puris/pull/469)) +* End-to-end tests using Cypress ([#868](https://github.com/eclipse-tractusx/puris/pull/868)) ### Changed -- Switch to spring actuator helm endpoint including enhancement of health, liveness and startup probe ([#469](https://github.com/eclipse-tractusx/puris/pull/469)) -- Company name and BPNL display in the sidebar for easier distinguishing between applications ([#837](https://github.com/eclipse-tractusx/puris/pull/837)) -- Updated partner data request flow to automatically update the UI when the data is received ([#847](https://github.com/eclipse-tractusx/puris/pull/847)) -- Extended Days of Supply unit tests in the backend to include some additional edge cases ([#870](https://github.com/eclipse-tractusx/puris/pull/870)) +* Switch to spring actuator helm endpoint including enhancement of health, liveness and startup probe ([#469](https://github.com/eclipse-tractusx/puris/pull/469)) +* Company name and BPNL display in the sidebar for easier distinguishing between applications ([#837](https://github.com/eclipse-tractusx/puris/pull/837)) +* Updated partner data request flow to automatically update the UI when the data is received ([#847](https://github.com/eclipse-tractusx/puris/pull/847)) +* Extended Days of Supply unit tests in the backend to include some additional edge cases ([#870](https://github.com/eclipse-tractusx/puris/pull/870)) Fixes -- Expect dtr base url to include `api/v3` in asset ([#824](https://github.com/eclipse-tractusx/puris/pull/824)) (**updated default values and asset definition**) -- Creating own partner entity does not run into ([#838](https://github.com/eclipse-tractusx/puris/pull/838)) -- submodel endpoint returns 501 instead of 500 for operations not +* Expect dtr base url to include `api/v3` in asset ([#824](https://github.com/eclipse-tractusx/puris/pull/824)) (**updated default values and asset definition**) +* Creating own partner entity does not run into ([#838](https://github.com/eclipse-tractusx/puris/pull/838)) +* submodel endpoint returns 501 instead of 500 for operations not implemented ([#850](https://github.com/eclipse-tractusx/puris/pull/850)) -- Creating own partner entity does not run into exception ([#838](https://github.com/eclipse-tractusx/puris/pull/838)) -- Submodels are exposed via `submodel/$value` and not `$value` including the update of +* Creating own partner entity does not run into exception ([#838](https://github.com/eclipse-tractusx/puris/pull/838)) +* Submodels are exposed via `submodel/$value` and not `$value` including the update of SubmodelDescriptors ([#849](https://github.com/eclipse-tractusx/puris/pull/849)) -- use own bpnl as default tenant (`Edc-Bpn`) when updating own dtr and only use partner BPNL in +* use own bpnl as default tenant (`Edc-Bpn`) when updating own dtr and only use partner BPNL in externalSubjectId ([#849](https://github.com/eclipse-tractusx/puris/pull/849)) -- use `assetId` instead of `semanticId` and `dct:type=submodel` during catalog request for submodel +* use `assetId` instead of `semanticId` and `dct:type=submodel` during catalog request for submodel assets ([#849](https://github.com/eclipse-tractusx/puris/pull/849)) -- use the correct request when refreshing material data from customers ([#879](https://github.com/eclipse-tractusx/puris/pull/879)) -- add the correct role to the login commands in cypress tests and utilize sessions to optimize login logic ([#889](https://github.com/eclipse-tractusx/puris/pull/889)) -- fix bruno integration test suite ([#893](https://github.com/eclipse-tractusx/puris/pull/893)) +* use the correct request when refreshing material data from customers ([#879](https://github.com/eclipse-tractusx/puris/pull/879)) +* add the correct role to the login commands in cypress tests and utilize sessions to optimize login logic ([#889](https://github.com/eclipse-tractusx/puris/pull/889)) +* fix bruno integration test suite ([#893](https://github.com/eclipse-tractusx/puris/pull/893)) Chore -- Added missing notice sections for markdown files ([#884](https://github.com/eclipse-tractusx/puris/pull/884)) -- Updated User Guide ([#883](https://github.com/eclipse-tractusx/puris/pull/883)) -- Updated open API ([#894](https://github.com/eclipse-tractusx/puris/pull/894)) +* Added missing notice sections for markdown files ([#884](https://github.com/eclipse-tractusx/puris/pull/884)) +* Updated User Guide ([#883](https://github.com/eclipse-tractusx/puris/pull/883)) +* Updated open API ([#894](https://github.com/eclipse-tractusx/puris/pull/894)) CI -- reduce dashtool failures during test and dependency check in backend ([#890](https://github.com/eclipse-tractusx/puris/pull/890)) +* reduce dashtool failures during test and dependency check in backend ([#890](https://github.com/eclipse-tractusx/puris/pull/890)) Version Bumps -- Infrastructure Components - - Tractus-X Connector to 0.10.0-rc2 ([#872](https://github.com/eclipse-tractusx/puris/pull/872)) - - Digital Twin Registry to 0.8.0-RC1 ([#872](https://github.com/eclipse-tractusx/puris/pull/872)) -- Backend Dependencies - - spring-boot from 3.4.3 to 3.4.5 in /backend ([#871](https://github.com/eclipse-tractusx/puris/pull/871)) +* Infrastructure Components + * Tractus-X Connector to 0.10.0-rc2 ([#872](https://github.com/eclipse-tractusx/puris/pull/872)) + * Digital Twin Registry to 0.8.0-RC1 ([#872](https://github.com/eclipse-tractusx/puris/pull/872)) +* Backend Dependencies + * spring-boot from 3.4.3 to 3.4.5 in /backend ([#871](https://github.com/eclipse-tractusx/puris/pull/871)) ### Removed @@ -713,34 +713,34 @@ As currently no active user was known migrations of data are not yet supported. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## [v3.0.0](https://github.com/eclipse-tractusx/puris/releases/tag/3.0.0) @@ -750,82 +750,82 @@ The **need for configuration updates** is **marked bold**. ### Added -- Added banner for puris backend ([#556](https://github.com/eclipse-tractusx/puris/pull/556)) -- Add bruno integration test collection ([#546](https://github.com/eclipse-tractusx/puris/pull/546)) +* Added banner for puris backend ([#556](https://github.com/eclipse-tractusx/puris/pull/556)) +* Add bruno integration test collection ([#546](https://github.com/eclipse-tractusx/puris/pull/546)) ### Changed Fixes -- Encode material numbers in frontend parameters with base64 ([#512](https://github.com/eclipse-tractusx/puris/pull/512), [#580](https://github.com/eclipse-tractusx/puris/pull/580))(_breaking change_) -- Change log message for already existing edc assets on startup ([547](https://github.com/eclipse-tractusx/puris/pull/547)) -- Don't return own partner entity from partner/all endpoint ([#563](https://github.com/eclipse-tractusx/puris/pull/563)) -- Fix material number issues and partner/all endpoint in integration test suite ([#689](https://github.com/eclipse-tractusx/puris/pull/689)) -- improve demand and capacity notification (accept material number correctly, added test, role specific differentiation) ([#576](https://github.com/eclipse-tractusx/puris/pull/576)) -- Can't create select a partner when creating deliveries ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) -- Missing indicators for mandatory fields ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) -- Update "Supplier Site" label on add demand dialog to "Expected Supplier Site" ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) -- fixed translation of weekdays to english language ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) -- fixed missing mandatory indicator for Estimated Completion Time ([#801](https://github.com/eclipse-tractusx/puris/pull/801)) +* Encode material numbers in frontend parameters with base64 ([#512](https://github.com/eclipse-tractusx/puris/pull/512), [#580](https://github.com/eclipse-tractusx/puris/pull/580))(*breaking change*) +* Change log message for already existing edc assets on startup ([547](https://github.com/eclipse-tractusx/puris/pull/547)) +* Don't return own partner entity from partner/all endpoint ([#563](https://github.com/eclipse-tractusx/puris/pull/563)) +* Fix material number issues and partner/all endpoint in integration test suite ([#689](https://github.com/eclipse-tractusx/puris/pull/689)) +* improve demand and capacity notification (accept material number correctly, added test, role specific differentiation) ([#576](https://github.com/eclipse-tractusx/puris/pull/576)) +* Can't create select a partner when creating deliveries ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) +* Missing indicators for mandatory fields ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) +* Update "Supplier Site" label on add demand dialog to "Expected Supplier Site" ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) +* fixed translation of weekdays to english language ([#800](https://github.com/eclipse-tractusx/puris/pull/800)) +* fixed missing mandatory indicator for Estimated Completion Time ([#801](https://github.com/eclipse-tractusx/puris/pull/801)) UI enhancements -- Reworked UI theme ([#709](https://github.com/eclipse-tractusx/puris/pull/709)) -- Added Material List View ([#732](https://github.com/eclipse-tractusx/puris/pull/732)) -- Added Material Details View ([#747](https://github.com/eclipse-tractusx/puris/pull/747), [#750](https://github.com/eclipse-tractusx/puris/pull/750)) -- Integrated Stock View into Material Details View ([#778](https://github.com/eclipse-tractusx/puris/pull/778)) +* Reworked UI theme ([#709](https://github.com/eclipse-tractusx/puris/pull/709)) +* Added Material List View ([#732](https://github.com/eclipse-tractusx/puris/pull/732)) +* Added Material Details View ([#747](https://github.com/eclipse-tractusx/puris/pull/747), [#750](https://github.com/eclipse-tractusx/puris/pull/750)) +* Integrated Stock View into Material Details View ([#778](https://github.com/eclipse-tractusx/puris/pull/778)) Days of Supply Information implementation -- Added Days of Supply EDC integration ([#694](https://github.com/eclipse-tractusx/puris/pull/694)) -- Added Days of Supply to the frontend ([#776](https://github.com/eclipse-tractusx/puris/pull/776)) -- Added unit tests for Days of Supply to the backend ([#454](https://github.com/eclipse-tractusx/puris/issues/454), [#694](https://github.com/eclipse-tractusx/puris/pull/694)) -- Add integration test cases for bruno for days of supply ([#752](https://github.com/eclipse-tractusx/puris/pull/752)) -- Fix days of supply calculation by only relying on the projected stocks without the addedValue ([#773](https://github.com/eclipse-tractusx/puris/pull/773)) +* Added Days of Supply EDC integration ([#694](https://github.com/eclipse-tractusx/puris/pull/694)) +* Added Days of Supply to the frontend ([#776](https://github.com/eclipse-tractusx/puris/pull/776)) +* Added unit tests for Days of Supply to the backend ([#454](https://github.com/eclipse-tractusx/puris/issues/454), [#694](https://github.com/eclipse-tractusx/puris/pull/694)) +* Add integration test cases for bruno for days of supply ([#752](https://github.com/eclipse-tractusx/puris/pull/752)) +* Fix days of supply calculation by only relying on the projected stocks without the addedValue ([#773](https://github.com/eclipse-tractusx/puris/pull/773)) CI -- Added workflow for backend unit tests ([#616](https://github.com/eclipse-tractusx/puris/pull/616)) -- Added trufflehog secret scanning tool ([#531](https://github.com/eclipse-tractusx/puris/pull/531), [#555](https://github.com/eclipse-tractusx/puris/pull/555)) -- Updated Triviy version and workflow failure ([#452](https://github.com/eclipse-tractusx/puris/pull/452)) -- Changed Helm Test workflow to only check for version bump in the end so that version bumps are not enforced anymore ([#450](https://github.com/eclipse-tractusx/puris/pull/450)) +* Added workflow for backend unit tests ([#616](https://github.com/eclipse-tractusx/puris/pull/616)) +* Added trufflehog secret scanning tool ([#531](https://github.com/eclipse-tractusx/puris/pull/531), [#555](https://github.com/eclipse-tractusx/puris/pull/555)) +* Updated Triviy version and workflow failure ([#452](https://github.com/eclipse-tractusx/puris/pull/452)) +* Changed Helm Test workflow to only check for version bump in the end so that version bumps are not enforced anymore ([#450](https://github.com/eclipse-tractusx/puris/pull/450)) Chore -- Changed license headers to follow TRG 7.02 ([#562](https://github.com/eclipse-tractusx/puris/pull/562)) -- Cleaned up erp adapter request feature ([#578](https://github.com/eclipse-tractusx/puris/pull/578)) -- Updated User Guide ([#780](https://github.com/eclipse-tractusx/puris/pull/780)) -- Update of swagger documentation ([#794](https://github.com/eclipse-tractusx/puris/pull/794)) +* Changed license headers to follow TRG 7.02 ([#562](https://github.com/eclipse-tractusx/puris/pull/562)) +* Cleaned up erp adapter request feature ([#578](https://github.com/eclipse-tractusx/puris/pull/578)) +* Updated User Guide ([#780](https://github.com/eclipse-tractusx/puris/pull/780)) +* Update of swagger documentation ([#794](https://github.com/eclipse-tractusx/puris/pull/794)) Version Bumps -- Infrastructure Components - - Tractus-X Connector to 0.8.0 ([#705](https://github.com/eclipse-tractusx/puris/pull/705)) and 0.9.0-rc2 ([#781](https://github.com/eclipse-tractusx/puris/pull/781)) - - Digital Twin Registry to 0.7.0 ([#781](https://github.com/eclipse-tractusx/puris/pull/781)) -- Backend Dependencies - - edc-connector-version from 0.7.0 to 0.11.1 in /backend ([#781](https://github.com/eclipse-tractusx/puris/pull/781)) - - org.springdoc:springdoc-openapi-starter-webmvc-ui in /backend ([#790](https://github.com/eclipse-tractusx/puris/pull/790)) - - org.springframework.boot:spring-boot-starter-parent in /backend ([#790](https://github.com/eclipse-tractusx/puris/pull/790)) -- IAM Mock (Local Deployment) - - jinja2 from 3.1.4 to 3.1.5 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) - - python-multipart from 0.0.7 to 0.0.18 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) - - starlette from 0.37.2 to 0.40.0 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) - - cryptography from 42.0.5 to 44.0.1 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) -- CI - - peter-evans/dockerhub-description from 3.4.2 to 4.0.0 ([#460](https://github.com/eclipse-tractusx/puris/pull/460)) - - actions/checkout from 4.1.6 to 4.2.3 ([#461](https://github.com/eclipse-tractusx/puris/pull/461), [#629](https://github.com/eclipse-tractusx/puris/pull/629), [#607](https://github.com/eclipse-tractusx/puris/pull/607), [#646](https://github.com/eclipse-tractusx/puris/pull/646)) - - actions/setup-node from 4.0.2 to 4.1.0 ([#552](https://github.com/eclipse-tractusx/puris/pull/552), [#594](https://github.com/eclipse-tractusx/puris/pull/594), [#650](https://github.com/eclipse-tractusx/puris/pull/650)) - - trufflesecurity/trufflehog from 3.80.2 to 3.82.13 ([#544](https://github.com/eclipse-tractusx/puris/pull/544), [#557](https://github.com/eclipse-tractusx/puris/pull/557), [#571](https://github.com/eclipse-tractusx/puris/pull/571), [#588](https://github.com/eclipse-tractusx/puris/pull/588), [#603](https://github.com/eclipse-tractusx/puris/pull/603), [#608](https://github.com/eclipse-tractusx/puris/pull/608), [#610](https://github.com/eclipse-tractusx/puris/pull/610), [#630](https://github.com/eclipse-tractusx/puris/pull/630), [#636](https://github.com/eclipse-tractusx/puris/pull/636), [#639](https://github.com/eclipse-tractusx/puris/pull/639), [#651](https://github.com/eclipse-tractusx/puris/pull/651)) - - docker/setup-buildx-action from 3.3.0 to 3.7.1 ([#553](https://github.com/eclipse-tractusx/puris/pull/553), [#618](https://github.com/eclipse-tractusx/puris/pull/618)) - - docker/login-action from 3.1.0 to 3.3.0 ([#548](https://github.com/eclipse-tractusx/puris/pull/548)) - - docker/setup-qemu-action from 3.0.0 to 3.2.0 ([#549](https://github.com/eclipse-tractusx/puris/pull/549)) - - github/codeql-action from 3.25.10 to 3.26.13 ([#545](https://github.com/eclipse-tractusx/puris/pull/545), [#558](https://github.com/eclipse-tractusx/puris/pull/558), [#567](https://github.com/eclipse-tractusx/puris/pull/567), [#569](https://github.com/eclipse-tractusx/puris/pull/569), [#589](https://github.com/eclipse-tractusx/puris/pull/589), [#593](https://github.com/eclipse-tractusx/puris/pull/593), [#604](https://github.com/eclipse-tractusx/puris/pull/604), [#614](https://github.com/eclipse-tractusx/puris/pull/614), [#624](https://github.com/eclipse-tractusx/puris/pull/624), [#632](https://github.com/eclipse-tractusx/puris/pull/632), [#645](https://github.com/eclipse-tractusx/puris/pull/645)) - - actions/setup-java from 3.13.0 to 4.5.0 ([#535](https://github.com/eclipse-tractusx/puris/pull/535), [#605](https://github.com/eclipse-tractusx/puris/pull/605), [#628](https://github.com/eclipse-tractusx/puris/pull/628), [#649](https://github.com/eclipse-tractusx/puris/pull/649)) - - docker/build-push-action from 5.3.0 to 6.9.0 ([#543](https://github.com/eclipse-tractusx/puris/pull/543), [#612](https://github.com/eclipse-tractusx/puris/pull/612)) - - actions/setup-python from 5.1.1 to 5.2.0 ([#570](https://github.com/eclipse-tractusx/puris/pull/570)) to 5.3.0 ([#648](https://github.com/eclipse-tractusx/puris/pull/648)) - - checkmarx/kics-github-action from 2.1.0 to 2.1.3 ([#560](https://github.com/eclipse-tractusx/puris/pull/560), [#619](https://github.com/eclipse-tractusx/puris/pull/619)) - - aquasecurity/trivy-action from 0.22.0 to 0.24.0 ([#559](https://github.com/eclipse-tractusx/puris/pull/559),[#627](https://github.com/eclipse-tractusx/puris/pull/627), [#635](https://github.com/eclipse-tractusx/puris/pull/635)) - - keycloak-js from 23.0.5 to 25.0.6 in /frontend ([#595](https://github.com/eclipse-tractusx/puris/pull/595)) +* Infrastructure Components + * Tractus-X Connector to 0.8.0 ([#705](https://github.com/eclipse-tractusx/puris/pull/705)) and 0.9.0-rc2 ([#781](https://github.com/eclipse-tractusx/puris/pull/781)) + * Digital Twin Registry to 0.7.0 ([#781](https://github.com/eclipse-tractusx/puris/pull/781)) +* Backend Dependencies + * edc-connector-version from 0.7.0 to 0.11.1 in /backend ([#781](https://github.com/eclipse-tractusx/puris/pull/781)) + * org.springdoc:springdoc-openapi-starter-webmvc-ui in /backend ([#790](https://github.com/eclipse-tractusx/puris/pull/790)) + * org.springframework.boot:spring-boot-starter-parent in /backend ([#790](https://github.com/eclipse-tractusx/puris/pull/790)) +* IAM Mock (Local Deployment) + * jinja2 from 3.1.4 to 3.1.5 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) + * python-multipart from 0.0.7 to 0.0.18 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) + * starlette from 0.37.2 to 0.40.0 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) + * cryptography from 42.0.5 to 44.0.1 ([#784](https://github.com/eclipse-tractusx/puris/pull/784)) +* CI + * peter-evans/dockerhub-description from 3.4.2 to 4.0.0 ([#460](https://github.com/eclipse-tractusx/puris/pull/460)) + * actions/checkout from 4.1.6 to 4.2.3 ([#461](https://github.com/eclipse-tractusx/puris/pull/461), [#629](https://github.com/eclipse-tractusx/puris/pull/629), [#607](https://github.com/eclipse-tractusx/puris/pull/607), [#646](https://github.com/eclipse-tractusx/puris/pull/646)) + * actions/setup-node from 4.0.2 to 4.1.0 ([#552](https://github.com/eclipse-tractusx/puris/pull/552), [#594](https://github.com/eclipse-tractusx/puris/pull/594), [#650](https://github.com/eclipse-tractusx/puris/pull/650)) + * trufflesecurity/trufflehog from 3.80.2 to 3.82.13 ([#544](https://github.com/eclipse-tractusx/puris/pull/544), [#557](https://github.com/eclipse-tractusx/puris/pull/557), [#571](https://github.com/eclipse-tractusx/puris/pull/571), [#588](https://github.com/eclipse-tractusx/puris/pull/588), [#603](https://github.com/eclipse-tractusx/puris/pull/603), [#608](https://github.com/eclipse-tractusx/puris/pull/608), [#610](https://github.com/eclipse-tractusx/puris/pull/610), [#630](https://github.com/eclipse-tractusx/puris/pull/630), [#636](https://github.com/eclipse-tractusx/puris/pull/636), [#639](https://github.com/eclipse-tractusx/puris/pull/639), [#651](https://github.com/eclipse-tractusx/puris/pull/651)) + * docker/setup-buildx-action from 3.3.0 to 3.7.1 ([#553](https://github.com/eclipse-tractusx/puris/pull/553), [#618](https://github.com/eclipse-tractusx/puris/pull/618)) + * docker/login-action from 3.1.0 to 3.3.0 ([#548](https://github.com/eclipse-tractusx/puris/pull/548)) + * docker/setup-qemu-action from 3.0.0 to 3.2.0 ([#549](https://github.com/eclipse-tractusx/puris/pull/549)) + * github/codeql-action from 3.25.10 to 3.26.13 ([#545](https://github.com/eclipse-tractusx/puris/pull/545), [#558](https://github.com/eclipse-tractusx/puris/pull/558), [#567](https://github.com/eclipse-tractusx/puris/pull/567), [#569](https://github.com/eclipse-tractusx/puris/pull/569), [#589](https://github.com/eclipse-tractusx/puris/pull/589), [#593](https://github.com/eclipse-tractusx/puris/pull/593), [#604](https://github.com/eclipse-tractusx/puris/pull/604), [#614](https://github.com/eclipse-tractusx/puris/pull/614), [#624](https://github.com/eclipse-tractusx/puris/pull/624), [#632](https://github.com/eclipse-tractusx/puris/pull/632), [#645](https://github.com/eclipse-tractusx/puris/pull/645)) + * actions/setup-java from 3.13.0 to 4.5.0 ([#535](https://github.com/eclipse-tractusx/puris/pull/535), [#605](https://github.com/eclipse-tractusx/puris/pull/605), [#628](https://github.com/eclipse-tractusx/puris/pull/628), [#649](https://github.com/eclipse-tractusx/puris/pull/649)) + * docker/build-push-action from 5.3.0 to 6.9.0 ([#543](https://github.com/eclipse-tractusx/puris/pull/543), [#612](https://github.com/eclipse-tractusx/puris/pull/612)) + * actions/setup-python from 5.1.1 to 5.2.0 ([#570](https://github.com/eclipse-tractusx/puris/pull/570)) to 5.3.0 ([#648](https://github.com/eclipse-tractusx/puris/pull/648)) + * checkmarx/kics-github-action from 2.1.0 to 2.1.3 ([#560](https://github.com/eclipse-tractusx/puris/pull/560), [#619](https://github.com/eclipse-tractusx/puris/pull/619)) + * aquasecurity/trivy-action from 0.22.0 to 0.24.0 ([#559](https://github.com/eclipse-tractusx/puris/pull/559),[#627](https://github.com/eclipse-tractusx/puris/pull/627), [#635](https://github.com/eclipse-tractusx/puris/pull/635)) + * keycloak-js from 23.0.5 to 25.0.6 in /frontend ([#595](https://github.com/eclipse-tractusx/puris/pull/595)) ### Removed @@ -846,34 +846,34 @@ As currently no active user was known migrations of data are not yet supported. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (withoutv code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced +* ContractReference Constraint or configuration of policies specific to one partner only has notnot implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## [v2.1.0](https://github.com/eclipse-tractusx/puris/releases/tag/2.1.0) @@ -884,48 +884,48 @@ The **need for configuration updates** is **marked bold**. ### Added -- **ERP Adapter** - - Added client ([#443](https://github.com/eclipse-tractusx/puris/pull/443)) - - Added trigger service ([#474](https://github.com/eclipse-tractusx/puris/pull/474)) - - Added button to frontend ([#504](https://github.com/eclipse-tractusx/puris/pull/504)) -- backend implementation for Days of Supply ([CX-0145](https://catenax-ev.github.io/docs/next/standards/CX-0145-DaysofsupplyExchange)) ([#441](https://github.com/eclipse-tractusx/puris/pull/441)) -- Demand and Capacity Notifications ([CX-0146](https://catenax-ev.github.io/docs/next/standards/CX-0146-SupplyChainDisruptionNotifications)) can be sent between partners ([#447](https://github.com/eclipse-tractusx/puris/pull/447), [#451](https://github.com/eclipse-tractusx/puris/pull/451)) +* **ERP Adapter** + * Added client ([#443](https://github.com/eclipse-tractusx/puris/pull/443)) + * Added trigger service ([#474](https://github.com/eclipse-tractusx/puris/pull/474)) + * Added button to frontend ([#504](https://github.com/eclipse-tractusx/puris/pull/504)) +* backend implementation for Days of Supply ([CX-0145](https://catenax-ev.github.io/docs/next/standards/CX-0145-DaysofsupplyExchange)) ([#441](https://github.com/eclipse-tractusx/puris/pull/441)) +* Demand and Capacity Notifications ([CX-0146](https://catenax-ev.github.io/docs/next/standards/CX-0146-SupplyChainDisruptionNotifications)) can be sent between partners ([#447](https://github.com/eclipse-tractusx/puris/pull/447), [#451](https://github.com/eclipse-tractusx/puris/pull/451)) ### Changed Fixes -- Fail contract negotiation if non-empty obligations or prohibitions are set ([#509](https://github.com/eclipse-tractusx/puris/pull/509)) -- Use expanded jsonLD when evaluating catalog offers ([#416](https://github.com/eclipse-tractusx/puris/pull/416)) -- Publish cxId to DTR when retrieving Part Type later ([#483](https://github.com/eclipse-tractusx/puris/pull/483)) +* Fail contract negotiation if non-empty obligations or prohibitions are set ([#509](https://github.com/eclipse-tractusx/puris/pull/509)) +* Use expanded jsonLD when evaluating catalog offers ([#416](https://github.com/eclipse-tractusx/puris/pull/416)) +* Publish cxId to DTR when retrieving Part Type later ([#483](https://github.com/eclipse-tractusx/puris/pull/483)) CI -- Trivy Workflow ([#452](https://github.com/eclipse-tractusx/puris/pull/452)) -- Helm Test to only check for version bump in the end so that version bumps are not enforced anymore ([#450](https://github.com/eclipse-tractusx/puris/pull/450)) +* Trivy Workflow ([#452](https://github.com/eclipse-tractusx/puris/pull/452)) +* Helm Test to only check for version bump in the end so that version bumps are not enforced anymore ([#450](https://github.com/eclipse-tractusx/puris/pull/450)) Chore -- Updated license information ([#468](https://github.com/eclipse-tractusx/puris/pull/468), [#476](https://github.com/eclipse-tractusx/puris/pull/476), [#527](https://github.com/eclipse-tractusx/puris/pull/527)) -- Update of swagger documentation ([#514](https://github.com/eclipse-tractusx/puris/pull/514), [#516](https://github.com/eclipse-tractusx/puris/pull/516)) -- Version Bumps - - Infrastructure Components - - Tractus-X EDC to 0.7.3 ([#508](https://github.com/eclipse-tractusx/puris/pull/508)) - - Digital Twin Registry to 0.5.0 ([#496](https://github.com/eclipse-tractusx/puris/pull/496)) - - Backend Dependencies - - spring boot starter parent to 3.3.1 ([#471](https://github.com/eclipse-tractusx/puris/pull/471)) - - Frontend Dependencies - - vite to 5.3.3 ([#481](https://github.com/eclipse-tractusx/puris/pull/481)) - - postcss to 8.4.39 ([#478](https://github.com/eclipse-tractusx/puris/pull/478)) - - braces to 3.0.3 ([#453](https://github.com/eclipse-tractusx/puris/pull/453)) - - typescript-eslint/eslint-plugin to 7.0.0 (7.0.0) - - IAM Mock (Local Deployment): certify to 2024.7.4 ([#484](https://github.com/eclipse-tractusx/puris/pull/484)) - - CI - - actions/setup-python to 5.1.1 ([#492](https://github.com/eclipse-tractusx/puris/pull/492)) - - github/codeql-action to 3.25.10 ([#448](https://github.com/eclipse-tractusx/puris/pull/448)) - - checkmarx/kics-github-action to 2.1.0 ([#446](https://github.com/eclipse-tractusx/puris/pull/446)) - - actions/download-artifact to 4.1.7 ([#396](https://github.com/eclipse-tractusx/puris/pull/396)) - - azure/setup-helm to 4 ([#395](https://github.com/eclipse-tractusx/puris/pull/395)) +* Updated license information ([#468](https://github.com/eclipse-tractusx/puris/pull/468), [#476](https://github.com/eclipse-tractusx/puris/pull/476), [#527](https://github.com/eclipse-tractusx/puris/pull/527)) +* Update of swagger documentation ([#514](https://github.com/eclipse-tractusx/puris/pull/514), [#516](https://github.com/eclipse-tractusx/puris/pull/516)) +* Version Bumps + * Infrastructure Components + * Tractus-X EDC to 0.7.3 ([#508](https://github.com/eclipse-tractusx/puris/pull/508)) + * Digital Twin Registry to 0.5.0 ([#496](https://github.com/eclipse-tractusx/puris/pull/496)) + * Backend Dependencies + * spring boot starter parent to 3.3.1 ([#471](https://github.com/eclipse-tractusx/puris/pull/471)) + * Frontend Dependencies + * vite to 5.3.3 ([#481](https://github.com/eclipse-tractusx/puris/pull/481)) + * postcss to 8.4.39 ([#478](https://github.com/eclipse-tractusx/puris/pull/478)) + * braces to 3.0.3 ([#453](https://github.com/eclipse-tractusx/puris/pull/453)) + * typescript-eslint/eslint-plugin to 7.0.0 (7.0.0) + * IAM Mock (Local Deployment): certify to 2024.7.4 ([#484](https://github.com/eclipse-tractusx/puris/pull/484)) + * CI + * actions/setup-python to 5.1.1 ([#492](https://github.com/eclipse-tractusx/puris/pull/492)) + * github/codeql-action to 3.25.10 ([#448](https://github.com/eclipse-tractusx/puris/pull/448)) + * checkmarx/kics-github-action to 2.1.0 ([#446](https://github.com/eclipse-tractusx/puris/pull/446)) + * actions/download-artifact to 4.1.7 ([#396](https://github.com/eclipse-tractusx/puris/pull/396)) + * azure/setup-helm to 4 ([#395](https://github.com/eclipse-tractusx/puris/pull/395)) ### Removed @@ -946,46 +946,47 @@ As currently no active user was known migrations of data are not yet supported. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (without code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only not implemented --> +* ContractReference Constraint or configuration of policies specific to one partner only not implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place --> +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. + Stocks -- user needs better guidance to click on a stock to update it (else error prone to enter one +* user needs better guidance to click on a stock to update it (else error prone to enter one slightly different attribute and Add instead of update) -- Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user +* Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## [v2.0.2](https://github.com/eclipse-tractusx/puris/releases/tag/2.0.2) @@ -996,13 +997,13 @@ The **need for configuration updates** is **marked bold**. ### Added -- Added backend implementation to CRUD Demand and Capacity +* Added backend implementation to CRUD Demand and Capacity Notifications ([#415](https://github.com/eclipse-tractusx/puris/pull/415)) -- Added ERP response interface ([#418](https://github.com/eclipse-tractusx/puris/pull/418)) +* Added ERP response interface ([#418](https://github.com/eclipse-tractusx/puris/pull/418)) ### Changed -- Fixed check when answering delivery information request from a customer which prevented always to +* Fixed check when answering delivery information request from a customer which prevented always to answer ([#435](https://github.com/eclipse-tractusx/puris/pull/435)) ### Removed @@ -1024,50 +1025,50 @@ As currently no active user was known migrations of data are not yet supported. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (without code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only not implemented --> +* ContractReference Constraint or configuration of policies specific to one partner only not implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place --> +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. Dashboard -- Similar for Create Delivery (here SOME entries are reset but warnings stay) (**block**) +* Similar for Create Delivery (here SOME entries are reset but warnings stay) (**block**) Stocks -- user needs better guidance to click on a stock to update it (else error prone to enter one +* user needs better guidance to click on a stock to update it (else error prone to enter one slightly different attribute and Add instead of update) -- Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user +* Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## [v2.0.1](https://github.com/eclipse-tractusx/puris/releases/tag/2.0.1) @@ -1078,13 +1079,13 @@ The **need for configuration updates** is **marked bold**. ### Added -- Added backend implementation to CRUD Demand and Capacity +* Added backend implementation to CRUD Demand and Capacity Notifications ([#415](https://github.com/eclipse-tractusx/puris/pull/415)) -- Added ERP response interface ([#418](https://github.com/eclipse-tractusx/puris/pull/418)) +* Added ERP response interface ([#418](https://github.com/eclipse-tractusx/puris/pull/418)) ### Changed -- Fixed check when answering delivery information request from a customer which prevented always to +* Fixed check when answering delivery information request from a customer which prevented always to answer ([#435](https://github.com/eclipse-tractusx/puris/pull/435)) ### Removed @@ -1106,50 +1107,50 @@ As currently no active user was known migrations of data are not yet supported. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (without code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only not implemented --> +* ContractReference Constraint or configuration of policies specific to one partner only not implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place --> +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. Dashboard -- Similar for Create Delivery (here SOME entries are reset but warnings stay) (**block**) +* Similar for Create Delivery (here SOME entries are reset but warnings stay) (**block**) Stocks -- user needs better guidance to click on a stock to update it (else error prone to enter one +* user needs better guidance to click on a stock to update it (else error prone to enter one slightly different attribute and Add instead of update) -- Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user +* Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## [v2.0.1](https://github.com/eclipse-tractusx/puris/releases/tag/2.0.1) @@ -1160,26 +1161,26 @@ The **need for configuration updates** is **marked bold**. ### Added -- Added Footer +* Added Footer ### Changed Frontend updates -- Labels are now above and not on the border of elements -- updated icons for catalog, negotiations, transfers, logout -- Font update for Role switching elements in stocks and dashboard view -- Handled modal dialog behavior to always let failed validations prevent closing -- Modal Dialog Demand - - Day is marked as mandatory - - Reset data when reopening -- Catalog View - - Updated header itle + usage policy naming (previously Asset Action) - - Added table view - - increased responsiveness by loading animation -- Negotiation view - - Added table view + Subheader -- Logout button now logs out again +* Labels are now above and not on the border of elements +* updated icons for catalog, negotiations, transfers, logout +* Font update for Role switching elements in stocks and dashboard view +* Handled modal dialog behavior to always let failed validations prevent closing +* Modal Dialog Demand + * Day is marked as mandatory + * Reset data when reopening +* Catalog View + * Updated header itle + usage policy naming (previously Asset Action) + * Added table view + * increased responsiveness by loading animation +* Negotiation view + * Added table view + Subheader +* Logout button now logs out again Fixed constraints to exactly match on leftOperands during consumer side offer evaluation @@ -1202,50 +1203,50 @@ As currently no active user was known migrations of data are not yet supported. For productive use the following enhancements are encouraged -- User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers +* User FrontEnd available: Role Company Admin is able to query catalogue and see negotiations and transfers But company rules / policies need to be configured upfront in backend (via postman) to enable automatic contract negotiations, responsibility lies with Company Admin role --> add section in the User Manual describing this and the (legal) importance and responsibility behind defining these rules -- Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, +* Currently only one standard policy per reg. connector / customer instance is supported (more precisely one for DTR, one for all submodels), negotiation happens automatically based on this --> enhance option to select partner and define specific policies (to be planned in context of BPDM Integration) --> UI for specific configuration by dedicated role (e.g. Comp Admin) and more flexible policy configuration (without code changes) is needed -- As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with +* As a non-Admin user I do not have ability to view policies in detail --> transparency for users when interacting with and requesting / consuming data via dashboard / views on underlying usage policies to be enhanced -- ContractReference Constraint or configuration of policies specific to one partner only not implemented --> +* ContractReference Constraint or configuration of policies specific to one partner only not implemented --> clarification of potential reference to "PURIS standard contract" and enabling of ContractReference for 24.08. -- unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have +* unclear meaning of different stati in negotations --> add view of successfull contract agreeements wrt which data have been closed -- current logging only done on info level --> enhance logging of policies (currently only available at debug level) -- in case of non-matching policies (tested in various scenarios) no negotiation takes place --> +* current logging only done on info level --> enhance logging of policies (currently only available at debug level) +* in case of non-matching policies (tested in various scenarios) no negotiation takes place --> **enhance visualization or specific Error message to user** -- no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) +* no validation of the Schema "profile": "cx-policy:profile2405" (required to ensure interop with other PURIS apps) #### Styleguide Overall -- Brief description at the top of each page describing content would be nice for better user experience. +* Brief description at the top of each page describing content would be nice for better user experience. Dashboard -- Similar for Create Delivery (here SOME entries are reset but warnings stay) (**block**) +* Similar for Create Delivery (here SOME entries are reset but warnings stay) (**block**) Stocks -- user needs better guidance to click on a stock to update it (else error prone to enter one +* user needs better guidance to click on a stock to update it (else error prone to enter one slightly different attribute and Add instead of update) -- Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user +* Refresh -- update request has been sent successfully. -> more information regarding data transfer needed for user Catalog -- No action possible -> unclear to user when and how user will consume an offer +* No action possible -> unclear to user when and how user will consume an offer Negotiations -- Add filters for transparency (bpnl, state) +* Add filters for transparency (bpnl, state) ## [v2.0.0](https://github.com/eclipse-tractusx/puris/releases/tag/2.0.0) @@ -1257,67 +1258,67 @@ The **need for configuration updates** is **marked bold**. ### Added - Implementation of the following standards relying on Digital Twins and Industry Core - - Delivery Information Exchange CX-0118, version 2.0.0 - - Short-Term Material Demand Exchange CX-0120, version 2.0.0 - - Planned Production Output Exchange CX-0121, version 2.0.0 - - Item Stock Exchange CX-0122, version 2.0.0 + - Delivery Information Exchange CX-0118, version 2.0.0 + - Short-Term Material Demand Exchange CX-0120, version 2.0.0 + - Planned Production Output Exchange CX-0121, version 2.0.0 + - Item Stock Exchange CX-0122, version 2.0.0 - Added submodel PartTypeInformation + pull flow of the Catena-X ID for shared assets pattern of the Digital Twin / Industry Core KIT. - Implementation of Digital Twins. **Added Digital Twin Registry (DTR) as dependency**. Used to - - create and update digital twins for partners - - query partner materials and determine submodels + - create and update digital twins for partners + - query partner materials and determine submodels - Added Identity Provider (IDP) support for DTR - - One user for EDC (read) - - One user for PURIS (manage) + - One user for EDC (read) + - One user for PURIS (manage) - Frontend updates - - Reworked whole frontend to use React instead of Vue -> better Styleguide conformity as cx components are used. - - Updated Dashboard - - Customer view shows own demand, stock and incoming deliveries. You can select customer partner sites to see - planned production, stocks and outgoing deliveries. - - Supplier view shows own planned production, stock and outgoing deliveries. You can select supplier partner - sites - to see demand, stocks and incoming deliveries. - - Added manual create / delete for production, deliveries and demand (stock still separate ui). - - Added projection of stock from latest stock. - - Added possibility to pull data from partner for demand, planned production and deliveries. - - Catalog now uses partners and their EDC url (no freehand check possible anymore) - - Updated user guide and added it to the frontend (help feature) + - Reworked whole frontend to use React instead of Vue -> better Styleguide conformity as cx components are used. + - Updated Dashboard + - Customer view shows own demand, stock and incoming deliveries. You can select customer partner sites to see + planned production, stocks and outgoing deliveries. + - Supplier view shows own planned production, stock and outgoing deliveries. You can select supplier partner + sites + to see demand, stocks and incoming deliveries. + - Added manual create / delete for production, deliveries and demand (stock still separate ui). + - Added projection of stock from latest stock. + - Added possibility to pull data from partner for demand, planned production and deliveries. + - Catalog now uses partners and their EDC url (no freehand check possible anymore) + - Updated user guide and added it to the frontend (help feature) - **Data Sovereignty** - - Added Membership Credential to all access policies. - - **Added Usage Purpose as mandatory for submodel.** - - **Added version to usage purpose and framework agreement.** - - Added consumer side verification of contracts. + - Added Membership Credential to all access policies. + - **Added Usage Purpose as mandatory for submodel.** + - **Added version to usage purpose and framework agreement.** + - Added consumer side verification of contracts. - Infrastructure - - **Digital Twin Registry version 0.4.3 is mandatory** - - **Update to Tractus-x EDC version 0.7.3** - - Mock version of IATP compliant MIW for local deployment + - **Digital Twin Registry version 0.4.3 is mandatory** + - **Update to Tractus-x EDC version 0.7.3** + - Mock version of IATP compliant MIW for local deployment ### Changed - Data Sovereignty - - Updated to be compliant to cx odrl:profile. (No Schema-Validation) - - **Framework Credential now is mandatory** (removed `backend.frameworkagreement.use`) + - Updated to be compliant to cx odrl:profile. (No Schema-Validation) + - **Framework Credential now is mandatory** (removed `backend.frameworkagreement.use`) - Bump supported EDC version from 0.5.x to 0.7.x - - Update of EDR flow: Don't use the Http Dynamic Receiver extension anymore as it was removed from EDC 0.7.x. Now - uses - Tractus-X EDC EDR v2 version getting a fresh token synchronously. EDR Controller to be removed. - - Terminate transfers after opening. - - Enhanced reusage of contracts - but still not always possible. + - Update of EDR flow: Don't use the Http Dynamic Receiver extension anymore as it was removed from EDC 0.7.x. Now + uses + Tractus-X EDC EDR v2 version getting a fresh token synchronously. EDR Controller to be removed. + - Terminate transfers after opening. + - Enhanced reusage of contracts - but still not always possible. - Local deployment updated. - - Version bumps for EDC + switched from in-memory to postgres version. - - Use one postgres for PURIS, EDC and DTR. - - Updated keycloak to have a Customer and Supplier realm for DTR IDP configuration. - - Updated MIW to 0.4.0. Then outcommented MIW as it doesn't support Identity and Trust Protocol (IATP, needed for TX - EDC 0.7.x) and added Mock-IAM mocking the needed services. + - Version bumps for EDC + switched from in-memory to postgres version. + - Use one postgres for PURIS, EDC and DTR. + - Updated keycloak to have a Customer and Supplier realm for DTR IDP configuration. + - Updated MIW to 0.4.0. Then outcommented MIW as it doesn't support Identity and Trust Protocol (IATP, needed for TX + EDC 0.7.x) and added Mock-IAM mocking the needed services. - Integration test postman suite - - Updated test for EDC > new syntax and models. - - Added tests for new information (demand, planned production, delivery). - - Added tests for SubmodelDescriptor Setup in DTR. - - Refatorings for tests. + - Updated test for EDC > new syntax and models. + - Added tests for new information (demand, planned production, delivery). + - Added tests for SubmodelDescriptor Setup in DTR. + - Refatorings for tests. - **Master Data handling**: - - Store Catena-X ID for product twins of the partner in material partner relationship. Needed due to Digital Twin - shared asset approach. - - Configuration to either let the backend generate your Catena-X ID or to ship it via interface. + - Store Catena-X ID for product twins of the partner in material partner relationship. Needed due to Digital Twin + shared asset approach. + - Configuration to either let the backend generate your Catena-X ID or to ship it via interface. ### Removed