docs: fix v0.1.46 changelog entry to match actual method names#724
docs: fix v0.1.46 changelog entry to match actual method names#724sarahdeaton wants to merge 1 commit intomainfrom
Conversation
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.
There was a problem hiding this comment.
LGTM, straightforward changelog typo fix.
Extended reasoning...
Overview
This PR changes a single line in CHANGELOG.md, correcting the v0.1.46 entry for PR #620. The old text listed add_mcp_server() and remove_mcp_server(), which were never the actual method names. The corrected text lists reconnect_mcp_server(), toggle_mcp_server(), stop_task(), and McpStatusResponse — matching what was actually shipped.
Security risks
None. This is a documentation-only change to a changelog file with no code impact.
Level of scrutiny
Minimal scrutiny needed. This is a single-line text correction in a markdown file with no functional implications.
Other factors
The PR description is well-documented, citing the specific commit (28f9b4b) and the downstream docs sync that surfaced the error. No code owners are affected. No tests or builds are impacted.
The v0.1.46 changelog entry for #620 listed
add_mcp_server()/remove_mcp_server(), but commit 28f9b4b actually addedreconnect_mcp_server()/toggle_mcp_server()/stop_task()and theMcpStatusResponsetype. The commit's own<!-- CHANGELOG -->block had the correct names; this was a transcription error when compiling the release notes.Spotted while syncing the platform docs (anthropics/apps#30314) — the docs had inherited the same incorrect names.