From 5db4eb43469e6cdbc54858b983a58e89f5b1a1a6 Mon Sep 17 00:00:00 2001 From: henrygd Date: Sun, 29 Mar 2026 13:03:48 -0400 Subject: [PATCH] 0.18.6 release --- beszel.go | 2 +- internal/site/package.json | 2 +- supplemental/CHANGELOG.md | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/beszel.go b/beszel.go index dedf6c4c..b78b1410 100644 --- a/beszel.go +++ b/beszel.go @@ -6,7 +6,7 @@ import "github.com/blang/semver" const ( // Version is the current version of the application. - Version = "0.18.5" + Version = "0.18.6" // AppName is the name of the application. AppName = "beszel" ) diff --git a/internal/site/package.json b/internal/site/package.json index f40868ad..0fa78aae 100644 --- a/internal/site/package.json +++ b/internal/site/package.json @@ -1,7 +1,7 @@ { "name": "beszel", "private": true, - "version": "0.18.5", + "version": "0.18.6", "type": "module", "scripts": { "dev": "vite --host", diff --git a/supplemental/CHANGELOG.md b/supplemental/CHANGELOG.md index dffd9ed0..04a6a1c5 100644 --- a/supplemental/CHANGELOG.md +++ b/supplemental/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.18.6 + +- Add apple-touch-icon link to index.html (#1850) + +- Fix UI bug where charts did not display 1m max until next update + +- Fix regression in partition discovery on Docker (#1847) + +- Fix agent detection of Podman when using socket proxy (#1846) + +- Fix NVML GPU collection being disabled when `nvidia-smi` is not in PATH (#1849) + +- Reset SMART interval on agent reconnect if the agent hasn't collected SMART data, allowing config changes to take effect immediately + ## 0.18.5 - Add "update available" notification in hub web UI with `CHECK_UPDATES=true` (#1830)