From 7fff3c999ab1bfc48e015f67eb1a88fa346ab047 Mon Sep 17 00:00:00 2001 From: henrygd Date: Fri, 19 Dec 2025 16:27:39 -0500 Subject: [PATCH] update changelog and comments --- internal/hub/systems/system.go | 1 - supplemental/CHANGELOG.md | 12 ++++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/internal/hub/systems/system.go b/internal/hub/systems/system.go index a5ba1243..89632515 100644 --- a/internal/hub/systems/system.go +++ b/internal/hub/systems/system.go @@ -142,7 +142,6 @@ func (sys *System) update() error { if time.Since(time.UnixMilli(lastFetch)) >= sys.smartInterval && sys.smartFetching.CompareAndSwap(false, true) { go func() { defer sys.smartFetching.Store(false) - // Throttle retries even on failure. sys.lastSmartFetch.Store(time.Now().UnixMilli()) _ = sys.FetchAndSaveSmartDevices() }() diff --git a/supplemental/CHANGELOG.md b/supplemental/CHANGELOG.md index 9890292b..543a2e2d 100644 --- a/supplemental/CHANGELOG.md +++ b/supplemental/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.18.0 + +- Collect S.M.A.R.T. data in the background every hour. + +- Add `SMART_INTERVAL` environment variable to customize S.M.A.R.T. data collection interval. + +- Collect system distribution and architecture. + +- Add `system_details` collection to store infrequently updated system information. + +- Skip known non-unique product UUID when generating fingerprints. (#1556) + ## 0.17.0 - Add quiet hours to silence alerts during specific time periods. (#265)