release 0.16.0

This commit is contained in:
henrygd
2025-11-12 16:11:08 -05:00
parent 4443b606f6
commit b7915b9d0e
4 changed files with 20 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ import "github.com/blang/semver"
const (
// Version is the current version of the application.
Version = "0.16.0-beta.1"
Version = "0.16.0"
// AppName is the name of the application.
AppName = "beszel"
)

View File

@@ -1,12 +1,12 @@
{
"name": "beszel",
"version": "0.15.4",
"version": "0.16.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "beszel",
"version": "0.15.4",
"version": "0.16.0",
"dependencies": {
"@henrygd/queue": "^1.0.7",
"@henrygd/semaphore": "^0.0.2",

View File

@@ -1,7 +1,7 @@
{
"name": "beszel",
"private": true,
"version": "0.15.4",
"version": "0.16.0",
"type": "module",
"scripts": {
"dev": "vite --host",

View File

@@ -1,3 +1,19 @@
## 0.16.0
- Add basic systemd service monitoring. (#1153)
- Add GPU usage alerts.
- Show additional disk percentages in systems table. (#1365)
- Embed `smartctl` in the Windows binary (experimental). (#1362)
- Add `EXCLUDE_SMART` environment variable to exclude devices from S.M.A.R.T. monitoring. (#1392)
- Change alert links to use system ID instead of name.
- Update Go dependencies.
## 0.15.4
- Refactor containers table to fix clock issue causing no results. (#1337)