From 2b48a76c88f1c6ec6eca3b7f5d4848b45a3baa29 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 1 Aug 2022 10:32:03 +0200 Subject: [PATCH 1/6] Update release trigger --- .github/workflows/marketplace-aws.yml | 2 +- .github/workflows/marketplace-azure.yml | 2 +- .github/workflows/marketplace-digitalocean.yml | 2 +- .github/workflows/marketplace-gcp.yml | 2 +- .github/workflows/marketplace-kubernetes.yml | 2 +- .github/workflows/marketplace-vultr.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/marketplace-aws.yml b/.github/workflows/marketplace-aws.yml index 3e72eeb46..d7cac2fb6 100644 --- a/.github/workflows/marketplace-aws.yml +++ b/.github/workflows/marketplace-aws.yml @@ -3,7 +3,7 @@ concurrency: marketplace-aws on: release: - types: [released] + types: [published] jobs: validate: diff --git a/.github/workflows/marketplace-azure.yml b/.github/workflows/marketplace-azure.yml index 5a9427af4..54a9c5d9f 100644 --- a/.github/workflows/marketplace-azure.yml +++ b/.github/workflows/marketplace-azure.yml @@ -3,7 +3,7 @@ concurrency: marketplace-azure on: release: - types: [released] + types: [published] # az ad sp create-for-rbac --name squidex diff --git a/.github/workflows/marketplace-digitalocean.yml b/.github/workflows/marketplace-digitalocean.yml index 2cd57652b..f5019d286 100644 --- a/.github/workflows/marketplace-digitalocean.yml +++ b/.github/workflows/marketplace-digitalocean.yml @@ -3,7 +3,7 @@ concurrency: marketplace-digitalocean on: release: - types: [released] + types: [published] jobs: validate: diff --git a/.github/workflows/marketplace-gcp.yml b/.github/workflows/marketplace-gcp.yml index 701385180..451672cbb 100644 --- a/.github/workflows/marketplace-gcp.yml +++ b/.github/workflows/marketplace-gcp.yml @@ -3,7 +3,7 @@ concurrency: marketplace-gcp on: release: - types: [released] + types: [published] jobs: validate: diff --git a/.github/workflows/marketplace-kubernetes.yml b/.github/workflows/marketplace-kubernetes.yml index a8cb60240..87dbb0a43 100644 --- a/.github/workflows/marketplace-kubernetes.yml +++ b/.github/workflows/marketplace-kubernetes.yml @@ -3,7 +3,7 @@ concurrency: marketplace-kubernetes on: release: - types: [released] + types: [published] jobs: validate: diff --git a/.github/workflows/marketplace-vultr.yml b/.github/workflows/marketplace-vultr.yml index b44760891..345046c46 100644 --- a/.github/workflows/marketplace-vultr.yml +++ b/.github/workflows/marketplace-vultr.yml @@ -3,7 +3,7 @@ concurrency: marketplace-vultr on: release: - types: [released] + types: [published] jobs: validate: From 6c57854132f5d82a601404931f821b272bf5b54b Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 1 Aug 2022 10:59:48 +0200 Subject: [PATCH 2/6] Changelog for 6.12.0 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af149469..5a8b93bba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,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). +## [6.12.0] - 200-08-01 + +### Changed + +* No changes, just meant to run CI again. + ## [6.11.0] - 2022-07-29 ### Fixed From 291490f9f8139684600d542ce1e4ad4f51887cd8 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 1 Aug 2022 11:22:55 +0200 Subject: [PATCH 3/6] Use personal token. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a6d070b7..5e1d6e56e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -224,7 +224,7 @@ jobs: body: ${{ steps.changelog_reader.outputs.changes }} name: ${{ env.GITHUB_REF_SLUG }} replacesArtifacts: true - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.PERSONAL_TOKEN }} - name: Cleanup Binaries if: always() From 58d65a73000737474f00293297a156c0829bcc27 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 2 Aug 2022 15:30:27 +0200 Subject: [PATCH 4/6] Fix the rendering of reference lists. --- CHANGELOG.md | 6 +++ .../framework/angular/stateful.component.ts | 2 +- .../contents/content-value.component.html | 2 +- .../contents/content-value.component.ts | 44 ++++++++----------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8b93bba..e20bc0749 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,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). +## [6.13.0] - 200-08-02 + +### Fkxed + +* **UI**: Fixes the rendering of reference lists. + ## [6.12.0] - 200-08-01 ### Changed diff --git a/frontend/src/app/framework/angular/stateful.component.ts b/frontend/src/app/framework/angular/stateful.component.ts index e8bff4405..1b845c095 100644 --- a/frontend/src/app/framework/angular/stateful.component.ts +++ b/frontend/src/app/framework/angular/stateful.component.ts @@ -83,7 +83,7 @@ export abstract class StatefulComponent extends State implements OnD this.changeDetector.detectChanges(); } - public own(subscription: Subscription | UnsubscribeFunction | Observable) { + public own(subscription: Subscription | UnsubscribeFunction | Observable | null | undefined) { this.subscriptions.own(subscription); } } diff --git a/frontend/src/app/shared/components/contents/content-value.component.html b/frontend/src/app/shared/components/contents/content-value.component.html index 00a0619c0..0420e57a7 100644 --- a/frontend/src/app/shared/components/contents/content-value.component.html +++ b/frontend/src/app/shared/components/contents/content-value.component.html @@ -1,6 +1,6 @@
-
{{value}}
+
{{value}}