From 88565b0f10b9b168bb5ec0043ae40860c65c4fc0 Mon Sep 17 00:00:00 2001 From: Artem Chernyshev Date: Wed, 1 Apr 2026 18:57:50 +0300 Subject: [PATCH] release(v1.6.3): prepare release This is the official v1.6.3 release. Signed-off-by: Artem Chernyshev --- CHANGELOG.md | 51 +++++++++++++++++++++++++++++++++++++ deploy/helm/omni/Chart.yaml | 4 +-- deploy/helm/omni/README.md | 2 +- hack/release.toml | 2 +- internal/version/data/tag | 2 +- 5 files changed, 56 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2da5c80..8092a898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,54 @@ +## [Omni 1.6.3](https://github.com/siderolabs/omni/releases/tag/v1.6.3) (2026-04-01) + +Welcome to the v1.6.3 release of Omni! + + + +Please try out the release binaries and report any issues at +https://github.com/siderolabs/omni/issues. + +### Urgent Upgrade Notes **(No, really, you MUST read this before you upgrade)** + +The deprecated flags and config fields that were kept for the SQLite migration period (introduced in v1.4.0) have been removed. + +If you still have any of the following flags or config keys set, **you must remove them before upgrading**, as they will cause startup errors: +* `--audit-log-dir` (`.logs.audit.path`) +* `--secondary-storage-path` (`.storage.secondary.path`) +* `--machine-log-storage-path` (`.logs.machine.storage.path`) +* `--machine-log-storage-enabled` (`.logs.machine.storage.enabled`) +* `--log-storage-path` (`.logs.machine.storage.path`) +* `--embedded-discovery-service-snapshot-path` (`.services.embeddedDiscoveryService.snapshotsPath`) +* `--machine-log-buffer-capacity` (`.logs.machine.bufferInitialCapacity`) +* `--machine-log-buffer-max-capacity` (`.logs.machine.bufferMaxCapacity`) +* `--machine-log-buffer-safe-gap` (`.logs.machine.bufferSafetyGap`) +* `--machine-log-num-compressed-chunks` (`.logs.machine.storage.numCompressedChunks`) + +The automatic migration code for BoltDB secondary storage, file-based audit logs, file-based discovery service snapshots, and circular buffer machine logs has also been removed. If you are upgrading from a version older than v1.4.0, you must first upgrade to v1.4.x to complete the migrations, then upgrade to this version. + + +### Contributors + +* Artem Chernyshev + +### Changes +
2 commits +

+ +* [`b71f8507`](https://github.com/siderolabs/omni/commit/b71f8507832a47725b1e57685576907281e4e02a) chore: collect metrics on the initial `Collect` call to avoid empty data +* [`7783277e`](https://github.com/siderolabs/omni/commit/7783277e58272175b548b2ba507609771b4f9606) chore: extract sqlite metrics collector into a separate goroutine +

+
+ +### Dependency Changes + +* **golang.org/x/crypto** v0.48.0 -> v0.49.0 +* **golang.org/x/net** v0.51.0 -> v0.52.0 +* **golang.org/x/text** v0.34.0 -> v0.35.0 +* **google.golang.org/grpc** v1.79.2 -> v1.80.0 + +Previous release can be found at [v1.6.2](https://github.com/siderolabs/omni/releases/tag/v1.6.2) + + ## [Omni 1.6.2](https://github.com/siderolabs/omni/releases/tag/v1.6.2) (2026-03-25) Welcome to the v1.6.2 release of Omni! diff --git a/deploy/helm/omni/Chart.yaml b/deploy/helm/omni/Chart.yaml index bb8821c6..ea3c5066 100644 --- a/deploy/helm/omni/Chart.yaml +++ b/deploy/helm/omni/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: omni description: A helm chart to deploy Omni on a Kubernetes cluster type: application -version: 2.6.2 -appVersion: "v1.6.2" +version: 2.6.3 +appVersion: "v1.6.3" home: https://www.siderolabs.com/omni/ sources: - https://github.com/siderolabs/omni diff --git a/deploy/helm/omni/README.md b/deploy/helm/omni/README.md index f7ea989c..b08f493a 100644 --- a/deploy/helm/omni/README.md +++ b/deploy/helm/omni/README.md @@ -1,6 +1,6 @@ # Omni Helm Chart (v2) -![Version: 2.6.2](https://img.shields.io/badge/Version-2.6.2-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) ![AppVersion: v1.6.2](https://img.shields.io/badge/AppVersion-v1.6.2-informational?style=flat) +![Version: 2.6.3](https://img.shields.io/badge/Version-2.6.3-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) ![AppVersion: v1.6.3](https://img.shields.io/badge/AppVersion-v1.6.3-informational?style=flat) A Helm chart to deploy [Omni](https://omni.siderolabs.com) on a Kubernetes cluster. diff --git a/hack/release.toml b/hack/release.toml index 0c0b1bf4..64309fd1 100644 --- a/hack/release.toml +++ b/hack/release.toml @@ -6,7 +6,7 @@ github_repo = "siderolabs/omni" match_deps = "^github.com/((talos-systems|siderolabs)/[a-zA-Z0-9-]+)$" pre_release = false -previous = "v1.6.1" +previous = "v1.6.2" [notes.aaa-removed-deprecated-migration-flags] title = "Urgent Upgrade Notes **(No, really, you MUST read this before you upgrade)**" diff --git a/internal/version/data/tag b/internal/version/data/tag index 98610aa4..9d3ffadc 100644 --- a/internal/version/data/tag +++ b/internal/version/data/tag @@ -1 +1 @@ -v1.6.2 \ No newline at end of file +v1.6.3 \ No newline at end of file