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 1e1ad70 Upgrade to Quarkus 2.8.0.CR1
add 96678b7 Prevent various plugins from resolving
commons-logging:commons-logging #3517
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 d6b8b22 Upgrade to Quarkus 2.8.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 (1e1ad70)
\
N -- N -- N refs/heads/quarkus-main (d6b8b22)
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:
.mvn/wrapper/maven-wrapper.properties | 2 +-
CHANGELOG.md | 2 +
.../pages/reference/extensions/cassandraql.adoc | 9 +
.../ROOT/pages/reference/extensions/sql.adoc | 9 +-
extensions-jvm/atmos/runtime/pom.xml | 6 -
extensions-jvm/aws-secrets-manager/runtime/pom.xml | 6 -
extensions-jvm/aws-xray/runtime/pom.xml | 6 -
extensions-jvm/cm-sms/runtime/pom.xml | 6 -
extensions-jvm/google-functions/runtime/pom.xml | 6 -
extensions-jvm/iota/runtime/pom.xml | 6 -
extensions-jvm/ribbon/runtime/pom.xml | 6 -
extensions-jvm/splunk-hec/runtime/pom.xml | 6 -
extensions-jvm/thrift/runtime/pom.xml | 6 -
extensions-jvm/workday/runtime/pom.xml | 4 -
extensions-support/aws2/runtime/pom.xml | 6 +
.../google-http-client/runtime/pom.xml | 4 +
extensions/as2/runtime/pom.xml | 4 -
extensions/aws2-athena/runtime/pom.xml | 10 -
extensions/aws2-cw/runtime/pom.xml | 10 -
extensions/aws2-ddb/runtime/pom.xml | 10 -
extensions/aws2-ec2/runtime/pom.xml | 10 -
extensions/aws2-ecs/runtime/pom.xml | 10 -
extensions/aws2-eks/runtime/pom.xml | 10 -
extensions/aws2-eventbridge/runtime/pom.xml | 10 -
extensions/aws2-iam/runtime/pom.xml | 10 -
extensions/aws2-kinesis/runtime/pom.xml | 10 -
extensions/aws2-kms/runtime/pom.xml | 10 -
extensions/aws2-lambda/runtime/pom.xml | 10 -
extensions/aws2-mq/runtime/pom.xml | 10 -
extensions/aws2-msk/runtime/pom.xml | 10 -
extensions/aws2-s3/runtime/pom.xml | 10 -
extensions/aws2-ses/runtime/pom.xml | 10 -
extensions/aws2-sns/runtime/pom.xml | 10 -
extensions/aws2-sqs/runtime/pom.xml | 10 -
extensions/aws2-sts/runtime/pom.xml | 10 -
extensions/aws2-translate/runtime/pom.xml | 10 -
extensions/box/runtime/pom.xml | 6 -
.../deployment/CassandraqlProcessor.java | 7 -
.../runtime/src/main/doc/configuration.adoc | 5 +
extensions/elasticsearch-rest/deployment/pom.xml | 6 +
extensions/elasticsearch-rest/runtime/pom.xml | 6 +
extensions/grpc/runtime/pom.xml | 4 -
extensions/hystrix/runtime/pom.xml | 6 -
extensions/jira/deployment/pom.xml | 6 +
extensions/jira/runtime/pom.xml | 6 +
extensions/pdf/runtime/pom.xml | 6 -
.../sql/runtime/src/main/doc/configuration.adoc | 9 +-
extensions/weather/runtime/pom.xml | 4 -
integration-test-groups/aws2/aws2-kinesis/pom.xml | 12 +
integration-test-groups/aws2/aws2-lambda/pom.xml | 12 +
integration-tests-support/wiremock/pom.xml | 10 -
integration-tests/aws2-grouped/pom.xml | 11 +
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 -
integration-tests/oaipmh/pom.xml | 6 -
.../src/main/resources/application.properties | 1 -
pom.xml | 2 +-
poms/bom-test/pom.xml | 8 +
poms/bom/pom.xml | 208 +++
70 files changed, 2366 insertions(+), 439 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