mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
chore: add changeset for v3.31.1 (#9153)
This commit is contained in:
parent
4cd5c9022e
commit
2943b83ae9
3 changed files with 13 additions and 1 deletions
8
.changeset/v3.31.1.md
Normal file
8
.changeset/v3.31.1.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||

|
||||
|
||||
- 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!)
|
||||
|
|
@ -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",
|
||||
JSON.stringify(result.error.format()),
|
||||
JSON.stringify(data),
|
||||
)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
BIN
releases/3.31.1-release.png
Normal file
BIN
releases/3.31.1-release.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
Loading…
Add table
Reference in a new issue