From c9cf63ebd9237a166320e2d442142b51912473d5 Mon Sep 17 00:00:00 2001 From: Renaud Hager Date: Wed, 17 Dec 2025 16:56:34 +0000 Subject: [PATCH 1/3] Added Fastly secret to shop configuration --- charts/shopware/templates/store.yaml | 10 ++++++++++ charts/shopware/values.yaml | 8 ++++++++ 2 files changed, 18 insertions(+) diff --git a/charts/shopware/templates/store.yaml b/charts/shopware/templates/store.yaml index c61f8dc..b86a583 100644 --- a/charts/shopware/templates/store.yaml +++ b/charts/shopware/templates/store.yaml @@ -77,6 +77,16 @@ spec: shopConfiguration: currency: {{ .Values.store.shopConfiguration.currency | default "EUR" }} locale: {{ .Values.store.shopConfiguration.locale | default "en-GB" }} + usageDataConsent: {{ .Values.store.shopConfiguration.usageDataConsent | default "revoked" }} + {{- if hasKey .Values.store.shopConfiguration "fastly" }} + fastly: + serviceRef: + key: {{ .Values.store.shopConfiguration.fastly.serviceRef.key }} + name: {{ .Values.store.shopConfiguration.fastly.serviceRef.name }} + tokenRef: + key: {{ .Values.store.shopConfiguration.fastly.tokenRef.key }} + name: {{ .Values.store.shopConfiguration.fastly.tokenRef.name }} + {{- end }} {{- end }} {{- with .Values.store.scheduledTask }} diff --git a/charts/shopware/values.yaml b/charts/shopware/values.yaml index 9a22b0a..38fe045 100644 --- a/charts/shopware/values.yaml +++ b/charts/shopware/values.yaml @@ -95,6 +95,14 @@ store: # shopConfiguration: # currency: EUR # locale: en-GB + # usageDataConsent: revoked + # fastly: + # serviceRef: + # key: service-name + # name: fastly-api-secret + # tokenRef: + # key: api-token + # name: fastly-api-secret # s3 storage configuration # s3Storage: From 8dc6468ca5aa2b79f9d180578eefbbf966046ce6 Mon Sep 17 00:00:00 2001 From: Renaud Hager Date: Thu, 18 Dec 2025 13:17:32 +0000 Subject: [PATCH 2/3] feat: add support for Fastly token secret. Change the default value for usageDataConsent --- charts/shopware/templates/store.yaml | 2 +- charts/shopware/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/shopware/templates/store.yaml b/charts/shopware/templates/store.yaml index b86a583..f373188 100644 --- a/charts/shopware/templates/store.yaml +++ b/charts/shopware/templates/store.yaml @@ -77,7 +77,7 @@ spec: shopConfiguration: currency: {{ .Values.store.shopConfiguration.currency | default "EUR" }} locale: {{ .Values.store.shopConfiguration.locale | default "en-GB" }} - usageDataConsent: {{ .Values.store.shopConfiguration.usageDataConsent | default "revoked" }} + usageDataConsent: {{ .Values.store.shopConfiguration.usageDataConsent | default "allowed" }} {{- if hasKey .Values.store.shopConfiguration "fastly" }} fastly: serviceRef: diff --git a/charts/shopware/values.yaml b/charts/shopware/values.yaml index 38fe045..4e439de 100644 --- a/charts/shopware/values.yaml +++ b/charts/shopware/values.yaml @@ -95,7 +95,7 @@ store: # shopConfiguration: # currency: EUR # locale: en-GB - # usageDataConsent: revoked + # usageDataConsent: allowed # fastly: # serviceRef: # key: service-name From 4cc2917ee8aad084879c1789b3e0b88a4f30beca Mon Sep 17 00:00:00 2001 From: Patrick Derks Date: Fri, 6 Feb 2026 15:21:18 +0100 Subject: [PATCH 3/3] chore: bump version --- charts/shopware/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/shopware/Chart.yaml b/charts/shopware/Chart.yaml index 1bac233..c5ddf40 100644 --- a/charts/shopware/Chart.yaml +++ b/charts/shopware/Chart.yaml @@ -15,13 +15,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.0.53 +version: 0.0.54 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.0.53" +appVersion: "0.0.54" dependencies: - name: pxc-operator