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 09be88d  Release 0.7.0, bump to 1.0.0-dev-dev (#67)
09be88d is described below

commit 09be88d4dfdd747188edbe077431ea40032d9fc8
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Mon Jun 22 16:43:41 2026 +0800

    Release 0.7.0, bump to 1.0.0-dev-dev (#67)
---
 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 3ac0bca..1b50e58 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ Notable changes to Apache SkyWalking Horizon UI, written from 
the operator's poi
 
 The version line is shared by every package in the monorepo (apps + shared 
packages) plus the BFF's `HORIZON_VERSION` default.
 
+## 1.0.0-dev
+
+(In development — fill in highlights here before cutting the release.)
+
 ## 0.7.0
 
 ### Browser errors & source maps
diff --git a/apps/bff/package.json b/apps/bff/package.json
index abfeb5a..bfbb807 100644
--- a/apps/bff/package.json
+++ b/apps/bff/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@skywalking-horizon-ui/bff",
-  "version": "0.7.0-dev",
+  "version": "1.0.0-dev-dev",
   "private": true,
   "type": "module",
   "main": "dist/server.js",
diff --git a/apps/bff/src/server.ts b/apps/bff/src/server.ts
index 29f937f..482bd39 100644
--- a/apps/bff/src/server.ts
+++ b/apps/bff/src/server.ts
@@ -334,7 +334,7 @@ if (staticDir && existsSync(staticDir)) {
 // admin status pages.
 app.get('/api/health', async () => ({
   status: 'ok',
-  version: process.env.HORIZON_VERSION ?? '0.7.0-dev',
+  version: process.env.HORIZON_VERSION ?? '1.0.0-dev-dev',
 }));
 
 const { host, port } = source.current.server;
diff --git a/apps/ui/package.json b/apps/ui/package.json
index 83dbd3b..dec74e6 100644
--- a/apps/ui/package.json
+++ b/apps/ui/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@skywalking-horizon-ui/ui",
-  "version": "0.7.0-dev",
+  "version": "1.0.0-dev-dev",
   "private": true,
   "type": "module",
   "scripts": {
diff --git a/docs/setup/container-image.md b/docs/setup/container-image.md
index cf1b4c2..a2f4921 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.6.0
+docker pull ghcr.io/apache/skywalking-horizon-ui:0.7.0
 docker pull ghcr.io/apache/skywalking-horizon-ui:<sha>
 ```
 
@@ -67,7 +67,7 @@ docker run -d \
   --name horizon \
   -p 8081:8081 \
   -v "$PWD/horizon.yaml:/app/horizon.yaml:ro" \
-  ghcr.io/apache/skywalking-horizon-ui:0.6.0
+  ghcr.io/apache/skywalking-horizon-ui:0.7.0
 ```
 
 Notes:
@@ -80,7 +80,7 @@ Notes:
 For immutable single-tenant deployments, build a child image that includes 
your config:
 
 ```dockerfile
-FROM ghcr.io/apache/skywalking-horizon-ui:0.6.0
+FROM ghcr.io/apache/skywalking-horizon-ui:0.7.0
 COPY horizon.yaml /app/horizon.yaml
 ```
 
@@ -148,7 +148,7 @@ spec:
         fsGroup: 101
       containers:
         - name: horizon
-          image: ghcr.io/apache/skywalking-horizon-ui:0.6.0
+          image: ghcr.io/apache/skywalking-horizon-ui:0.7.0
           ports:
             - containerPort: 8081
           envFrom:
@@ -190,7 +190,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.6.0
+  ghcr.io/apache/skywalking-horizon-ui:0.7.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 918ef60..68504ed 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "skywalking-horizon-ui",
-  "version": "0.7.0-dev",
+  "version": "1.0.0-dev-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 9e701b1..e31d5d1 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.7.0-dev",
+  "version": "1.0.0-dev-dev",
   "private": true,
   "type": "module",
   "main": "./dist/index.js",
diff --git a/packages/design-tokens/package.json 
b/packages/design-tokens/package.json
index 2b2340d..db5436f 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.7.0-dev",
+  "version": "1.0.0-dev-dev",
   "private": true,
   "type": "module",
   "main": "./dist/index.js",
diff --git a/packages/templates/package.json b/packages/templates/package.json
index 63399e9..c97989c 100644
--- a/packages/templates/package.json
+++ b/packages/templates/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@skywalking-horizon-ui/templates",
-  "version": "0.7.0-dev",
+  "version": "1.0.0-dev-dev",
   "private": true,
   "type": "module",
   "main": "./dist/index.js",

Reply via email to