From cbce38d78c3190c8c61efe66902dc1b95d1b13c7 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 10 Apr 2026 19:28:00 +0100 Subject: [PATCH] style: format post-rebase files --- CHANGELOG.md | 1 + src/gateway/server/ws-connection.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a3dadddff0..e31f0a32859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -127,6 +127,7 @@ Docs: https://docs.openclaw.ai - Agents/exec: extend exec completion detection to cover local background exec formats so the owner-downgrade fires correctly for all exec paths. (#64376) Thanks @mmaps. - Security/dependencies: pin axios to 1.15.0 and add a plugin install dependency denylist that blocks known malicious packages before install. (#63891) Thanks @mmaps. - Browser/security: apply three-phase interaction navigation guard to pressKey and type(submit) so delayed JS redirects from keypress cannot bypass SSRF policy. (#63889) Thanks @mmaps. + ## 2026.4.9 ### Changes diff --git a/src/gateway/server/ws-connection.ts b/src/gateway/server/ws-connection.ts index b1e1d1d64a4..6fb68f1baf5 100644 --- a/src/gateway/server/ws-connection.ts +++ b/src/gateway/server/ws-connection.ts @@ -3,7 +3,6 @@ import type { Socket } from "node:net"; import type { WebSocket, WebSocketServer } from "ws"; import { resolveCanvasHostUrl } from "../../infra/canvas-host-url.js"; import { removeRemoteNodeInfo } from "../../infra/skills-remote.js"; -import { clearNodeWakeState } from "../server-methods/nodes.js"; import { upsertPresence } from "../../infra/system-presence.js"; import type { createSubsystemLogger } from "../../logging/subsystem.js"; import { normalizeLowercaseStringOrEmpty } from "../../shared/string-coerce.js"; @@ -13,6 +12,7 @@ import type { AuthRateLimiter } from "../auth-rate-limit.js"; import type { ResolvedGatewayAuth } from "../auth.js"; import { getPreauthHandshakeTimeoutMsFromEnv } from "../handshake-timeouts.js"; import { isLoopbackAddress } from "../net.js"; +import { clearNodeWakeState } from "../server-methods/nodes.js"; import type { GatewayRequestContext, GatewayRequestHandlers } from "../server-methods/types.js"; import { formatError } from "../server-utils.js"; import { logWs } from "../ws-log.js";