This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch camel-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


 discard 0b43031  Upgrade to Camel 3.9.0
     add 1257223  Updated CHANGELOG.md
     add 496748a  Remove Camel 3.8.0 staging repository
     add 301f3c9  AWS 2 Kinesis native support #1571
     add eeaf3ca  Remove redundant support-commons-logging dependency from 
individual AWS2 extensions now that support-aws2 depends on it
     add d8933ab  Regenerate virtual dependencies in tests
     add c1a7a18  Remove tar verbose flags for nightly sync builds
     new abb1834  Upgrade to Camel 3.9.0

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   (0b43031)
            \
             N -- N -- N   refs/heads/camel-master (abb1834)

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/workflows/camel-master-cron.yaml           |  6 +-
 .github/workflows/quarkus-master-cron.yaml         |  6 +-
 CHANGELOG.md                                       |  7 +-
 .../pages/reference/extensions/aws2-kinesis.adoc   | 14 ++--
 .../components/aws2-kinesis-firehose.adoc          |  6 +-
 .../reference/components/aws2-kinesis.adoc         |  6 +-
 .../kinesis/deployment/Aws2KinesisProcessor.java   | 46 ------------
 .../aws2-kinesis/integration-test/pom.xml          | 83 ----------------------
 .../aws2/kinesis/it/Aws2KinesisResource.java       | 64 -----------------
 .../component/aws2/kinesis/it/Aws2KinesisTest.java | 42 -----------
 extensions-jvm/pom.xml                             |  1 -
 extensions-support/aws2/deployment/pom.xml         |  4 ++
 extensions-support/aws2/runtime/pom.xml            |  4 ++
 extensions/aws2-athena/deployment/pom.xml          |  4 --
 extensions/aws2-athena/runtime/pom.xml             |  4 --
 extensions/aws2-cw/deployment/pom.xml              |  4 --
 extensions/aws2-cw/runtime/pom.xml                 |  4 --
 extensions/aws2-ddb/deployment/pom.xml             |  4 --
 extensions/aws2-ddb/runtime/pom.xml                |  4 --
 extensions/aws2-ec2/deployment/pom.xml             |  4 --
 extensions/aws2-ec2/runtime/pom.xml                |  4 --
 extensions/aws2-ecs/deployment/pom.xml             |  4 --
 extensions/aws2-ecs/runtime/pom.xml                |  4 --
 extensions/aws2-eks/deployment/pom.xml             |  4 --
 extensions/aws2-eks/runtime/pom.xml                |  4 --
 extensions/aws2-iam/deployment/pom.xml             |  4 --
 extensions/aws2-iam/runtime/pom.xml                |  4 --
 .../aws2-kinesis/deployment/pom.xml                |  4 ++
 .../kinesis/deployment/Aws2KinesisProcessor.java}  |  8 +--
 .../aws2-kinesis/pom.xml                           |  1 -
 .../aws2-kinesis/runtime/pom.xml                   |  6 ++
 .../main/resources/META-INF/quarkus-extension.yaml |  5 +-
 extensions/aws2-kms/deployment/pom.xml             |  4 --
 extensions/aws2-kms/runtime/pom.xml                |  4 --
 extensions/aws2-mq/deployment/pom.xml              |  4 --
 extensions/aws2-mq/runtime/pom.xml                 |  4 --
 extensions/aws2-msk/deployment/pom.xml             |  4 --
 extensions/aws2-msk/runtime/pom.xml                |  4 --
 extensions/aws2-s3/deployment/pom.xml              |  4 --
 extensions/aws2-s3/runtime/pom.xml                 |  4 --
 extensions/aws2-ses/deployment/pom.xml             |  4 --
 extensions/aws2-ses/runtime/pom.xml                |  4 --
 extensions/aws2-sns/deployment/pom.xml             |  4 --
 extensions/aws2-sns/runtime/pom.xml                |  4 --
 extensions/aws2-sqs/deployment/pom.xml             |  4 --
 extensions/aws2-sqs/runtime/pom.xml                |  4 --
 extensions/aws2-sts/deployment/pom.xml             |  4 --
 extensions/aws2-sts/runtime/pom.xml                |  4 --
 extensions/aws2-translate/deployment/pom.xml       |  4 --
 extensions/aws2-translate/runtime/pom.xml          |  4 --
 extensions/pom.xml                                 |  1 +
 integration-tests/cassandraql/pom.xml              | 15 ++++
 integration-tests/optaplanner/pom.xml              |  4 +-
 pom.xml                                            | 44 ------------
 54 files changed, 69 insertions(+), 436 deletions(-)
 delete mode 100644 
extensions-jvm/aws2-kinesis/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/kinesis/deployment/Aws2KinesisProcessor.java
 delete mode 100644 extensions-jvm/aws2-kinesis/integration-test/pom.xml
 delete mode 100644 
extensions-jvm/aws2-kinesis/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/kinesis/it/Aws2KinesisResource.java
 delete mode 100644 
extensions-jvm/aws2-kinesis/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/kinesis/it/Aws2KinesisTest.java
 rename {extensions-jvm => extensions}/aws2-kinesis/deployment/pom.xml (93%)
 copy 
extensions/{browse/deployment/src/main/java/org/apache/camel/quarkus/component/browse/deployment/BrowseProcessor.java
 => 
aws2-kinesis/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/kinesis/deployment/Aws2KinesisProcessor.java}
 (81%)
 rename {extensions-jvm => extensions}/aws2-kinesis/pom.xml (97%)
 rename {extensions-jvm => extensions}/aws2-kinesis/runtime/pom.xml (93%)
 rename {extensions-jvm => 
extensions}/aws2-kinesis/runtime/src/main/resources/META-INF/quarkus-extension.yaml
 (96%)

Reply via email to