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 2b530f6 Disable ConsulIT due to #3509 discard 19bae1e deadLetterChannel does not work in BaseRouteBuilder configure method #3436 discard 19de6b2 Upgrade to Camel 3.15.0 add 85c263a Updated CHANGELOG.md add 81352df Improve SQL extension docs for native mode aggregation repository suppport add 0fb2347 Expand Cassandra CQL extension test coverage add 6111679 Build with Maven 3.8.4 add 0d8e2b0 Clean up usage of quarkus.test.flat-class-path new 1ef8bb0 Upgrade to Camel 3.15.0 new 1902f21 deadLetterChannel does not work in BaseRouteBuilder configure method #3436 new 130a966 Disable ConsulIT due to #3509 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 (2b530f6) \ N -- N -- N refs/heads/camel-main (130a966) 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 3 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: .mvn/wrapper/maven-wrapper.properties | 2 +- CHANGELOG.md | 2 + .../pages/reference/extensions/cassandraql.adoc | 9 + .../ROOT/pages/reference/extensions/sql.adoc | 9 +- .../deployment/CassandraqlProcessor.java | 7 - .../runtime/src/main/doc/configuration.adoc | 5 + .../sql/runtime/src/main/doc/configuration.adoc | 9 +- integration-tests/cassandraql/pom.xml | 53 +- .../cassandraql/it/CassandraqlProducers.java | 61 + .../cassandraql/it/CassandraqlResource.java | 141 +- .../cassandraql/it/CassandraqlRoutes.java | 127 ++ .../cassandraql/it/CustomLoadBalancingPolicy.java | 47 + .../quarkus/component/cassandraql/it/Employee.java | 8 +- .../src/main/resources/application.properties | 5 +- .../component/cassandraql/it/CassandraqlTest.java | 208 ++- .../cassandraql/it/CassandraqlTestResource.java | 55 +- .../src/test/resources/cassandra/cassandra.yaml | 1456 ++++++++++++++++++++ .../src/main/resources/application.properties | 1 - .../ftp/src/main/resources/application.properties | 17 - .../jslt/src/main/resources/application.properties | 1 - .../src/main/resources/application.properties | 1 - 21 files changed, 2080 insertions(+), 144 deletions(-) create mode 100644 extensions/cassandraql/runtime/src/main/doc/configuration.adoc create mode 100644 integration-tests/cassandraql/src/main/java/org/apache/camel/quarkus/component/cassandraql/it/CassandraqlProducers.java create mode 100644 integration-tests/cassandraql/src/main/java/org/apache/camel/quarkus/component/cassandraql/it/CassandraqlRoutes.java create mode 100644 integration-tests/cassandraql/src/main/java/org/apache/camel/quarkus/component/cassandraql/it/CustomLoadBalancingPolicy.java copy integration-tests/{jslt => cassandraql}/src/main/resources/application.properties (81%) create mode 100644 integration-tests/cassandraql/src/test/resources/cassandra/cassandra.yaml delete mode 100644 integration-tests/ftp/src/main/resources/application.properties