openapi3: strip __origin__ from slices in example values#1138
Merged
fenollp merged 2 commits intogetkin:masterfrom Mar 31, 2026
Merged
openapi3: strip __origin__ from slices in example values#1138fenollp merged 2 commits intogetkin:masterfrom
fenollp merged 2 commits intogetkin:masterfrom
Conversation
stripOriginFromAny only recursed into map[string]any but not []any, so __origin__ keys inside array elements (e.g. example values with lists of objects) survived stripping and caused false positive diffs. Co-Authored-By: Claude Opus 4.6 <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.
Summary
stripOriginFromAnyonly recursed intomap[string]anybut not[]anyslices__origin__keys inside array elements to survive strippingoasdiff diff(and any other tool using this library) to report false positive diffs when comparing identical specs loaded from different file pathsFix
Extend
stripOriginFromAnyto use aswitchthat handles bothmap[string]anyand[]any, recursing into each element.Test plan
TestStripOriginFromAny_Slice: unit test verifying__origin__is stripped from objects inside slicesTestOrigin_ExampleWithArrayValue: integration test loading a spec with array-valued examples and verifying__origin__is strippedgo test ./...Co-authored-by: Thomas Visser t.visser@hartwigmedicalfoundation.nl
🤖 Generated with Claude Code