You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ℹ Please note that those spec files are identical, only the initial OpenAPI version differs:
"openapi": "3.0.1"
"openapi": "3.1.0"
Comparing two specs with OpenAPI 3.1.0 seems to work as desired. ✅
I used latest which appears to be 6 weeks old - cannot get the version from the tool itself 🤷
Running the same via openapi-diff installed from brew shows a different error:
$ openapi-diff api-docs-301.json api-docs-310.json
Unexpected exception. Reason: Cannot read new OpenAPI spec
java.lang.RuntimeException: Cannot read new OpenAPI spec
at org.openapitools.openapidiff.core.OpenApiCompare.notNull(OpenApiCompare.java:107)
at org.openapitools.openapidiff.core.OpenApiCompare.fromSpecifications(OpenApiCompare.java:102)
at org.openapitools.openapidiff.core.OpenApiCompare.fromLocations(OpenApiCompare.java:91)
at org.openapitools.openapidiff.cli.Main.main(Main.java:174)
But this also does not work with two OpenAPI 3.1.0 specs:
$ openapi-diff api-docs-310.json api-docs-310.json
Unexpected exception. Reason: Cannot read old OpenAPI spec
java.lang.RuntimeException: Cannot read old OpenAPI spec
Brew shows this to be version 2.0.1 - cannot get the version from the tool itself.
The text was updated successfully, but these errors were encountered:
I used latest which appears to be 6 weeks old - cannot get the version from the tool itself 🤷
Yeah, good catch, "--version" flag does not work. I've created a fix #756
Regarding "latest" docker tag - it is latest beta build 2.1.0-beta12. But if you're using openapi-diff from brew, it has only a stable 2.0.1 release. So the behaviour is not the same.
Anyway, support of OpenAPI 3.1.0 is not officially supported by openapi-diff tool (regardless it works in some cases), we have only plans to support it fully #380. Unfortunately - it is not a priority for 2.1.0 release
Didn't realize that Docker latest would include beta versions - wouldn't a beta tag be better for that?
I agree, it would be better. Will check the docker release pipeline during the next release. It should not update the latest tag while the beta version released.
When running a comparison between OpenAPI 3.0.1 and 3.1.0 via Docker, it looks like everything is reported as different.
Suppressing the details gives this:
ℹ Please note that those spec files are identical, only the initial OpenAPI version differs:
"openapi": "3.0.1"
"openapi": "3.1.0"
Comparing two specs with OpenAPI 3.1.0 seems to work as desired. ✅
I used
latest
which appears to be 6 weeks old - cannot get the version from the tool itself 🤷Running the same via
openapi-diff
installed frombrew
shows a different error:But this also does not work with two OpenAPI 3.1.0 specs:
Brew shows this to be version 2.0.1 - cannot get the version from the tool itself.
The text was updated successfully, but these errors were encountered: