chore: release v25.8.2

This commit is contained in:
pycook
2025-08-12 20:52:47 +08:00
parent 585de96cab
commit 8a4f6ebcaf
3 changed files with 6 additions and 6 deletions

View File

@@ -63,7 +63,7 @@ func handler(sess ssh.Session) {
Method: "GET",
Host: "localhost",
}
// Use gin.CreateTestContext to create a properly initialized context
rec := &testResponseWriter{}
ctx, _ := gin.CreateTestContext(rec)
@@ -146,7 +146,7 @@ func banner() string {
versionText := versionStyle.
PaddingLeft(25).
Render(version.Version)
Render(version.GetVersion())
result.WriteString("\n")
result.WriteString(tagline)

View File

@@ -4,11 +4,11 @@ package version
// Update these values before each release
const (
// Version is the current version of OneTerm
Version = "v25.8.1"
Version = "v25.8.2"
// BuildDate can be set at compile time using ldflags
// go build -ldflags "-X github.com/veops/oneterm/internal/version.BuildDate=$(date +%Y%m%d)"
BuildDate = ""
BuildDate = "2025-08-12"
// GitCommit can be set at compile time using ldflags
// go build -ldflags "-X github.com/veops/oneterm/internal/version.GitCommit=$(git rev-parse --short HEAD)"

View File

@@ -1,6 +1,6 @@
services:
oneterm-api:
image: registry.cn-hangzhou.aliyuncs.com/veops/oneterm-api:v25.8.1
image: registry.cn-hangzhou.aliyuncs.com/veops/oneterm-api:v25.8.2
container_name: oneterm-api
environment:
ONETERM_RDP_DRIVE_PATH: /rdp
@@ -95,7 +95,7 @@ services:
- redis
oneterm-ui:
image: registry.cn-hangzhou.aliyuncs.com/veops/oneterm-ui:v25.8.1
image: registry.cn-hangzhou.aliyuncs.com/veops/oneterm-ui:v25.8.2
container_name: oneterm-ui
depends_on:
oneterm-api: