From e8c03503684725965fa3934208c9f596ecda4dfd Mon Sep 17 00:00:00 2001 From: Artyom Savchenko Date: Sat, 4 Jul 2026 22:23:20 +0700 Subject: [PATCH] Update to version 0.7.426 (#308) Signed-off-by: Artem Savchenko --- .template.huly.conf | 4 ++-- MIGRATION.md | 4 ++++ README.md | 6 +++--- helm/huly/Chart.yaml | 2 +- helm/huly/README.md | 2 +- helm/huly/values.yaml | 2 +- kube/account/account-deployment.yaml | 2 +- kube/collaborator/collaborator-deployment.yaml | 2 +- kube/front/front-deployment.yaml | 2 +- kube/fulltext/fulltext-deployment.yaml | 2 +- kube/rekoni/rekoni-deployment.yaml | 2 +- kube/stats/stats-deployment.yaml | 2 +- kube/transactor/transactor-deployment.yaml | 2 +- kube/workspace/workspace-deployment.yaml | 2 +- 14 files changed, 20 insertions(+), 16 deletions(-) diff --git a/.template.huly.conf b/.template.huly.conf index c814bc0..866101a 100644 --- a/.template.huly.conf +++ b/.template.huly.conf @@ -1,5 +1,5 @@ -HULY_VERSION=v0.7.423 -DESKTOP_CHANNEL=0.7.423 +HULY_VERSION=v0.7.426 +DESKTOP_CHANNEL=0.7.426 DOCKER_NAME=huly_v7 # The address of the host or server from which you will access your Huly instance. diff --git a/MIGRATION.md b/MIGRATION.md index ccc4006..bda8448 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -13,6 +13,10 @@ WARNING: if you are migrating from v6 see [v0.7.204](#v07204) for details. > [!CAUTION] > Do not upgrade directly from v6 to v7. Direct upgrades will lock your deployment with MongoDB-specific data, making the future migration significantly more complex. Follow the migration instructions below instead. +### v0.7.426 + +No changes required. + ### v0.7.423 #### Print Service diff --git a/README.md b/README.md index 5aae414..f37f935 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The Huly platform source code is available on GitHub: **[hcengineering/platform] Before updating, **always review `MIGRATION.md`** in this repository: -- **Open `MIGRATION.md`** and find the section for your target version (for example `v0.7.423`). +- **Open `MIGRATION.md`** and find the section for your target version (for example `v0.7.426`). - **If the section says "No changes required"**, you can upgrade just by updating container versions. - **If there are additional steps**, follow them carefully (backup, config changes, service additions/removals, etc.) **before** or **during** the update. - **If you are upgrading from any 0.6.x version to 0.7.x**, you **must** follow the dedicated migration steps in the `v0.7` section of `MIGRATION.md` (especially `v0.7.204`) instead of doing a direct in-place upgrade. @@ -45,8 +45,8 @@ To update an existing self-hosted deployment to a new Huly version: ``` 3. **Set the new Huly version in `.env`:** - Edit the `.env` file in the project root and update: - - `HULY_VERSION` to the desired platform version tag (for example `v0.7.423`) - - `DESKTOP_CHANNEL` to the same version without the leading `v` (for example `0.7.423`) if you use the desktop app. + - `HULY_VERSION` to the desired platform version tag (for example `v0.7.426`) + - `DESKTOP_CHANNEL` to the same version without the leading `v` (for example `0.7.426`) if you use the desktop app. 4. **Pull updated container images:** ```bash docker compose pull diff --git a/helm/huly/Chart.yaml b/helm/huly/Chart.yaml index 3fb9f62..0801551 100644 --- a/helm/huly/Chart.yaml +++ b/helm/huly/Chart.yaml @@ -3,7 +3,7 @@ name: huly description: Huly — open-source project management platform type: application version: 0.1.0 -appVersion: "0.7.423" +appVersion: "0.7.426" home: https://huly.io sources: - https://github.com/hcengineering/huly-selfhost diff --git a/helm/huly/README.md b/helm/huly/README.md index 28fd1df..c997f92 100644 --- a/helm/huly/README.md +++ b/helm/huly/README.md @@ -314,7 +314,7 @@ All app services share these overridable keys: `.replicas`, `.resource | Key | Description | Default | |-----|-------------|---------| -| `hulyVersion` | Image tag for all Huly services | `v0.7.423` | +| `hulyVersion` | Image tag for all Huly services | `v0.7.426` | | `kvs.enabled` | Deploy KVS (key-value store) service | `true` | ### GitHub Integration diff --git a/helm/huly/values.yaml b/helm/huly/values.yaml index dd56573..8a36cbd 100644 --- a/helm/huly/values.yaml +++ b/helm/huly/values.yaml @@ -10,7 +10,7 @@ fullnameOverride: "" # ────────────────────────────────────────────────────────────── # Global image tag for all Huly services # ────────────────────────────────────────────────────────────── -hulyVersion: v0.7.423 +hulyVersion: v0.7.426 # Docker registry prefix for Huly service images. # Default "hardcoreeng" pulls from Docker Hub (hardcoreeng/front, etc.). diff --git a/kube/account/account-deployment.yaml b/kube/account/account-deployment.yaml index 5e4b8eb..cbdbb38 100644 --- a/kube/account/account-deployment.yaml +++ b/kube/account/account-deployment.yaml @@ -59,7 +59,7 @@ spec: key: TRANSACTOR_URL - name: QUEUE_CONFIG value: redpanda:9092 - image: hardcoreeng/account:v0.7.423 + image: hardcoreeng/account:v0.7.426 name: account ports: - containerPort: 3000 diff --git a/kube/collaborator/collaborator-deployment.yaml b/kube/collaborator/collaborator-deployment.yaml index 496e8cd..04f21cf 100644 --- a/kube/collaborator/collaborator-deployment.yaml +++ b/kube/collaborator/collaborator-deployment.yaml @@ -32,7 +32,7 @@ spec: secretKeyRef: name: huly-secret key: SERVER_SECRET - image: hardcoreeng/collaborator:v0.7.423 + image: hardcoreeng/collaborator:v0.7.426 name: collaborator ports: - containerPort: 3078 diff --git a/kube/front/front-deployment.yaml b/kube/front/front-deployment.yaml index d375b42..5e10f19 100644 --- a/kube/front/front-deployment.yaml +++ b/kube/front/front-deployment.yaml @@ -71,7 +71,7 @@ spec: value: http://stats - name: DESKTOP_UPDATES_CHANNEL value: selfhost - image: hardcoreeng/front:v0.7.423 + image: hardcoreeng/front:v0.7.426 name: front ports: - containerPort: 8080 diff --git a/kube/fulltext/fulltext-deployment.yaml b/kube/fulltext/fulltext-deployment.yaml index 519b533..8d6f7b8 100644 --- a/kube/fulltext/fulltext-deployment.yaml +++ b/kube/fulltext/fulltext-deployment.yaml @@ -49,7 +49,7 @@ spec: value: http://stats - name: QUEUE_CONFIG value: redpanda:9092 - image: hardcoreeng/fulltext:v0.7.423 + image: hardcoreeng/fulltext:v0.7.426 name: fulltext ports: - containerPort: 4700 diff --git a/kube/rekoni/rekoni-deployment.yaml b/kube/rekoni/rekoni-deployment.yaml index 776525c..6e3825d 100644 --- a/kube/rekoni/rekoni-deployment.yaml +++ b/kube/rekoni/rekoni-deployment.yaml @@ -15,7 +15,7 @@ spec: app: rekoni spec: containers: - - image: hardcoreeng/rekoni-service:v0.7.423 + - image: hardcoreeng/rekoni-service:v0.7.426 name: rekoni env: - name: SECRET diff --git a/kube/stats/stats-deployment.yaml b/kube/stats/stats-deployment.yaml index 4f71af3..824cdaa 100644 --- a/kube/stats/stats-deployment.yaml +++ b/kube/stats/stats-deployment.yaml @@ -15,7 +15,7 @@ spec: app: stats spec: containers: - - image: hardcoreeng/stats:v0.7.423 + - image: hardcoreeng/stats:v0.7.426 name: stats env: - name: PORT diff --git a/kube/transactor/transactor-deployment.yaml b/kube/transactor/transactor-deployment.yaml index 428a8a4..09dc908 100644 --- a/kube/transactor/transactor-deployment.yaml +++ b/kube/transactor/transactor-deployment.yaml @@ -53,7 +53,7 @@ spec: key: SERVER_SECRET - name: QUEUE_CONFIG value: redpanda:9092 - image: hardcoreeng/transactor:v0.7.423 + image: hardcoreeng/transactor:v0.7.426 name: transactor ports: - containerPort: 3333 diff --git a/kube/workspace/workspace-deployment.yaml b/kube/workspace/workspace-deployment.yaml index 6953ff3..28bf6f1 100644 --- a/kube/workspace/workspace-deployment.yaml +++ b/kube/workspace/workspace-deployment.yaml @@ -49,7 +49,7 @@ spec: key: SERVER_SECRET - name: QUEUE_CONFIG value: redpanda:9092 - image: hardcoreeng/workspace:v0.7.423 + image: hardcoreeng/workspace:v0.7.426 name: workspace resources: limits: