This is an automated email from the ASF dual-hosted git repository.
wu-sheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
The following commit(s) were added to refs/heads/main by this push:
new cc41af2 Release 0.6.0, bump to 0.7.0-dev (#37)
cc41af2 is described below
commit cc41af231112b6ef7fbbec6c6c1247692e740562
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Tue Jun 2 08:26:33 2026 +0800
Release 0.6.0, bump to 0.7.0-dev (#37)
---
CHANGELOG.md | 4 ++++
apps/bff/package.json | 2 +-
apps/bff/src/server.ts | 2 +-
apps/ui/package.json | 2 +-
docs/setup/container-image.md | 10 +++++-----
package.json | 2 +-
packages/api-client/package.json | 2 +-
packages/design-tokens/package.json | 2 +-
packages/templates/package.json | 2 +-
9 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 607bd9a..35509be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ file-by-file implementation. For per-commit detail, see the
git log.
The version line is shared by every package in the monorepo (apps + shared
packages) plus the BFF's `HORIZON_VERSION` default.
+## 0.7.0
+
+(In development — fill in highlights here before cutting the release.)
+
## 0.6.0
This release is the production-readiness pass for Horizon UI: every page
diff --git a/apps/bff/package.json b/apps/bff/package.json
index a3e612b..a0a88f4 100644
--- a/apps/bff/package.json
+++ b/apps/bff/package.json
@@ -1,6 +1,6 @@
{
"name": "@skywalking-horizon-ui/bff",
- "version": "0.6.0-dev",
+ "version": "0.7.0-dev",
"private": true,
"type": "module",
"main": "dist/server.js",
diff --git a/apps/bff/src/server.ts b/apps/bff/src/server.ts
index bb759f8..f056d65 100644
--- a/apps/bff/src/server.ts
+++ b/apps/bff/src/server.ts
@@ -263,7 +263,7 @@ if (staticDir && existsSync(staticDir)) {
// admin status pages.
app.get('/api/health', async () => ({
status: 'ok',
- version: process.env.HORIZON_VERSION ?? '0.6.0-dev',
+ version: process.env.HORIZON_VERSION ?? '0.7.0-dev',
}));
const { host, port } = source.current.server;
diff --git a/apps/ui/package.json b/apps/ui/package.json
index 21714c0..e8abe43 100644
--- a/apps/ui/package.json
+++ b/apps/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@skywalking-horizon-ui/ui",
- "version": "0.6.0-dev",
+ "version": "0.7.0-dev",
"private": true,
"type": "module",
"scripts": {
diff --git a/docs/setup/container-image.md b/docs/setup/container-image.md
index a98e293..f9c2ff0 100644
--- a/docs/setup/container-image.md
+++ b/docs/setup/container-image.md
@@ -15,7 +15,7 @@ Registry: **GitHub Container Registry (GHCR)** at
`ghcr.io/apache/skywalking-hor
| `main` | Head of `main`. Moves on every merge. | Smoke-test the development
branch. |
```sh
-docker pull ghcr.io/apache/skywalking-horizon-ui:0.5.0
+docker pull ghcr.io/apache/skywalking-horizon-ui:0.6.0
docker pull ghcr.io/apache/skywalking-horizon-ui:<sha>
```
@@ -65,7 +65,7 @@ docker run -d \
--name horizon \
-p 8081:8081 \
-v "$PWD/horizon.yaml:/app/horizon.yaml:ro" \
- ghcr.io/apache/skywalking-horizon-ui:0.5.0
+ ghcr.io/apache/skywalking-horizon-ui:0.6.0
```
Notes:
@@ -78,7 +78,7 @@ Notes:
For immutable single-tenant deployments, build a child image that includes
your config:
```dockerfile
-FROM ghcr.io/apache/skywalking-horizon-ui:0.5.0
+FROM ghcr.io/apache/skywalking-horizon-ui:0.6.0
COPY horizon.yaml /app/horizon.yaml
```
@@ -146,7 +146,7 @@ spec:
fsGroup: 101
containers:
- name: horizon
- image: ghcr.io/apache/skywalking-horizon-ui:0.5.0
+ image: ghcr.io/apache/skywalking-horizon-ui:0.6.0
ports:
- containerPort: 8081
envFrom:
@@ -188,7 +188,7 @@ docker run -d --name horizon \
-p 8081:8081 \
-v "$PWD/horizon.yaml:/app/horizon.yaml:ro" \
-v horizon-state:/data \
- ghcr.io/apache/skywalking-horizon-ui:0.5.0
+ ghcr.io/apache/skywalking-horizon-ui:0.6.0
```
Without a mounted volume the writes still land in the container's writable
layer at `/data/` (ephemeral, but at least non-failing). Mounting a volume is
what makes them durable.
diff --git a/package.json b/package.json
index 7032db0..569d5f5 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "skywalking-horizon-ui",
- "version": "0.6.0-dev",
+ "version": "0.7.0-dev",
"private": true,
"description": "Apache SkyWalking Horizon UI - next-generation web UI",
"license": "Apache-2.0",
diff --git a/packages/api-client/package.json b/packages/api-client/package.json
index 2a9ab98..9e701b1 100644
--- a/packages/api-client/package.json
+++ b/packages/api-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@skywalking-horizon-ui/api-client",
- "version": "0.6.0-dev",
+ "version": "0.7.0-dev",
"private": true,
"type": "module",
"main": "./dist/index.js",
diff --git a/packages/design-tokens/package.json
b/packages/design-tokens/package.json
index bd523c1..2b2340d 100644
--- a/packages/design-tokens/package.json
+++ b/packages/design-tokens/package.json
@@ -1,6 +1,6 @@
{
"name": "@skywalking-horizon-ui/design-tokens",
- "version": "0.6.0-dev",
+ "version": "0.7.0-dev",
"private": true,
"type": "module",
"main": "./dist/index.js",
diff --git a/packages/templates/package.json b/packages/templates/package.json
index fa144fc..63399e9 100644
--- a/packages/templates/package.json
+++ b/packages/templates/package.json
@@ -1,6 +1,6 @@
{
"name": "@skywalking-horizon-ui/templates",
- "version": "0.6.0-dev",
+ "version": "0.7.0-dev",
"private": true,
"type": "module",
"main": "./dist/index.js",