@qingchencloud/openclaw-zh 2026.1.29-nightly.202601302059 → 2026.1.29-nightly.202601302153

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -74,6 +74,7 @@ Status: stable.
74
74
  - **BREAKING:** Gateway auth mode "none" is removed; gateway now requires token/password (Tailscale Serve identity still allowed).
75
75
 
76
76
  ### Fixes
77
+ - Gateway: prevent blank token prompts from storing "undefined". (#4873) Thanks @Hisleren.
77
78
  - Telegram: use undici fetch for per-account proxy dispatcher. (#4456) Thanks @spiceoogway.
78
79
  - Telegram: fix HTML nesting for overlapping styles and links. (#4578) Thanks @ThanhNguyxn.
79
80
  - Telegram: avoid silent empty replies by tracking normalization skips before fallback. (#3796)
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2026.1.29-nightly.202601302059",
3
- "commit": "7c96bde3b3db74dcf57bff0138eefd5d03ba1d08",
4
- "builtAt": "2026-01-30T21:00:23.151Z"
2
+ "version": "2026.1.29-nightly.202601302153",
3
+ "commit": "39eb0b7bc0c2594620a7d2eff34f07d987845528",
4
+ "builtAt": "2026-01-30T21:53:34.187Z"
5
5
  }
@@ -1 +1 @@
1
- 9f71946c42dd48cbf433eb302e8b0824f989785de8f9750671ce2f34c097396d
1
+ 8f7548d2a25302868ae14bc35007d8af0e3a2a37f7db81ae9246d32633e48ecc
@@ -3,7 +3,7 @@ import { findTailscaleBinary } from "../infra/tailscale.js";
3
3
  import { note } from "../terminal/note.js";
4
4
  import { buildGatewayAuthConfig } from "./configure.gateway-auth.js";
5
5
  import { confirm, select, text } from "./configure.shared.js";
6
- import { guardCancel, randomToken } from "./onboard-helpers.js";
6
+ import { guardCancel, normalizeGatewayTokenInput, randomToken } from "./onboard-helpers.js";
7
7
  export async function promptGatewayConfig(cfg, runtime) {
8
8
  const portRaw = guardCancel(await text({
9
9
  message: "Gateway port",
@@ -124,7 +124,7 @@ export async function promptGatewayConfig(cfg, runtime) {
124
124
  message: "Gateway token (blank to generate)",
125
125
  initialValue: randomToken(),
126
126
  }), runtime);
127
- gatewayToken = String(tokenInput).trim() || randomToken();
127
+ gatewayToken = normalizeGatewayTokenInput(tokenInput) || randomToken();
128
128
  }
129
129
  if (authMode === "password") {
130
130
  const password = guardCancel(await text({
@@ -51,6 +51,11 @@ export function summarizeExistingConfig(config) {
51
51
  export function randomToken() {
52
52
  return crypto.randomBytes(24).toString("hex");
53
53
  }
54
+ export function normalizeGatewayTokenInput(value) {
55
+ if (typeof value !== "string")
56
+ return "";
57
+ return value.trim();
58
+ }
54
59
  export function printWizardHeader(runtime) {
55
60
  const header = [
56
61
  "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄",
@@ -1,4 +1,4 @@
1
- import { randomToken } from "../commands/onboard-helpers.js";
1
+ import { normalizeGatewayTokenInput, randomToken } from "../commands/onboard-helpers.js";
2
2
  import { findTailscaleBinary } from "../infra/tailscale.js";
3
3
  export async function configureGatewayForOnboarding(opts) {
4
4
  const { flow, localPort, quickstartGateway, prompter } = opts;
@@ -124,7 +124,7 @@ export async function configureGatewayForOnboarding(opts) {
124
124
  placeholder: "Needed for multi-machine or non-loopback access",
125
125
  initialValue: quickstartGateway.token ?? "",
126
126
  });
127
- gatewayToken = String(tokenInput).trim() || randomToken();
127
+ gatewayToken = normalizeGatewayTokenInput(tokenInput) || randomToken();
128
128
  }
129
129
  }
130
130
  if (authMode === "password") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qingchencloud/openclaw-zh",
3
- "version": "2026.1.29-nightly.202601302059",
3
+ "version": "2026.1.29-nightly.202601302153",
4
4
  "description": "OpenClaw 汉化发行版 (Nightly) - 武汉晴辰天下网络科技有限公司",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -84,7 +84,7 @@ Message context lines include `discord message id` and `channel` fields you can
84
84
  {
85
85
  "action": "stickerUpload",
86
86
  "guildId": "999",
87
- "name": "moltbot_wave",
87
+ "name": "openclaw_wave",
88
88
  "description": "OpenClaw waving hello",
89
89
  "tags": "👋",
90
90
  "mediaUrl": "file:///tmp/wave.png"