release: v3.10.10 - #948
Merged
Merged
Conversation
ops-release hardcodes "### Changed" above --notes, so a fix-only entry that carries its own "### Fixed" heading ships an empty section in the generated release notes. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v3.10.10 (was 3.10.9).
Fixed
initializePOST and read a 401 as "no refresh token, the owner must re-consent". A 401 only means that when the probe actually presented a credential; with nothing to send it says only that the prober knocked with empty hands. Claude Code holds OAuth tokens for natively-authenticated HTTP MCPs in memory — not in~/.mcp-auth, not in the keychain'smcpOAuthentries, not in the config's static headers — so those servers answer every session normally and probe 401 forever. Measured here:claude-designandopenrouterboth sat atneeds_bootstrapwhilelist_projectsreturned 13 projects andpingreturnedpong. The cost was not just a wrong line in a report — every tick dispatched the headless fix agent (10 runs logged) and attempted a Playwright OAuth flow that cannot succeed, because the consent page renders no button for an unauthenticated profile. The blind case is now its own state,no_probe_credential, and it is excluded from fix-agent dispatch, auto-reauth, the degradation diff and WhatsApp notify, theops-doctordegraded>1h warning, and/ops:mcpadvice. Ahealthy→no_probe_credentialtransition is still logged, so a token that really did disappear leaves a trace instead of vanishing into a state the watchdog ignores. Guard:tests/test-mcp-watchdog-probe-credential.shcovers all four 401 paths plus the consumer guards — 11 passed against this change, 7 of them failing against the previous version.🤖 Generated with Claude Code