From 859b7fe8d3973a0ed36f9fd3238183ef30f547d7 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 26 Mar 2025 16:27:41 +0100 Subject: [PATCH 1/4] test: fix forgejo test tags --- ci/{v10-test-values.yaml => v10-values.yaml} | 2 +- ci/{v11-test-values.yaml => v11-values.yaml} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename ci/{v10-test-values.yaml => v10-values.yaml} (89%) rename ci/{v11-test-values.yaml => v11-values.yaml} (89%) diff --git a/ci/v10-test-values.yaml b/ci/v10-values.yaml similarity index 89% rename from ci/v10-test-values.yaml rename to ci/v10-values.yaml index 362c923..253b35b 100644 --- a/ci/v10-test-values.yaml +++ b/ci/v10-values.yaml @@ -1,7 +1,7 @@ image: registry: codeberg.org repository: forgejo-experimental/forgejo - tag: 10.0-test # don't pin, manifests can be missing + tag: 10 # don't pin, manifests can be missing # Use mirror # https://code.forgejo.org/forgejo-helm/forgejo-helm/issues/1045 diff --git a/ci/v11-test-values.yaml b/ci/v11-values.yaml similarity index 89% rename from ci/v11-test-values.yaml rename to ci/v11-values.yaml index 4530f6d..6c1a24b 100644 --- a/ci/v11-test-values.yaml +++ b/ci/v11-values.yaml @@ -1,7 +1,7 @@ image: registry: codeberg.org repository: forgejo-experimental/forgejo - tag: 11.0-test # don't pin, manifests can be missing + tag: 11 # don't pin, manifests can be missing # Use mirror # https://code.forgejo.org/forgejo-helm/forgejo-helm/issues/1045 From dfd7192c98a5ced0dbc8dd38f47693e4d18cd991 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 26 Mar 2025 15:47:26 +0000 Subject: [PATCH 2/4] test: add forgejo v12 test (#1167) Reviewed-on: https://code.forgejo.org/forgejo-helm/forgejo-helm/pulls/1167 Co-authored-by: Michael Kriese Co-committed-by: Michael Kriese --- ci/v12-values.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ci/v12-values.yaml diff --git a/ci/v12-values.yaml b/ci/v12-values.yaml new file mode 100644 index 0000000..8429086 --- /dev/null +++ b/ci/v12-values.yaml @@ -0,0 +1,29 @@ +image: + registry: codeberg.org + repository: forgejo-experimental/forgejo + tag: 12 # don't pin, manifests can be missing + +# Use mirror +# https://code.forgejo.org/forgejo-helm/forgejo-helm/issues/1045 +test: + image: + name: code.forgejo.org/oci/busybox + +redis-cluster: + enabled: false +postgresql-ha: + enabled: false + +persistence: + enabled: false + +gitea: + config: + database: + DB_TYPE: sqlite3 + session: + PROVIDER: memory + cache: + ADAPTER: memory + queue: + TYPE: level From d3c587183871a22b803a221eb619f84f04d413fb Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 26 Mar 2025 15:50:54 +0000 Subject: [PATCH 3/4] fix(deps): update subcharts (main) (#1165) Reviewed-on: https://code.forgejo.org/forgejo-helm/forgejo-helm/pulls/1165 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- Chart.lock | 12 ++++++------ Chart.yaml | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Chart.lock b/Chart.lock index 8c3da4d..bff1098 100644 --- a/Chart.lock +++ b/Chart.lock @@ -4,15 +4,15 @@ dependencies: version: 2.30.0 - name: postgresql repository: oci://ghcr.io/visualon/bitnamicharts - version: 16.5.0 + version: 16.5.6 - name: postgresql-ha repository: oci://ghcr.io/visualon/bitnamicharts - version: 15.3.4 + version: 15.3.8 - name: redis-cluster repository: oci://ghcr.io/visualon/bitnamicharts - version: 11.4.5 + version: 11.4.6 - name: redis repository: oci://ghcr.io/visualon/bitnamicharts - version: 20.11.3 -digest: sha256:9fecec14f3773bf5d0ce2342adc9862b45724a86cf5c08d5dc0cea595a241a8e -generated: "2025-03-17T00:01:15.072270483Z" + version: 20.11.4 +digest: sha256:a9c9f0779663336dd22ca4896f22bb64427e28f20aa567aee2f18474f8e31a23 +generated: "2025-03-26T15:31:33.532188569Z" diff --git a/Chart.yaml b/Chart.yaml index 4df7eea..8218677 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -37,20 +37,20 @@ dependencies: # https://github.com/bitnami/charts/blob/main/bitnami/postgresql/Chart.yaml - name: postgresql repository: oci://ghcr.io/visualon/bitnamicharts - version: 16.5.0 + version: 16.5.6 condition: postgresql.enabled # https://github.com/bitnami/charts/blob/main/bitnami/postgresql-ha/Chart.yaml - name: postgresql-ha repository: oci://ghcr.io/visualon/bitnamicharts - version: 15.3.4 + version: 15.3.8 condition: postgresql-ha.enabled # https://github.com/bitnami/charts/blob/main/bitnami/redis-cluster/Chart.yaml - name: redis-cluster repository: oci://ghcr.io/visualon/bitnamicharts - version: 11.4.5 + version: 11.4.6 condition: redis-cluster.enabled # https://github.com/bitnami/charts/blob/main/bitnami/redis/Chart.yaml - name: redis repository: oci://ghcr.io/visualon/bitnamicharts - version: 20.11.3 + version: 20.11.4 condition: redis.enabled From 97da7caf323d1def267c09e19ec6fc2154c5789b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 26 Mar 2025 15:51:07 +0000 Subject: [PATCH 4/4] chore(deps): update pnpm to v10.7.0 (main) (#1168) Reviewed-on: https://code.forgejo.org/forgejo-helm/forgejo-helm/pulls/1168 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2866e27..d4cccfc 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "markdownlint-cli": "0.44.0", "prettier": "3.5.3" }, - "packageManager": "pnpm@10.6.5", + "packageManager": "pnpm@10.7.0", "engines": { "node": "^22.0.0", "pnpm": "^10.0.0"