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 c377aef Upgrade Quarkus to 2.3.0.CR1 add 4b1a484 Updated CHANGELOG.md add 29950b4 Expand OpenApi Java test coverage add 07e77eb Updated CHANGELOG.md add 4ec0c8a Sql - enable test with different databases #3053 add 8382127 Remove redundant dependencies from openapi-java extension add f82c0ea Add documentation to OpenApi Java extension about apiContextIdListing limitations add e256bf9 Only configure OpenTracingTracer if Quarkus Jaeger tracing is enabled new b0f420b Upgrade Quarkus to 2.3.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 (c377aef) \ N -- N -- N refs/heads/quarkus-main (b0f420b) 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: CHANGELOG.md | 4 + .../pages/reference/extensions/openapi-java.adoc | 7 + extensions/openapi-java/deployment/pom.xml | 12 -- extensions/openapi-java/runtime/pom.xml | 12 -- .../runtime/src/main/doc/limitations.adoc | 3 + .../deployment/OpenTracingProcessor.java | 3 +- integration-tests/openapi-java/pom.xml | 41 +++- .../component/openapijava/it/OpenApiResource.java} | 20 +- .../component/openapijava/it/OpenApiRoutes.java | 84 +++++--- .../it/{OpenApiIT.java => OpenApiContentType.java} | 15 +- .../component/openapijava/it/OpenApiTest.java | 216 -------------------- .../openapijava/it/common/OpenApiTest.java | 224 +++++++++++++++++++++ .../component/openapijava/it/v2/OpenApiV2IT.java | 7 +- .../component/openapijava/it/v2/OpenApiV2Test.java | 139 +++++++++++++ .../openapijava/it/v2/OpenApiV2TestProfile.java | 15 +- .../component/openapijava/it/v3/OpenApiV3IT.java | 7 +- .../component/openapijava/it/v3/OpenApiV3Test.java | 95 +++++++++ .../openapijava/it/v3/OpenApiV3TestProfile.java | 15 +- integration-tests/sql/README.adoc | 45 +++++ integration-tests/sql/pom.xml | 8 +- .../component/sql/it/SqlConfigSourceFactory.java | 54 +++++ .../quarkus/component/sql/it/SqlDbInitializer.java | 25 ++- .../camel/quarkus/component/sql/it/SqlHelper.java} | 30 ++- .../quarkus/component/sql/it/SqlResource.java | 35 ++-- .../camel/quarkus/component/sql/it/SqlRoutes.java | 40 ++-- .../io.smallrye.config.ConfigSourceFactory | 1 + .../sql/src/main/resources/application.properties | 6 +- .../main/resources/sql/{ => common}/get-camels.sql | 0 .../selectProjectsAsBoolean.sql} | 2 +- .../selectProjectsAsNumber.sql} | 4 +- .../sql/src/main/resources/sql/db2/initDb.sql | 38 ++++ .../sql/src/main/resources/sql/derby/initDb.sql | 37 ++++ .../sql/src/main/resources/sql/{ => h2}/initDb.sql | 20 +- .../main/resources/sql/{ => mariadb}/initDb.sql | 18 +- .../src/main/resources/sql/{ => mssql}/initDb.sql | 25 ++- .../src/main/resources/sql/{ => mysql}/initDb.sql | 19 +- .../sql/src/main/resources/sql/oracle/initDb.sql | 37 ++++ .../main/resources/sql/{ => postgresql}/initDb.sql | 17 +- .../camel/quarkus/component/sql/it/SqlTest.java | 74 ++++--- poms/bom/pom.xml | 6 + 40 files changed, 1029 insertions(+), 431 deletions(-) create mode 100644 extensions/openapi-java/runtime/src/main/doc/limitations.adoc copy integration-tests/{rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenapiResource.java => openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiResource.java} (70%) rename integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/{OpenApiIT.java => OpenApiContentType.java} (76%) delete mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiTest.java create mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/common/OpenApiTest.java copy extensions/aws2-lambda/runtime/src/main/org/apache/lambda/it/Aws2LambdaIT.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v2/OpenApiV2IT.java (78%) create mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v2/OpenApiV2Test.java copy integration-test-groups/foundation/core-languages/src/main/java/org/apache/camel/quarkus/core/languages/it/ExchangePropertyLanguageRoutes.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v2/OpenApiV2TestProfile.java (69%) copy extensions/aws2-lambda/runtime/src/main/org/apache/lambda/it/Aws2LambdaIT.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3IT.java (78%) create mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3Test.java copy integration-test-groups/foundation/core-languages/src/main/java/org/apache/camel/quarkus/core/languages/it/ExchangePropertyLanguageRoutes.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3TestProfile.java (69%) create mode 100644 integration-tests/sql/README.adoc create mode 100644 integration-tests/sql/src/main/java/org/apache/camel/quarkus/component/sql/it/SqlConfigSourceFactory.java copy integration-tests/{saga/src/main/java/org/apache/camel/quarkus/component/saga/it/OrderManagerService.java => sql/src/main/java/org/apache/camel/quarkus/component/sql/it/SqlHelper.java} (53%) create mode 100644 integration-tests/sql/src/main/resources/META-INF/services/io.smallrye.config.ConfigSourceFactory rename integration-tests/sql/src/main/resources/sql/{ => common}/get-camels.sql (100%) copy integration-tests/sql/src/main/resources/sql/{selectProjects.sql => common/selectProjectsAsBoolean.sql} (95%) rename integration-tests/sql/src/main/resources/sql/{selectProjects.sql => common/selectProjectsAsNumber.sql} (93%) create mode 100644 integration-tests/sql/src/main/resources/sql/db2/initDb.sql create mode 100644 integration-tests/sql/src/main/resources/sql/derby/initDb.sql copy integration-tests/sql/src/main/resources/sql/{ => h2}/initDb.sql (64%) copy integration-tests/sql/src/main/resources/sql/{ => mariadb}/initDb.sql (50%) copy integration-tests/sql/src/main/resources/sql/{ => mssql}/initDb.sql (50%) copy integration-tests/sql/src/main/resources/sql/{ => mysql}/initDb.sql (50%) create mode 100644 integration-tests/sql/src/main/resources/sql/oracle/initDb.sql rename integration-tests/sql/src/main/resources/sql/{ => postgresql}/initDb.sql (54%)