Skip to content

Commit

Permalink
Merge pull request #869 from eclipse-tractusx/release/10.8.4
Browse files Browse the repository at this point in the history
Release/10.8.4
  • Loading branch information
ds-mwesener authored Apr 17, 2024
2 parents 6e39afc + 2fac597 commit 52f1c1e
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:

- name: Update the frontend package.json appVersion
run: |
npm install -g json
json -I -f frontend/package.json -e "this.version='${{ github.ref_name }}'"
sudo npm install -g json
sudo json -I -f frontend/package.json -e "this.version='${{ github.ref_name }}'"
- name: Prepare Helm release
uses: peter-evans/create-pull-request@v6
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

_**For better traceability add the corresponding GitHub issue number in each changelog entry, please.**_
## [UNRELEASED - DD.MM.YYYY]
### Added
-
### Changed
-
### Removed
-
## [10.8.4 - 17.04.2024]

### Added
- #780 store api documenation in docs/api to conform with TRG 1.08
Expand Down
2 changes: 2 additions & 0 deletions COMPATIBILITY_MATRIX.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Compatibility matrix Trace-X

## Trace-X version [[10.8.4](https://github.com/eclipse-tractusx/traceability-foss/releases/tag/10.8.4)] - 2024-04-17
- No changes to 10.8.1
## Trace-X version [[10.8.1](https://github.com/eclipse-tractusx/traceability-foss/releases/tag/10.8.1)] - 2024-04-03

### Catena-X Release?
Expand Down
6 changes: 6 additions & 0 deletions charts/traceability-foss/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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).

## [1.3.36] - 2024-04-17
### No changes

## [1.3.35] - 2024-04-17
### No changes

## [1.3.34] - 2024-04-04
### No changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,14 @@ export class NotificationEditComponent implements OnDestroy {
});

if (!this.affectedPartIds || this.affectedPartIds.length === 0) {
this.partsFacade.setSupplierPartsAsBuiltSecondEmpty();
if ( this.selectedNotification.type === NotificationType.INVESTIGATION){
this.partsFacade.setSupplierPartsAsBuiltSecondEmpty();
this.partsFacade.setSupplierPartsAsBuilt();
} else{
this.ownPartsFacade.setPartsAsBuiltSecondEmpty();
this.ownPartsFacade.setPartsAsBuilt();
}

this.isSaveButtonDisabled = true;
} else {
this.isSaveButtonDisabled = this.notificationFormGroup.invalid || this.affectedPartIds.length < 1;
Expand Down
8 changes: 8 additions & 0 deletions frontend/src/app/modules/page/parts/core/parts.facade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ export class PartsFacade {
});
}

public setPartsAsBuiltSecondEmpty(page = 0, pageSize = 50, sorting: TableHeaderSort[] = [], assetAsBuiltFilter?: AssetAsBuiltFilter, isOrSearch?: boolean): void {
this.partsAsBuiltSubscriptionSecond?.unsubscribe();
this.partsAsBuiltSubscriptionSecond = this.partsService.getPartsAsBuilt(page, pageSize, sorting, assetAsBuiltFilter, isOrSearch).subscribe({
next: data => (this.partsState.partsAsBuiltSecond = { data: provideDataObject(null) }),
error: error => (this.partsState.partsAsBuiltSecond = { error }),
});
}

public setPartsAsPlanned(page = 0, pageSize = 50, sorting: TableHeaderSort[] = [], assetAsPlannedFilter?: AssetAsPlannedFilter, isOrSearch?: boolean): void {
this.partsAsPlannedSubscription?.unsubscribe();
this.partsAsPlannedSubscription = this.partsService.getPartsAsPlanned(page, pageSize, sorting, assetAsPlannedFilter, isOrSearch).subscribe({
Expand Down

0 comments on commit 52f1c1e

Please sign in to comment.