Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/v3.31.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"roo-cline": patch
---

![3.31.1 Release - Kangaroo Stuck in the Clouds](/releases/3.31.1-release.png)

- Fix: Prevent command_output ask from blocking in cloud/headless environments (thanks @daniel-lxs!)
- Add IPC command for sending messages to the current task (thanks @mrubens!)
- Fix: Improve mobile responsiveness of hero section on /reviewer page (thanks @roomote!)
- Add Google Tag Manager to marketing website (thanks @roomote!)
6 changes: 5 additions & 1 deletion packages/ipc/src/ipc-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ export class IpcServer extends EventEmitter<IpcServerEvents> implements RooCodeI
const result = ipcMessageSchema.safeParse(data)

if (!result.success) {
this.log("[server#onMessage] invalid payload", result.error.format(), data)
this.log(
"[server#onMessage] invalid paylooooad",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possible typo: The log message uses 'invalid paylooooad'. Likely unintentional; consider reverting to 'invalid payload'.

Suggested change
"[server#onMessage] invalid paylooooad",
"[server#onMessage] invalid payload",

JSON.stringify(result.error.format()),
JSON.stringify(data),
)
return
}

Expand Down
Binary file added releases/3.31.1-release.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.