Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.
Version 0.2.118 introduces minor refactoring changes focused on code organization and visual presentation. The main changes involve extracting attachment processing logic into a dedicated function and simplifying the thinking indicator UI.
What's wrong with this entry?
A new function uo2 has been introduced to handle all attachment types in a more modular way:
function uo2(attachment) {
switch (attachment.type) {
case "directory":
// Returns directory listing tool calls
case "file":
// Handles both edited and new files
case "selected_lines_in_ide":
// Handles IDE selection events
case "opened_file_in_ide":
// Handles IDE file open events
case "todo":
// Handles todo list updates
case "nested_memory":
// Handles nested memory content
case "queued_command":
// Handles queued commands
case "ultramemory":
// Handles ultramemory content
}
}
This refactoring improves code maintainability by:
Jw) cleaner and more focusedWhat's wrong with this entry?
The thinking indicator display has been simplified:
Before:
After:
paddingLeft: 2This change makes the thinking indicator less visually intrusive while maintaining clarity.
What's wrong with this entry?
The GitHub Action reference has been updated from:
anthropics/claude-code-pr-action@betaTo:
anthropics/claude-code-action@betaThis suggests a rename or consolidation of the GitHub Action.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
cwd import from node:processPassThrough stream import for potential streaming improvementsrandomUUID import from node:crypto for unique identifier generationThese changes suggest preparation for improved streaming capabilities and better unique ID generation.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
For CLI users, these changes are mostly internal improvements that won't affect the command-line interface or interactive experience. However, you may notice:
No changes to command-line arguments, flags, or interactive commands were introduced in this version.
v0.2.118 does not have its own entry in Anthropic’s official changelog, because prerelease builds are often folded into a neighbouring release. Browse the full changelog for the closest official notes. Everything else on this page came out of the bundle instead, which is why the two lists don't match.
The system prompt was not captured for this release, so this page cannot say whether it moved.