Bump the conformance pin to 0.2.0-alpha.8 and baseline the listen checks it surfaces#3031
Merged
Merged
Conversation
…cks it surfaces conformance 4944b268 (0.2.0-alpha.8, unpublished on npm — same sha256-verified pkg.pr.new mechanics as the previous pin) includes upstream #372: checks whose prerequisite is missing now fail with a 'Not testable' message instead of skipping outside the pass/fail denominator. For this repo that surfaces one new known failure: server-stateless fails its three subscriptions/listen MUST checks, because the everything-server's legacy resources/subscribe handlers make it advertise resources.subscribe in server/discover while subscriptions/listen answers -32601 — advertised-but-rejected is now a failure, not a skip. Baseline the scenario in both expected-failures files until the listen runtime lands. The two listChanged SHOULD checks remain legitimately skipped (declared false). The tasks-* scenarios fail with higher check counts (their cascade skips now fail too) but were already baselined; client legs are unaffected.
Contributor
Author
|
Folding this into #3030 directly — no stack needed. |
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.
Note
Stacked on #3030 (base branch
conformance-skips); will be retargeted tomainwhen that merges.Bumps the conformance harness pin from
b18aa918to4944b268(0.2.0-alpha.8 + conformance#372, neither published to npm yet — same sha256-verified pkg.pr.new mechanics as the previous pin).#372 changes skip semantics: a check whose prerequisite is missing — a fixture tool the server doesn't ship, or a capability the server advertises but then rejects — now fails with a "Not testable:" message instead of silently skipping outside the pass/fail denominator. That makes one more unimplemented surface visible as a baselined known failure:
server-statelessnow fails its 3subscriptions/listenMUST checks (new entry in both expected-failures files). The everything-server's legacyresources/subscribehandlers make it advertiseresources.subscribeinserver/discover, whilesubscriptions/listenanswers-32601— under Fixes to stdio_client to support Windows more robustly #372 that's claims-but-doesn't-serve, a failure. The entry burns down when the listen runtime lands (Implement SEP-2575: Make MCP Stateless #2804). The twolistChangedSHOULD checks remain legitimately skipped (the capability is declaredfalse, which Fixes to stdio_client to support Windows more robustly #372 still treats as honest feature absence).tasks-*scenarios fail with higher check counts (their "no task created" cascade skips now fail too), but they were already baselined — no entry changes.tasks-status-notificationsstill skips unconditionally under Fixes to stdio_client to support Windows more robustly #372 and must stay unbaselined.Motivation and Context
Same goal as #3030, finished by the upstream half: #3030 made the filtered-out scenarios run; #372 makes the prerequisite-gap checks inside running scenarios count. After both, the only remaining green-without-evidence surfaces are the ones the harness deliberately exempts.
How Has This Been Tested?
Replicated all six CI legs locally against the new pinned tarball (sha256-verified), exactly as CI invokes them: the four server legs and both client legs exit 0 with "Baseline check passed", with
server-statelessfailing only the 3 listen checks (25 still passing) and all other failures matching the existing baseline. Also confirmed the discovery state before the baseline update: onlyserver-statelesswas newly unexpected; no stale entries; no warnings anywhere.Breaking Changes
None — CI configuration only.
Types of changes
Checklist
Additional context
server-statelesswaiver carries a real masking cost, called out in the baseline comment: while listed, new failures in the scenario's other 25 (currently passing) envelope/error-handling checks are also absorbed, because the baseline is per-scenario. The trade is deliberate — a visible, forced-burn-down known failure for the listen gap beats the pre-Fixes to stdio_client to support Windows more robustly #372 state where the same gap was invisible — but it makes landing the listen runtime (Implement SEP-2575: Make MCP Stateless #2804) the way to get those 25 checks back under guard.resources.subscribewhile the subscribe methods themselves answer 404/-32601there. Implementing listen resolves it from one side; era-aware capability reporting inserver/discoverwould resolve it from the other.AI Disclaimer