fix(oas): allow bearer scopes on operations in OpenAPI 3.1#2962
Open
slegarraga wants to merge 1 commit into
Open
fix(oas): allow bearer scopes on operations in OpenAPI 3.1#2962slegarraga wants to merge 1 commit into
slegarraga wants to merge 1 commit into
Conversation
This was referenced May 22, 2026
Contributor
Author
|
Closes #2643 — OAS 3.1 allows operation-level bearer scopes without scheme-level scope definitions. Test: Pair with #2961 for batch review if helpful (@tomek-tursa-sb). Mergeable, Wiz ✅. |
Contributor
Author
OAS 3.1 permits scope lists on http bearer security requirements without defining those scopes on the security scheme. Skip scope validation for bearer schemes when the document is OpenAPI 3.1+. Fixes stoplightio#2643
dc0d18f to
997f718
Compare
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
Fixes false positives from
oas3-operation-security-definedwhen OpenAPI 3.1 documents usetype: http+scheme: bearerwith operation-level scopes that are not declared on the security scheme (per OAS 3.1 security requirement semantics).Changes
openapiversion is 3.1+Test plan
yarn jest packages/rulesets/src/oas/__tests__/oas3-operation-security-defined.test.tsCloses #2643
Made with Cursor