-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Allow RevApi extensions to be configured via the configuration file #43751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
alzimmermsft
merged 6 commits into
Azure:main
from
alzimmermsft:AzEng_MoreWorkToGenerifyTooling
Jan 9, 2025
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
354dac9
Allow RevApi extensions to be configured via the configuration file
alzimmermsft 4679a64
Move clientcore to its own RevApi configuration file
alzimmermsft fa70831
Add enabled flags to all transforms
alzimmermsft 696a575
Merge branch 'main' into AzEng_MoreWorkToGenerifyTooling
alzimmermsft e0172bb
Fix linting
alzimmermsft b309229
Fix clientcore linting
alzimmermsft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Move clientcore to its own RevApi configuration file
- Loading branch information
commit 4679a646d52bc0b41cb7b6a3e951d14c429a2f84
There are no files selected for viewing
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
89 changes: 89 additions & 0 deletions
89
eng/code-quality-reports/src/main/resources/revapi/clientcore-revapi.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,89 @@ | ||
| [ | ||
| { | ||
| "extension": "revapi.java", | ||
| "configuration": { | ||
| "missing-classes": { | ||
| "behavior": "ignore", | ||
| "ignoreMissingAnnotations": false | ||
| }, | ||
| "matchOverloads": true | ||
| } | ||
| }, | ||
| { | ||
| "extension": "revapi.versions", | ||
| "configuration": { | ||
| "enabled": true, | ||
| "semantic0": false, | ||
| "versionIncreaseAllows": { | ||
| "major": { | ||
| "severity": "BREAKING" | ||
| }, | ||
| "minor": { | ||
| "severity": "NON_BREAKING" | ||
| }, | ||
| "patch": { | ||
| "severity": "EQUIVALENT" | ||
| } | ||
| }, | ||
| "onAllowed": { | ||
| "remove": true, | ||
| "attachments": { | ||
| "breaksVersioningRules": "false" | ||
| } | ||
| }, | ||
| "onDisallowed": { | ||
| "criticality": "error", | ||
| "attachments": { | ||
| "breaksVersioningRules": "true" | ||
| } | ||
| }, | ||
| "passThroughDifferences": [ | ||
| "java.class.nonPublicPartOfAPI" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "extension": "allowed-external-apis", | ||
| "configuration": { | ||
| "allowedPrefixes": { | ||
| "io.": [ | ||
| "clientcore.core" | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "extension": "ignored-transitive-changes", | ||
| "configuration": { | ||
| "ignoredNewArchives": [ | ||
| "io.clientcore:core:", | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "extension": "class-and-package-tree-filter-provider", | ||
| "configuration": { | ||
| "ignoredClasses": { | ||
| }, | ||
| "ignoredPackages": { | ||
| "kotlin": [], | ||
| "okhttp3": [], | ||
| "okio": [], | ||
| "org.": [ | ||
| "junit" | ||
| ] | ||
| }, | ||
| "ignoredPackagesPatterns": [ | ||
| "io\\.clientcore\\..*(implementation|samples).*" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "extension": "revapi.differences", | ||
| "configuration": { | ||
| "ignore": true, | ||
| "differences": [ | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.