OpenCode v1.3.7#8810
Conversation
…ect lvl CLAUDE.md (#19924)
| }) | ||
|
|
||
| const append = (chunk: Buffer) => { | ||
| output += chunk.toString() |
There was a problem hiding this comment.
WARNING: UTF-8 stream decoding regression
This switches the bash tool back to chunk.toString() even though this path previously used StringDecoder to preserve multibyte UTF-8 characters split across stream chunks. If a code point arrives across two data events, the tool output will now be corrupted with replacement characters.
| ) | ||
| .then((x) => x.data?.parts?.find((y) => y.type === "text")?.text ?? message) | ||
| return result.trim() | ||
| for (const commit of commits) { |
There was a problem hiding this comment.
WARNING: Changelog prompt contains pasted script logic
The template literal that starts on the previous line now includes a for (const commit of commits) block instead of continuing with the commit prompt, so this function no longer returns a valid one-line summary. As written, script/changelog.ts ends up referencing undefined names like commits, seen, and list, which will break changelog generation.
Code Review SummaryStatus: 2 Issues Found | Recommendation: Address before merge Overview
Fix these issues in Kilo Cloud Issue Details (click to expand)WARNING
Other Observations (not in diff)No additional high-confidence issues found outside the diff hunks. Files Reviewed (48 files)
Reviewed by gpt-5.4-20260305 · 2,266,304 tokens |
…ncode-v1.3.7 OpenCode v1.3.7
Core
TUI