Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/homarr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: homarr
description: Homarr - modern application dashboard with SQLite, PostgreSQL, or MySQL, Kubernetes integration, and S3 backup.
type: application
version: 1.1.20
appVersion: "1.68.0"
appVersion: "1.69.2"
kubeVersion: ">=1.26.0-0"
home: https://helmforge.dev
icon: https://helmforge.dev/icons/charts/homarr.png
Expand All @@ -23,7 +23,7 @@ sources:
annotations:
artifacthub.io/changes: |
- kind: changed
description: "bump homarr to 1.68.0 (#612)"
description: "bump homarr to 1.69.2 (#694)"
artifacthub.io/maintainers: |
- name: HelmForge
email: berlofa@helmforge.dev
Expand Down
11 changes: 5 additions & 6 deletions charts/homarr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Helm chart for deploying [Homarr](https://homarr.dev/) modern application dashboard on Kubernetes using the official
[`ghcr.io/homarr-labs/homarr`](https://github.com/homarr-labs/homarr/pkgs/container/homarr) container image.

Current application version: `v1.67.0`.
Current application version: `v1.69.2`.

## Features

Expand Down Expand Up @@ -173,7 +173,7 @@ backup:
| Key | Default | Description |
|-----|---------|-------------|
| `image.repository` | `ghcr.io/homarr-labs/homarr` | Container image repository |
| `image.tag` | `"v1.67.0"` | Homarr image tag |
| `image.tag` | `"v1.69.2"` | Homarr image tag |
| `replicaCount` | `1` | Number of replicas |
| `homarr.logLevel` | `info` | Log level |
| `homarr.authProviders` | `credentials` | Auth providers (credentials, ldap, oidc) |
Expand Down Expand Up @@ -265,10 +265,9 @@ writable and does not force a non-root UID or dropped capabilities by default. O

## Upgrade Notes

This update moves the default image from `v1.64.0` to `v1.67.0`. Review upstream release notes before upgrading production
environments. Homarr `v1.66.1` fixes the MySQL migration regression introduced in `v1.65.0`, and `v1.67.0` adds
server-side PostHog analytics, total CPU and memory usage display, session cookie isolation, and downloads sorting fixes.
No breaking changes were identified in the upstream release metadata.
This update moves the default image from `v1.68.0` to `v1.69.2`. Review upstream release notes before upgrading production
environments. Homarr `v1.69.2` is a patch release that fixes layout stacking so the AppShell header renders above indicator
dots. No breaking changes were identified in the upstream release metadata.

For PostgreSQL and MySQL, the chart sets `DB_DIALECT`, `DB_DRIVER`, and discrete database environment variables instead of
rendering a full `DB_URL`; this avoids requiring URL-encoded passwords in Kubernetes Secrets.
Expand Down
5 changes: 5 additions & 0 deletions charts/homarr/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ app.kubernetes.io/instance: {{ .Release.Name }}
{{- printf "%s:%s" .Values.image.repository .Values.image.tag -}}
{{- end }}

{{- define "homarr.validate" -}}
{{/* Triggers database selection validation through homarr.databaseMode; the return value is unused. */}}
{{- $databaseMode := include "homarr.databaseMode" . -}}
{{- end }}

{{/* ======================================================================== */}}
{{/* Encryption helpers */}}
{{/* ======================================================================== */}}
Expand Down
2 changes: 2 additions & 0 deletions charts/homarr/templates/validate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{{/* SPDX-License-Identifier: Apache-2.0 */}}
{{- include "homarr.validate" . -}}
2 changes: 1 addition & 1 deletion charts/homarr/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: "ghcr.io/homarr-labs/homarr:v1.68.0"
value: "ghcr.io/homarr-labs/homarr:v1.69.2"

- it: should use Recreate strategy for SQLite
asserts:
Expand Down
2 changes: 1 addition & 1 deletion charts/homarr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# -- Homarr image
image:
repository: ghcr.io/homarr-labs/homarr
tag: "v1.68.0"
tag: "v1.69.2"
pullPolicy: IfNotPresent

# -- Image pull secrets
Expand Down