From a78474faf3b158639d49a0130c571031d8861231 Mon Sep 17 00:00:00 2001 From: Maarten de Waard <maarten@greenhost.nl> Date: Tue, 2 Nov 2021 16:24:03 +0100 Subject: [PATCH] add CHANGELOG entry and bump chart version number --- CHANGELOG.md | 19 +++++++++++++++++++ Chart.yaml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec3f7bda..6bb59677 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## [0.5.0] - 2021-11-02 + +* Change the sociallogin settings structure so it can be automatically converted + to JSON + + If you use sociallogin, you need to change the settings to conform the + structure currently under `sociallogin.custom_oidc` in `values.yaml`. + + Example: + + ```yaml + sociallogin: + custom_oidc: + authorizeUrl: "sso.${domain}/oauth2/auth" + tokenUrl: "sso.${domain}/oauth2/token" + userInfoUrl: "sso.${domain}/userinfo" + clientSecret: "${nextcloud_oauth_client_secret}" + ``` + ## [0.4.0] - 2021-11-02 * Replace pod probes by exec ones to actually check healthcheck status diff --git a/Chart.yaml b/Chart.yaml index b9d57310..4b5a0d33 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: | A helm chart for installing NextCloud and setting up ONLYOFFICE integration name: nextcloud-onlyoffice -version: 0.4.0 +version: 0.5.0 appVersion: NC-20.0.11-OO-6.2.2.21 dependencies: # https://artifacthub.io/packages/helm/nextcloud/nextcloud -- GitLab