This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 8ee2a5748f Upgrade Quarkus to 3.12.0.CR1 add 83b7ab2004 Add support for openapi-contract-first development add e226c10ca6 Add tests for supervised routes with MicroProfile health add 0e2bf904a3 Fix test report action handling of error & failure objects add 3f2162b5c0 Bump io.quarkiverse.amazonservices:quarkus-amazon-services-bom from 2.14.0 to 2.15.0 new ec7aae7700 Upgrade Quarkus to 3.12.0.CR1 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (8ee2a5748f) \ N -- N -- N refs/heads/quarkus-main (ec7aae7700) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/actions/test-summary-report/action.yaml | 34 +- .../pages/reference/extensions/rest-openapi.adoc | 43 + extensions-support/swagger/runtime/pom.xml | 8 + .../CamelQuarkusSwaggerCodegenProvider.java | 113 + .../rest/openapi/deployment/QuarkusCodegen.java | 119 + .../services/io.quarkus.deployment.CodeGenProvider | 1 + .../services/io.swagger.codegen.v3.CodegenConfig | 1 + .../Quarkus/BeanValidationException.mustache | 48 + .../Quarkus/CustomInstantDeserializer.mustache | 248 ++ .../handlebars/Quarkus/RFC3339DateFormat.mustache | 37 + .../handlebars/Quarkus/beanValidation.mustache | 32 + .../handlebars/Quarkus/beanValidationCore.mustache | 36 + .../Quarkus/beanValidationQueryParams.mustache | 17 + .../Quarkus/generatedAnnotation.mustache | 18 + .../handlebars/Quarkus/interface.mustache | 42 + .../handlebars/Quarkus/licenseInfo.mustache | 27 + .../resources/handlebars/Quarkus/model.mustache | 67 + .../handlebars/Quarkus/modelEnum.mustache | 91 + .../handlebars/Quarkus/modelInnerEnum.mustache | 73 + .../resources/handlebars/Quarkus/pojo.mustache | 304 +++ .../handlebars/Quarkus/typeInfoAnnotation.mustache | 30 + .../handlebars/Quarkus/xmlAnnotation.mustache | 20 + .../runtime/RestOpenApiBuildTimeConfig.java | 68 + integration-tests/microprofile-health/pom.xml | 5 + .../it/health/MicroProfileHealthRouteBuilder.java | 10 + .../MicroProfileHealthSupervisedRouteIT.java} | 13 +- .../MicroProfileHealthSupervisedRouteTest.java | 59 + .../it/health/SupervisedRouteTestProfile.java} | 20 +- integration-tests/rest-openapi/pom.xml | 42 + .../rest/openapi/it/RestOpenApiRoutes.java | 19 + .../rest-openapi/src/main/openapi/petstore.json | 1240 ++++++++++ .../src/main/resources/application.properties | 6 +- .../component/rest/openapi/it/RestOpenapiTest.java | 12 + pom.xml | 8 +- poms/bom/pom.xml | 36 + poms/bom/src/main/generated/flattened-full-pom.xml | 2558 ++++++++++---------- .../src/main/generated/flattened-reduced-pom.xml | 144 +- .../generated/flattened-reduced-verbose-pom.xml | 344 +-- 38 files changed, 4482 insertions(+), 1511 deletions(-) create mode 100644 extensions/rest-openapi/deployment/src/main/java/org/apache/camel/quarkus/component/rest/openapi/deployment/CamelQuarkusSwaggerCodegenProvider.java create mode 100644 extensions/rest-openapi/deployment/src/main/java/org/apache/camel/quarkus/component/rest/openapi/deployment/QuarkusCodegen.java create mode 100644 extensions/rest-openapi/deployment/src/main/resources/META-INF/services/io.quarkus.deployment.CodeGenProvider create mode 100644 extensions/rest-openapi/deployment/src/main/resources/META-INF/services/io.swagger.codegen.v3.CodegenConfig create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/BeanValidationException.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/CustomInstantDeserializer.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/RFC3339DateFormat.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/beanValidation.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/beanValidationCore.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/beanValidationQueryParams.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/generatedAnnotation.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/interface.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/licenseInfo.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/model.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/modelEnum.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/modelInnerEnum.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/pojo.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/typeInfoAnnotation.mustache create mode 100644 extensions/rest-openapi/deployment/src/main/resources/handlebars/Quarkus/xmlAnnotation.mustache create mode 100644 extensions/rest-openapi/runtime/src/main/java/org/apache/camel/quarkus/rest/openapi/runtime/RestOpenApiBuildTimeConfig.java copy integration-tests/microprofile-health/src/{main/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthRouteBuilder.java => test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthSupervisedRouteIT.java} (65%) create mode 100644 integration-tests/microprofile-health/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthSupervisedRouteTest.java copy integration-tests/microprofile-health/src/{main/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthRouteBuilder.java => test/java/org/apache/camel/quarkus/component/microprofile/it/health/SupervisedRouteTestProfile.java} (59%) create mode 100644 integration-tests/rest-openapi/src/main/openapi/petstore.json