diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a36c2a1f..6329e47a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,37 @@ The changelog 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). +## [released] +## [1.2.0] - 30-10-2023 + +## Added +- Added comments at every classes explaining their purpose +- Added comments at every methods explaining what its done, each parameter, what it returns and if it throws exceptions +- Added SupressionWarnings("Unused") annotation in every Class and/or method that is unused, to decide if it is to delete or let it be for future use +- Added New class for the new model of Digital Product Passport +- Added to retrieve any type of passport aspect from a submodel endpoint (searching by semanticId) +- Added new structure to parse the passport payload and display it dynamically +- Added new components to display the passport +- Added visualization of the "Digital Product Pass" aspect in the frontend + +## Updated +- The Submodels are search by their SemanticId instead of idShort parameter +- Updated DTR search as type instead of ID +- Updated the Apis that communicate with the backend + + +# Deleted +- Removed the passport's version requirement +- Removed version from the Search Api call +- Deleted configuration variables related with central search from application.yaml +- Deleted old version of DigitalTwin, Submodel and Endpoint, no longer used and renamed the most recent versions. +- Deleted all code related to the central search. + + +# Issues Fixed +- Fixed a bug related to the discovery service when more than one search endpoint would be available + + ## [released] ## [1.1.0] - 19-10-2023 diff --git a/README.md b/README.md index ce867581e..d2db22ab2 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ In particular, the appliction is used to access the battery passport data provid ### Software Version #### Helm Chart Version -
1.1.0
+
1.2.0
#### Application Version -
v1.1.0
+
v1.2.0
## Application Preview @@ -138,4 +138,4 @@ As for any pre-built image usage, it is the image user's responsibility to ensur [release-shield]: https://img.shields.io/github/v/release/eclipse-tractusx/digital-product-pass.svg?style=for-the-badge -[release-url]: https://github.com/eclipse-tractusx/digital-product-pass/releases \ No newline at end of file +[release-url]: https://github.com/eclipse-tractusx/digital-product-pass/releases diff --git a/docs/RELEASE_USER.md b/docs/RELEASE_USER.md index 9fbc370fc..1fdccd916 100644 --- a/docs/RELEASE_USER.md +++ b/docs/RELEASE_USER.md @@ -24,6 +24,20 @@ User friendly relase notes without especific technical details. +**October 30 2023 (Version 1.2.0)** +*30.10.2023* + +### Added +#### Availability of the DPP aspect model +There is now a possibility to retrieve any type of passport aspect from a submodel endpoint searched by the semanticId of the aspect. + +### Visualization of the "Digital Product Passport" aspect in the frontend +It is now possible to visualize the digital product passports aspect model in the DPP frontend component. + +### Updated +#### Updated Decentral lookup for the Digital Twin Registry +The decentral lookup is changed from searching by registry type e.g., data.core.digitalTwinRegistry instead of the registry id/name. + **October 19 2023 (Version 1.1.0)** *19.10.2023* diff --git a/package-lock.json b/package-lock.json index 3b47b842a..dbda84216 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "productpass-consumer-ui", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 51e7872a3..6bc5ca892 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "productpass-consumer-ui", - "version": "1.1.0", + "version": "1.2.0", "private": true, "scripts": { "serve": "vite --host localhost",