Skip to content

Commit bda5312

Browse files
committed
ftr: prepare for release 1 1 0
TRACEFOSS-898
1 parent 1ad5f7a commit bda5312

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [1.1.0] - 2023-02-06
10+
11+
### Added
12+
13+
- Functionality to send and receive notifications – Quality Investigations
14+
- EDC router component to support notifications and data ingest process in parallel
15+
- Arc42 documentation
16+
17+
### Changed
18+
19+
- Endpoints introducing proper validation for request body depending on the endpoint type
20+
21+
### Removed
22+
23+
- Email Feature from application for security reasons
24+
925
## [1.0.0] - 2022-12-12
1026

1127
### Added
1228

1329
- **Traceability BoM asBuilt** - with the use of IRS we retrieve a BoM tree for lifecycle "as built" for serialized parts as well as batches, which as a prerequisite are provided to the Catena-X network.
14-
- Usage of the aspects "SerialPartTypization", “Batch” and "AssemblyPartRelationship".
30+
- Usage of the aspects "SerialPartTypification", “Batch” and "AssemblyPartRelationship".
1531
- Tree built in the downwards direction top-down/parent-child. Visualization of the BoM tree and list view of own manufactured as well as being supplied with parts.
1632

1733
## [0.1.0] - 2022-09-21
@@ -21,6 +37,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2137
- **BoM asBuilt** Fetch parts and supplier parts, display details, display part tree
2238
- **EDC and IRS integration**
2339

24-
[unreleased]: https://github.com/eclipse-tractusx/traceability-foss-frontend/compare/0.1.0...HEAD
40+
[unreleased]: https://github.com/eclipse-tractusx/traceability-foss-frontend/compare/1.1.0...HEAD
41+
[1.1.0]: https://github.com/eclipse-tractusx/traceability-foss-frontend/compare/1.1.0
2542
[1.0.0]: https://github.com/eclipse-tractusx/traceability-foss-frontend/compare/1.0.0
2643
[0.1.0]: https://github.com/eclipse-tractusx/traceability-foss-frontend/compare/0.1.0

charts/tx-traceability-foss-frontend/.helmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@
2121
.idea/
2222
*.tmproj
2323
.vscode/
24+
values*.yaml
25+
values*.yml

charts/tx-traceability-foss-frontend/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.0
18+
version: 1.1.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.0.0"
24+
appVersion: "1.1.0"

charts/tx-traceability-foss-frontend/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ image:
1010
repository: ghcr.io/catenax-ng/tx-traceability-foss-frontend
1111
pullPolicy: Always
1212
# Overrides the image tag whose default is the chart appVersion.
13-
tag: "latest"
13+
tag: "1.1.0"
1414

1515
##
1616
## Image pull secret to create to obtain the container image

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "trace-x",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"scripts": {
55
"analyze": "ng build --configuration=production --stats-json && webpack-bundle-analyzer dist/stats.json",
66
"build:prod": "ng build --configuration=production",

src/mockServiceWorker.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@
1919
* SPDX-License-Identifier: Apache-2.0
2020
********************************************************************************/
2121

22+
/* eslint-disable */
2223
/* tslint:disable */
2324

2425
/**
25-
* Mock Service Worker (0.48.0).
26+
* Mock Service Worker (1.0.0).
2627
* @see https://github.com/mswjs/msw
2728
* - Please do NOT modify this file.
2829
* - Please do NOT serve this file on production.

0 commit comments

Comments
 (0)