mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-22 21:46:18 +01:00
- Introduce `Transport` interface to abstract WebSocket and SSH communication - Add generic `Data` field to `AgentResponse` for streamlined future endpoints - Maintain backward compatibility with legacy hubs and agents using typed fields - Unify fetch operations (SMART, systemd, containers) under a single `request` method - Improve `RequestManager` with deadline awareness and legacy response support - Refactor agent response routing into dedicated `agent/response.go` - Update version to 0.18.0-beta.2
19 lines
605 B
Go
19 lines
605 B
Go
// Package beszel provides core application constants and version information
|
|
// which are used throughout the application.
|
|
package beszel
|
|
|
|
import "github.com/blang/semver"
|
|
|
|
const (
|
|
// Version is the current version of the application.
|
|
Version = "0.18.0-beta.2"
|
|
// AppName is the name of the application.
|
|
AppName = "beszel"
|
|
)
|
|
|
|
// MinVersionCbor is the minimum supported version for CBOR compatibility.
|
|
var MinVersionCbor = semver.MustParse("0.12.0")
|
|
|
|
// MinVersionAgentResponse is the minimum supported version for AgentResponse compatibility.
|
|
var MinVersionAgentResponse = semver.MustParse("0.13.0")
|