This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard efd7c2a Adapt to latest Camel API changes discard a93bc14 Remove redundant reflective class registration for SunJaxb21NamespacePrefixMapper discard 47287c7 Sync minio version with quarkiverse version due to incompatible okhttp version between quarkus and recent minio version discard 0c9ecae Camel 3.12 : Dataformat fix attributes names discard 3917eae Upgrade spark and hadoop versions discard d687dfc Upgrade Camel to 3.12.0 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 3133ec7 Upgrade Camel to 3.12.0 new dc34bc2 Upgrade spark and hadoop versions new aefc756 Camel 3.12 : Dataformat fix attributes names new d59209e Sync minio version with quarkiverse version due to incompatible okhttp version between quarkus and recent minio version new e39dcc1 Remove redundant reflective class registration for SunJaxb21NamespacePrefixMapper new 1c7c0b3 Adapt to latest Camel API changes 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 (efd7c2a) \ N -- N -- N refs/heads/camel-main (1c7c0b3) 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 6 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: .../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/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 ++ 27 files changed, 422 insertions(+), 156 deletions(-) create mode 100644 extensions/openapi-java/runtime/src/main/doc/limitations.adoc 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%)