diff --git a/premium/authelia/23.11.10/.helmignore b/premium/authelia/23.12.1/.helmignore similarity index 100% rename from premium/authelia/23.11.10/.helmignore rename to premium/authelia/23.12.1/.helmignore diff --git a/premium/authelia/23.11.10/CHANGELOG.md b/premium/authelia/23.12.1/CHANGELOG.md similarity index 100% rename from premium/authelia/23.11.10/CHANGELOG.md rename to premium/authelia/23.12.1/CHANGELOG.md diff --git a/premium/authelia/23.11.10/Chart.yaml b/premium/authelia/23.12.1/Chart.yaml similarity index 96% rename from premium/authelia/23.11.10/Chart.yaml rename to premium/authelia/23.12.1/Chart.yaml index 0f209974885..78e24f8ccdc 100644 --- a/premium/authelia/23.11.10/Chart.yaml +++ b/premium/authelia/23.12.1/Chart.yaml @@ -39,7 +39,7 @@ keywords: - YubiKey - Push Notifications - LDAP -kubeVersion: '>=1.24.0-0' +kubeVersion: ">=1.24.0-0" maintainers: - name: TrueCharts email: info@truecharts.org @@ -51,4 +51,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/premium/authelia - https://ghcr.io/authelia/authelia type: application -version: 23.11.10 +version: 23.12.1 diff --git a/premium/authelia/23.11.10/LICENSE b/premium/authelia/23.12.1/LICENSE similarity index 100% rename from premium/authelia/23.11.10/LICENSE rename to premium/authelia/23.12.1/LICENSE diff --git a/premium/authelia/23.11.10/README.md b/premium/authelia/23.12.1/README.md similarity index 100% rename from premium/authelia/23.11.10/README.md rename to premium/authelia/23.12.1/README.md diff --git a/premium/authelia/23.11.10/app-changelog.md b/premium/authelia/23.12.1/app-changelog.md similarity index 92% rename from premium/authelia/23.11.10/app-changelog.md rename to premium/authelia/23.12.1/app-changelog.md index 656eda8c781..f457d86be0f 100644 --- a/premium/authelia/23.11.10/app-changelog.md +++ b/premium/authelia/23.12.1/app-changelog.md @@ -1,6 +1,6 @@ -## [authelia-23.11.10](https://github.com/truecharts/charts/compare/authelia-23.6.0...authelia-23.11.10) (2024-04-13) +## [authelia-23.12.1](https://github.com/truecharts/charts/compare/authelia-23.6.0...authelia-23.12.1) (2024-04-14) ### Chore @@ -56,4 +56,16 @@ - update container image redis to v13.0.5[@01c1933](https://github.com/01c1933) by renovate ([#19324](https://github.com/truecharts/charts/issues/19324)) -- make links relative \ No newline at end of file +- make links relative + +### Feat + + + +- add pkce for oidc ([#20306](https://github.com/truecharts/charts/issues/20306)) + +### Fix + + + +- fix pkce ([#20738](https://github.com/truecharts/charts/issues/20738)) \ No newline at end of file diff --git a/premium/authelia/23.11.10/app-readme.md b/premium/authelia/23.12.1/app-readme.md similarity index 100% rename from premium/authelia/23.11.10/app-readme.md rename to premium/authelia/23.12.1/app-readme.md diff --git a/premium/authelia/23.11.10/charts/common-20.3.6.tgz b/premium/authelia/23.12.1/charts/common-20.3.6.tgz similarity index 100% rename from premium/authelia/23.11.10/charts/common-20.3.6.tgz rename to premium/authelia/23.12.1/charts/common-20.3.6.tgz diff --git a/premium/authelia/23.11.10/charts/redis-13.3.7.tgz b/premium/authelia/23.12.1/charts/redis-13.3.7.tgz similarity index 100% rename from premium/authelia/23.11.10/charts/redis-13.3.7.tgz rename to premium/authelia/23.12.1/charts/redis-13.3.7.tgz diff --git a/premium/authelia/23.11.10/ix_values.yaml b/premium/authelia/23.12.1/ix_values.yaml similarity index 99% rename from premium/authelia/23.11.10/ix_values.yaml rename to premium/authelia/23.12.1/ix_values.yaml index 9f1cb548b90..c9b82260e9f 100644 --- a/premium/authelia/23.11.10/ix_values.yaml +++ b/premium/authelia/23.12.1/ix_values.yaml @@ -573,6 +573,12 @@ identity_providers: ## The algorithm used to sign userinfo endpoint responses for this client, either none or RS256. # userinfo_signing_algorithm: none +## This configuration option enforces the use of PKCE for this registered client. +# require_pkce: false + +## This setting enforces the use of the specified PKCE challenge method for this individual client. +# pkce_challange_method: S256 + portal: open: enabled: true diff --git a/premium/authelia/23.11.10/questions.yaml b/premium/authelia/23.12.1/questions.yaml similarity index 99% rename from premium/authelia/23.11.10/questions.yaml rename to premium/authelia/23.12.1/questions.yaml index 94f0188d0b7..aeebb19a89c 100755 --- a/premium/authelia/23.11.10/questions.yaml +++ b/premium/authelia/23.12.1/questions.yaml @@ -3811,6 +3811,25 @@ questions: type: string default: "form_post" required: true + - variable: require_pkce + label: "Require PKCE" + description: "This configuration option enforces the use of PKCE for this registered client." + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: pkce_challange_method + label: "PKCE Challange Method" + description: "This setting enforces the use of the specified PKCE challenge method for this individual client." + schema: + type: string + default: S256 + enum: + - value: "plain" + description: "plain" + - value: "S256" + description: "S256" - variable: addons group: Addons label: "" diff --git a/premium/authelia/23.11.10/templates/NOTES.txt b/premium/authelia/23.12.1/templates/NOTES.txt similarity index 100% rename from premium/authelia/23.11.10/templates/NOTES.txt rename to premium/authelia/23.12.1/templates/NOTES.txt diff --git a/premium/authelia/23.11.10/templates/_configmap.tpl b/premium/authelia/23.12.1/templates/_configmap.tpl similarity index 98% rename from premium/authelia/23.11.10/templates/_configmap.tpl rename to premium/authelia/23.12.1/templates/_configmap.tpl index c2797c8aaaa..45ff8fe98ce 100644 --- a/premium/authelia/23.11.10/templates/_configmap.tpl +++ b/premium/authelia/23.12.1/templates/_configmap.tpl @@ -280,6 +280,12 @@ data: {{- end }} {{- end }} userinfo_signing_algorithm: {{ $client.userinfo_signing_algorithm | default "none" }} + {{- if $client.require_pkce }} + require_pkce: {{ $client.require_pkce }} + {{- end }} + {{- if $client.pkce_challange_method }} + pkce_challenge_method: {{ $client.pkce_challange_method | default "S256" }} + {{- end }} {{- end }} {{- end }} {{- end }} diff --git a/premium/authelia/23.11.10/templates/_secrets.tpl b/premium/authelia/23.12.1/templates/_secrets.tpl similarity index 100% rename from premium/authelia/23.11.10/templates/_secrets.tpl rename to premium/authelia/23.12.1/templates/_secrets.tpl diff --git a/premium/authelia/23.11.10/templates/common.yaml b/premium/authelia/23.12.1/templates/common.yaml similarity index 100% rename from premium/authelia/23.11.10/templates/common.yaml rename to premium/authelia/23.12.1/templates/common.yaml diff --git a/premium/authelia/23.11.10/values.yaml b/premium/authelia/23.12.1/values.yaml similarity index 100% rename from premium/authelia/23.11.10/values.yaml rename to premium/authelia/23.12.1/values.yaml