Prepare Release 1.5.4

Entire-Checkpoint: 535c1737ceb2
This commit is contained in:
2026-05-12 12:00:05 +02:00
parent 2ca3285ccd
commit 77fdcddc26
2 changed files with 22 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
TARGET = ./cc-backend
FRONTEND = ./web/frontend
VERSION = 1.5.3
VERSION = 1.5.4
GIT_HASH := $(shell git rev-parse --short HEAD || echo 'development')
CURRENT_TIME = $(shell date +"%Y-%m-%d:T%H:%M:%S")
LD_FLAGS = '-s -X main.date=${CURRENT_TIME} -X main.version=${VERSION} -X main.commit=${GIT_HASH}'

View File

@@ -1,4 +1,4 @@
# `cc-backend` version 1.5.3
# `cc-backend` version 1.5.4
Supports job archive version 3 and database version 11.
@@ -15,6 +15,26 @@ While we are confident that the memory issue with the metricstore cleanup move
policy is fixed, it is still recommended to use delete policy for cleanup.
This is also the default.
## Changes in 1.5.4
### Bug fixes
- **Roofline legend placement**: Roofline plot legends now use fixed
coordinates instead of dynamic placement, preventing the legend from
overlapping data points or being rendered off-canvas (#546).
- **Subcluster usage tab labels**: Subcluster names in the status dashboard
usage tabs are no longer force-capitalized; the original cluster-defined
casing is preserved.
- **NodeListRow host filter**: The running-jobs query in the node list row now
filters by exact node hostname (`eq`) instead of substring match
(`contains`), avoiding incorrect matches when one hostname is a prefix of
another.
### Dependencies
- **Go module upgrades**: Refreshed Go module dependencies to their latest
compatible versions.
## Changes in 1.5.3
### Bug fixes