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.
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?
The CLI now provides enhanced model selection capabilities with runtime configuration support:
ANTHROPIC_MODEL environment variable takes precedence over other configuration methods# Set a specific model via environment variable
ANTHROPIC_MODEL=claude-3-opus-20240229 claude
# The model will persist across sessions if set in configWhat's wrong with this entry?
The settings panel now tracks configuration changes more comprehensively:
What's wrong with this entry?
New support for .mcp.json configuration files in your project directory:
function saveMcpConfig(config) {
let mcpPath = path.join(cwd(), ".mcp.json");
writeFileSync(mcpPath, JSON.stringify(config, null, 2), { encoding: "utf8" });
}
This allows you to configure MCP servers and tools on a per-project basis.
What's wrong with this entry?
New utilities for detecting if Claude Code is running as a child of a specific process:
function isChildOfProcess(pid) {
if (!isProcessAlive(pid)) return false;
// Walks up the process tree to check ancestry
// Useful for IDE integration detection
}
What's wrong with this entry?
Enhanced IDE detection with friendly name mapping:
function getIDEDisplayName(ideId) {
switch (ideId) {
case "vscode": return "VS Code";
case "cursor": return "Cursor";
case "windsurf": return "Windsurf";
case "pycharm": return "PyCharm";
case "intellij": return "IntelliJ IDEA";
case "webstorm": return "WebStorm";
// ... and many more IDEs
}
}
Supports detection of 20+ different IDEs including JetBrains suite, VS Code variants, and Android Studio.
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?
The rate limit status now includes time-based information:
// Previous version
{ status: "limited" }
// New version
{
status: "limited",
hoursTillReset: 3 // Hours until rate limit resets
}
This provides users with better visibility into when they can resume using the service.
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?
New functionality to resolve and track conversation paths across sessions:
async function resolveConversationPaths() {
// Automatically resolves parent-child relationships
// between conversations for better context tracking
}
This helps maintain conversation context when switching between related discussions.
What's wrong with this entry?
PassThrough stream support for better data pipeline managementOther releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Published verbatim by Anthropic for v0.2.98. Text is unmodified from the upstream changelog. 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.