From 5200df6a6a38842a9a0e3f28f6e2454996760314 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 24 Mar 2026 17:03:56 +0000 Subject: [PATCH] docs: fix v0.1.46 changelog entry to match actual method names The changelog entry for #620 listed add_mcp_server()/remove_mcp_server(), but the commit actually added reconnect_mcp_server()/toggle_mcp_server()/ stop_task() and the McpStatusResponse type. The commit's own CHANGELOG block had the correct names; this was a transcription error. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd0de174f..bc138a681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,7 +55,7 @@ ### New Features - **Session history functions**: Added `list_sessions()` and `get_session_messages()` top-level functions for retrieving past session data (#622) -- **MCP control methods**: Added `add_mcp_server()`, `remove_mcp_server()`, and typed `McpServerStatus` for runtime MCP server management (#620) +- **MCP control methods**: Added `reconnect_mcp_server()`, `toggle_mcp_server()`, `stop_task()`, and typed `McpStatusResponse` / `McpServerStatus` for runtime MCP server management (#620) - **Typed task messages**: Added `TaskStarted`, `TaskProgress`, and `TaskNotification` message subclasses for better type safety when handling task-related events (#621) - **ResultMessage stop_reason**: Added `stop_reason` field to `ResultMessage` for inspecting why a conversation turn ended (#619) - **Hook input enhancements**: Added `agent_id` and `agent_type` fields to tool-lifecycle hook inputs (`PreToolUseHookInput`, `PostToolUseHookInput`, `PostToolUseFailureHookInput`) (#628)