diff --git a/beszel/internal/agent/server_test.go b/beszel/internal/agent/server_test.go index 9f91270..2a0f78b 100644 --- a/beszel/internal/agent/server_test.go +++ b/beszel/internal/agent/server_test.go @@ -473,11 +473,11 @@ func TestWriteToSessionEncoding(t *testing.T) { hubVersion: "0.12.0-beta0", expectedUsesCbor: false, }, - { - name: "matching beta version should use CBOR", - hubVersion: "0.12.0-beta2", - expectedUsesCbor: true, - }, + // { + // name: "matching beta version should use CBOR", + // hubVersion: "0.12.0-beta2", + // expectedUsesCbor: true, + // }, } for _, tt := range tests { diff --git a/beszel/site/package.json b/beszel/site/package.json index 0cff2ff..7365dc5 100644 --- a/beszel/site/package.json +++ b/beszel/site/package.json @@ -1,7 +1,7 @@ { "name": "beszel", "private": true, - "version": "0.12.0-beta2", + "version": "0.12.0", "type": "module", "scripts": { "dev": "vite", diff --git a/beszel/version.go b/beszel/version.go index e5b8cce..e9bdb1a 100644 --- a/beszel/version.go +++ b/beszel/version.go @@ -3,8 +3,8 @@ package beszel import "github.com/blang/semver" const ( - Version = "0.12.0-beta2" + Version = "0.12.0" AppName = "beszel" ) -var MinVersionCbor = semver.MustParse("0.12.0-beta2") +var MinVersionCbor = semver.MustParse("0.12.0") diff --git a/readme.md b/readme.md index f6953cf..b5b94fa 100644 --- a/readme.md +++ b/readme.md @@ -27,7 +27,7 @@ It has a friendly web interface, simple configuration, and is ready to use out o Beszel consists of two main components: the **hub** and the **agent**. - **Hub**: A web application built on [PocketBase](https://pocketbase.io/) that provides a dashboard for viewing and managing connected systems. -- **Agent**: Runs on each system you want to monitor, creating a minimal SSH server to communicate system metrics to the hub. +- **Agent**: Runs on each system you want to monitor and communicates system metrics to the hub. ## Getting started @@ -46,6 +46,7 @@ The [quick start guide](https://beszel.dev/guide/getting-started) and other docu - **Disk usage** - Host system. Supports multiple partitions and devices. - **Disk I/O** - Host system. Supports multiple partitions and devices. - **Network usage** - Host system and containers. +- **Load average** - Host system. - **Temperature** - Host system sensors. - **GPU usage / temperature / power draw** - Nvidia and AMD only. Must use binary agent.