Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/#1070 release checks 24.8 part4 #1254

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha
- #1190 update notification contracts on policy updates

### Changed
- #1070 Correct semantic model in dev/READEME.md
- #1070 Convert png to svg according to TRG 1.04 - Diagrams as code / Editable static files
- #1173 Update IRS-Helm from 7.1.4 to 7.2.0 - updated Compatibility Matrix
- #1082 fix duplicate key errors when synchronizing assets with IRS
Expand All @@ -36,7 +37,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha
## [12.0.0 - 05.07.2024]

### Added
- #832 added policymanagement list view, creator and editor
- #832 added policy management list view, creator and editor
- #737 Added concept: Contract table -> parts link action
- XXX Added interceptor to EdcRestTemplates to log requests
- #915 Added section to documentation: EDC-BPN configuration
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ $ git clone [email protected]:eclipse-tractusx/traceability-foss.git
$ cd traceability-foss/frontend
```

Install prerequisites:
1. install [node.js](https://nodejs.org/en/download/package-manager)
#### Install prerequisites:

install [node.js](https://nodejs.org/en/download/package-manager)
```bash
$ npm install --global yarn
$ npm install -g @angular/cli
Expand Down Expand Up @@ -178,7 +179,7 @@ or can be viewed in the Swagger UI accessing the url: `{projectBasePath}/api/swa
Below you can find the information regarding Docker Notice for this application.

- [Traceability Backend Docker Notice](DOCKER_NOTICE.md)
- [Traceability Frontend Docker Notice](DOCKER_NOTICE.md)
- [Traceability Frontend Docker Notice](frontend/DOCKER_NOTICE.md)

## Contact

Expand Down
35 changes: 19 additions & 16 deletions dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,24 +142,27 @@ Consists of a List of the following structured entries:
{
"catenaXId": "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22",
"bpnl": "BPNL00000003CML1",
"urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship": [
"urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [
{
"catenaXId": "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22",
"childParts": [
"catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd",
"customers" : [
"BPNL00000003CML1"
],
"parentItems" : [
{
"quantity": {
"quantityNumber" : 1,
"measurementUnit" : {
"datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie",
"lexicalValue" : "unit:piece"
}
},
"lifecycleContext" : "AsBuilt",
"assembledOn" : "2022-02-03T14:48:54.709Z",
"lastModifiedOn" : "2022-02-03T14:48:54.709Z",
"childCatenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd"
} ]
} ],
"quantity" : {
"value" : 1,
"unit" : "unit:piece"
},
"catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22",
"createdOn" : "2023-05-29T14:48:54.709Z",
"lastModifiedOn" : "2023-02-03T14:48:54.709Z",
"businessPartner" : "BPNL00000003CML1",
"isOnlyPotentialParent" : false
}
]
}
],
"urn:bamm:io.catenax.serial_part:1.0.0#SerialPart" : [ {
"localIdentifiers" : [ {
"value" : "BPNL00000003CML1",
Expand Down
Loading