release 0.14.0 :)

This commit is contained in:
henrygd
2025-10-18 19:36:23 -04:00
parent 2fe3b1adb1
commit 77ed90cb4a
5 changed files with 652 additions and 121 deletions

View File

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

View File

@@ -465,7 +465,7 @@ func TestApiRoutesAuthentication(t *testing.T) {
"Authorization": userToken,
},
ExpectedStatus: 400,
ExpectedContent: []string{"system parameter is required"},
ExpectedContent: []string{"system and container parameters are required"},
TestAppFactory: testAppFactory,
},
{
@@ -476,7 +476,7 @@ func TestApiRoutesAuthentication(t *testing.T) {
"Authorization": userToken,
},
ExpectedStatus: 400,
ExpectedContent: []string{"container parameter is required"},
ExpectedContent: []string{"system and container parameters are required"},
TestAppFactory: testAppFactory,
},
{

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
{
"name": "beszel",
"private": true,
"version": "0.14.0-alpha.2",
"version": "0.14.0",
"type": "module",
"scripts": {
"dev": "vite --host",

View File

@@ -1,4 +1,12 @@
## 0.13.2
## 0.14.0
- Add `/containers` page for viewing current status of all running containers. (#928)
- Add ability to view container status, health, details, and basic logs. (#928)
- Probable fix for erroneous network stats when interface resets (#1267, #1246)
# 0.13.2
- Add ability to set custom name for extra filesystems. (#379)