We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--state
metadata
From help,
--state Only output diff state: no_changes, incompatible, compatible
this doesn't align with reality. We had a case where the state outputted metadata.
Caused by this line:
openapi-diff/cli/src/main/java/org/openapitools/openapidiff/cli/Main.java
Line 203 in 1de574d
We can simply
openapi-diff/core/src/main/java/org/openapitools/openapidiff/core/model/DiffResult.java
Line 5 in 1de574d
to include something like
public DiffResult toStateDiff() { if (this.isUnchanged()) { return DiffResult.UNCHANGED; } if (this.isCompatible()) { return DiffResult.COMPATIBLE; } return DiffResult.INCOMPATIBLE; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From help,
this doesn't align with reality. We had a case where the state outputted metadata.
Caused by this line:
openapi-diff/cli/src/main/java/org/openapitools/openapidiff/cli/Main.java
Line 203 in 1de574d
We can simply
openapi-diff/core/src/main/java/org/openapitools/openapidiff/core/model/DiffResult.java
Line 5 in 1de574d
to include something like
The text was updated successfully, but these errors were encountered: