fix(openapi): normalize trace operations instead of dropping them - #975
Open
Larslllllll wants to merge 1 commit into
Open
fix(openapi): normalize trace operations instead of dropping them#975Larslllllll wants to merge 1 commit into
Larslllllll wants to merge 1 commit into
Conversation
'trace' is part of the OpenAPI 3 Operations Object (alongside get/post/ put/delete/patch/head/options), but METHODS omitted it — so any spec with a trace operation silently lost it in the IR: no SDK method, no MCP tool, no docs page, with no error or warning.
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.
Problem
traceis part of the OpenAPI 3 Operations Object (alongside get / post / put / delete / patch / head / options — see spec), butMETHODSinnormalize()omitted it.Any spec with a
traceoperation silently lost it: no IR entry, no SDK method, no MCP tool, no docs page — with no error or warning.Fix
Add
tracetoHttpMethodand theMETHODSwalker.Tests
New test asserts a spec with
/debug: { trace: … }produces exactly one operation withmethod: 'trace'and the correct auto/explicit id.