diff --git a/CHANGELOG.md b/CHANGELOG.md index 622beb3e3c0..4a955a9966d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -206,7 +206,6 @@ Docs: https://docs.openclaw.ai - Release/install: keep previously released bundled plugins and Control UI assets in published openclaw npm installs, and fail release checks when those shipped artifacts are missing. Thanks @vincentkoc. - WhatsApp/outbound sends: keep the active Web listener on a direct process-global symbol so split runtime chunks keep sharing the connected Baileys session and `openclaw message send --channel whatsapp` stops failing after connect. Fixes #52574. Thanks @MonkeyLeeT. - Agents/process: fail loud when `send-keys` tries cursor-sensitive keys before a background PTY reports its cursor mode, so startup races no longer silently send the wrong arrow/Home/End sequences. (#51490) Thanks @liuy. - ## 2026.3.22 ### Breaking diff --git a/src/cli/program/preaction.test.ts b/src/cli/program/preaction.test.ts index a9a62ebbf75..dfb1a78bb3c 100644 --- a/src/cli/program/preaction.test.ts +++ b/src/cli/program/preaction.test.ts @@ -203,7 +203,6 @@ describe("registerPreActionHooks", () => { it("handles debug mode and plugin-required command preaction", async () => { const processTitleSetSpy = vi.spyOn(process, "title", "set"); - await runPreAction({ parseArgv: ["status"], processArgv: ["node", "openclaw", "status", "--debug"],