@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 +1 -0
- package/dist/build-info.json +3 -3
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/dist/commands/configure.gateway.js +2 -2
- package/dist/commands/onboard-helpers.js +5 -0
- package/dist/wizard/onboarding.gateway-config.js +2 -2
- package/package.json +1 -1
- package/skills/discord/SKILL.md +1 -1
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)
|
package/dist/build-info.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2026.1.29-nightly.
|
|
3
|
-
"commit": "
|
|
4
|
-
"builtAt": "2026-01-30T21:
|
|
2
|
+
"version": "2026.1.29-nightly.202601302153",
|
|
3
|
+
"commit": "39eb0b7bc0c2594620a7d2eff34f07d987845528",
|
|
4
|
+
"builtAt": "2026-01-30T21:53:34.187Z"
|
|
5
5
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
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 =
|
|
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 =
|
|
127
|
+
gatewayToken = normalizeGatewayTokenInput(tokenInput) || randomToken();
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
if (authMode === "password") {
|
package/package.json
CHANGED
package/skills/discord/SKILL.md
CHANGED
|
@@ -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": "
|
|
87
|
+
"name": "openclaw_wave",
|
|
88
88
|
"description": "OpenClaw waving hello",
|
|
89
89
|
"tags": "👋",
|
|
90
90
|
"mediaUrl": "file:///tmp/wave.png"
|