fix: prevent panic on empty mapping in sequence (#808)#809
Merged
reuvenharrison merged 4 commits intomainfrom Mar 16, 2026
Merged
fix: prevent panic on empty mapping in sequence (#808)#809reuvenharrison merged 4 commits intomainfrom
reuvenharrison merged 4 commits intomainfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #809 +/- ##
=======================================
Coverage 89.28% 89.28%
=======================================
Files 240 240
Lines 12715 12715
=======================================
Hits 11352 11352
Misses 907 907
Partials 456 456
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Updates oasdiff/yaml3 (via kin-openapi) to fix a panic in addOriginInSeq
when a YAML sequence contains an empty mapping node (e.g. `- {}`).
Fixes #808
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
9fbe809 to
3bba300
Compare
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
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
index out of range [0] with length 0when loading a spec with a YAML sequence containing an empty mapping node (e.g.security: - {})oasdiff/yaml3'saddOriginInSeq: skip origin injection whenn.Contentis emptyoasdiff/yaml3tov0.0.1andoasdiff/yamltov0.0.1viaoasdiff/kin-openapi v0.135.1replace directiveNote: #806 (false positive diffs on identical files) was already fixed in #807.
Test plan
TestDiff_EmptySecurityRequirementNoPanic— loads a spec withsecurity: - {}and verifies no panic🤖 Generated with Claude Code