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
When #1516 added vertx validation, it used SchemaParser and SchemaRouter for validation, since Quarkus used the older version of Vertx, but added a TODO to switch it to SchemaRepository later. Now Quarkus uses (https://github.com/quarkusio/quarkus/blob/main/bom/application/pom.xml#L117) Vertx 4.5.10, which have all the necessary features.
The text was updated successfully, but these errors were encountered:
Were initially (and erroneously) created here: quarkus-qe/quarkus-test-framework#1332
Sorry, something went wrong.
@fedinskiy I had a look and I think it is too early. While SchemaRepository exists, I can see that in main you can use it to create ValidationHandler https://github.com/vert-x3/vertx-web/blob/master/vertx-web-validation/src/main/java/io/vertx/ext/web/validation/builder/ValidationHandlerBuilder.java#L69 but in 4.5.10 it is still the parser https://github.com/vert-x3/vertx-web/blob/4.5.10/vertx-web-validation/src/main/java/io/vertx/ext/web/validation/builder/ValidationHandlerBuilder.java#L69.
SchemaRepository
ValidationHandler
jcarranzan
No branches or pull requests
When #1516 added vertx validation, it used SchemaParser and SchemaRouter for validation, since Quarkus used the older version of Vertx, but added a TODO to switch it to SchemaRepository later.
Now Quarkus uses (https://github.com/quarkusio/quarkus/blob/main/bom/application/pom.xml#L117) Vertx 4.5.10, which have all the necessary features.
The text was updated successfully, but these errors were encountered: