-
Notifications
You must be signed in to change notification settings - Fork 143
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
Zally not validating APIs for Open API 3.1.0. #1230
Comments
@tkrop do you have API example? |
@vadeg you can take any |
Swagger parser doesn't support Basically, the parser ignores any schemas which do not start from if (value == null || !value.startsWith("3.0")) {
return null;
} |
Updating swagger parser to latest version is also not simple. The maximum we can currently achieve without fixing logic is Remark: Updating the swagger model to the latest version seems to be no problem. |
I have checked the latest swagger parser version. It has the same problem. Swagger parser will be updated together with kotlin and Java in #1254 |
Blocked by #1255 and swagger-api/swagger-parser#1535. |
any news there ? @vadeg , @tkrop the issue you mentionned swagger-api/swagger-parser#1535 so we should be good here isn't it ? |
@LasneF thank you for the update. I will have a look. |
It seems as if there is a switch preventing the rules to get into action on Open API version 3.1.0, that has been released on Feb 15th, 2021. Checking APIs with
openapi: 3.0.3
that show violations show now violations after updating toopenapi: 3.1.0
without other changes.The text was updated successfully, but these errors were encountered: