From d30ebc34b92f4c71e19057aa91ac3fd1da3ee063 Mon Sep 17 00:00:00 2001 From: Arie Peterson <arie@greenhost.nl> Date: Fri, 21 Jun 2024 14:34:28 +0200 Subject: [PATCH] Update CHANGELOG and increase version to 1.10.5 --- CHANGELOG.md | 9 +++++++++ deployment/helmchart/CHANGELOG.md | 4 ++++ deployment/helmchart/Chart.yaml | 4 ++-- deployment/helmchart/values.yaml | 6 +++--- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a952ac3f..c779af3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.10.5] + +- Look up users from Kratos by email address using the proper (new) API + mechanism for that, instead of iterating over all users. +- Compare email addresses case insensitively to deal with Stackspin apps + changing case of email address strings. +- Fix broken user accounts when created via the flask CLI. +- Replace slightly off-spec usage of `__repr__` by `__str__`. + ## [0.10.4] - Disable Zulip accounts when deleting users, because Zulip doesn't allow diff --git a/deployment/helmchart/CHANGELOG.md b/deployment/helmchart/CHANGELOG.md index c863f71b..ea070118 100644 --- a/deployment/helmchart/CHANGELOG.md +++ b/deployment/helmchart/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.10.5] + +* Update dashboard to version 0.10.5. + ## [1.10.4] * Update dashboard to version 0.10.4. diff --git a/deployment/helmchart/Chart.yaml b/deployment/helmchart/Chart.yaml index dc983277..23ad2bc6 100644 --- a/deployment/helmchart/Chart.yaml +++ b/deployment/helmchart/Chart.yaml @@ -1,7 +1,7 @@ annotations: category: Dashboard apiVersion: v2 -appVersion: 0.10.4 +appVersion: 0.10.5 dependencies: - name: common # https://artifacthub.io/packages/helm/bitnami/common @@ -23,4 +23,4 @@ name: stackspin-dashboard sources: - https://open.greenhost.net/stackspin/dashboard/ - https://open.greenhost.net/stackspin/dashboard-backend/ -version: 1.10.4 +version: 1.10.5 diff --git a/deployment/helmchart/values.yaml b/deployment/helmchart/values.yaml index 94514ac4..b7de6ad8 100644 --- a/deployment/helmchart/values.yaml +++ b/deployment/helmchart/values.yaml @@ -68,7 +68,7 @@ dashboard: image: registry: open.greenhost.net:4567 repository: stackspin/dashboard/dashboard - tag: 0.10.4 + tag: 0.10.5 digest: "" ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -236,7 +236,7 @@ backend: image: registry: open.greenhost.net:4567 repository: stackspin/dashboard/dashboard-backend - tag: 0.10.4 + tag: 0.10.5 digest: "" ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -723,7 +723,7 @@ tests: image: registry: open.greenhost.net:4567 repository: stackspin/dashboard/cypress-test - tag: 0.10.4 + tag: 0.10.5 pullPolicy: IfNotPresent credentials: user: "" -- GitLab