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.
What's wrong with this entry?
This release focuses on internal optimizations and introduces a new domain checking capability for web fetching. The terminal rendering system has been significantly refactored for better performance.
What's wrong with this entry?
A new function tP3 has been added that checks whether a domain can be fetched before attempting web operations:
async function tP3(domain) {
try {
let response = await fetch(
`https://claude.ai/api/web/domain_info?domain=${encodeURIComponent(domain)}`
);
if (response.ok) return (await response.json()).can_fetch === true;
return false;
} catch (error) {
return (logError(error), true);
}
}
This appears to be a pre-flight check for the WebFetch tool, allowing Claude Code to verify domain accessibility before attempting to fetch content.
What's wrong with this entry?
The terminal rendering system underwent significant optimization:
\x1B]133;A\x07, \x1B]133;B\x07)\x1B]133;C\x07, \x1B]133;D\x07)\x1B[?2026h, \x1B[?2026l)yy class (now uy) has been streamlined:startOscPrompt and endOscPrompt parametersNn → gn) now:What's wrong with this entry?
// Before: import b$4 from "stream";
// After: import { Readable as v$4 } from "stream";
// Before: import Hh2 from "node:process";
// After: import { cwd as ww0 } from "node:process";
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?
t59 regex) eliminates unnecessary string processing on every render.What's wrong with this entry?
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?
This update should be transparent to end users with the following potential improvements:
The removal of OSC 133 sequences suggests Claude Code is moving away from shell-specific integrations in favor of a more universal approach to terminal handling.
v0.2.43 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.