From 94a2b7ea500392f644d30a40cc1b9ba8d089f7dc Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 15 Dec 2025 08:19:15 +0100 Subject: [PATCH 1/2] Remove image tag for paperless-ngx chart This update changes the image tag for the paperless-ngx Helm chart from a specific version (2.20.1) to an empty string. This allows the chart to use the latest available image version, which is important for ensuring that users always receive the latest features and security updates without needing to update the Helm chart manually. No breaking changes are introduced; however, users should be aware that using an empty tag may lead to unexpected behavior if there are breaking changes in newer image versions. Users should ensure they test their deployments when upgrading to monitor for any issues. --- charts/paperless-ngx/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/paperless-ngx/values.yaml b/charts/paperless-ngx/values.yaml index e9b5995..42bddff 100644 --- a/charts/paperless-ngx/values.yaml +++ b/charts/paperless-ngx/values.yaml @@ -15,7 +15,7 @@ controllers: # -- Image pull policy pullPolicy: IfNotPresent # -- Image tag - tag: 2.20.1 + tag: "" # -- Environment variables [[ref]](https://docs.paperless-ngx.com/configuration/) # @default -- See [values.yaml](./values.yaml) # -- Set the resource requests / limits for the container. -- 2.49.1 From f23dcab3a288e62a9b8e31bf2ddb752f63049fae Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 15 Dec 2025 08:19:52 +0100 Subject: [PATCH 2/2] Update paperless-ngx chart version to 0.26.3 This commit updates the version of the paperless-ngx Helm chart from 0.26.2 to 0.26.3. The version bump reflects upstream changes and improvements incorporated in the latest release of the chart. Updating to the new version ensures users benefit from the latest features and bug fixes associated with paperless-ngx. There are no breaking changes or major modifications to the chart structure in this update. --- charts/paperless-ngx/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/paperless-ngx/Chart.yaml b/charts/paperless-ngx/Chart.yaml index dbb9695..cf4e983 100644 --- a/charts/paperless-ngx/Chart.yaml +++ b/charts/paperless-ngx/Chart.yaml @@ -4,7 +4,7 @@ description: "A community-supported supercharged version of paperless: scan, ind home: https://charts.gabe565.com/charts/paperless-ngx/ icon: https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/b948750/src-ui/src/assets/logo-notext.svg type: application -version: 0.26.2 +version: 0.26.3 # renovate datasource=docker depName=ghcr.io/paperless-ngx/paperless-ngx appVersion: 2.20.2 kubeVersion: ">=1.28.0-0" -- 2.49.1