This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard b068373 Temporarily disable debezium tests until #1311 and associtated issues are fixed discard 0ea580b Upgrade to Quarkus 1.6.0 - WIP add 004f728 Added an AWS2-EKS native extension add e3ce2e7 AWS2-EKS extension: Regen metadata add 6260da2 Merge pull request #1354 from apache/aws2-eks add b22c41b AWS2-ECS: Fixed the deployment module add 28a7251 Merge pull request #1362 from apache/aws2-ecs-fix add f9a8da6 Add an AWS2-DDB Native extension add d763346 AWS2-DDB: Regen add 404e84c AWS2-DDB: Fixed POM add e9d5a24 Merge pull request #1361 from apache/aws2-ddb new 79ed7d8 Upgrade to Quarkus 1.6.0 - WIP new 8fa5fc1 Temporarily disable debezium tests until #1311 and associtated issues are fixed 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 (b068373) \ N -- N -- N refs/heads/quarkus-master (8fa5fc1) 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 2 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: docs/modules/ROOT/pages/extensions/aws2-ddb.adoc | 2 +- docs/modules/ROOT/pages/extensions/aws2-eks.adoc | 2 +- .../pages/list-of-camel-quarkus-extensions.adoc | 6 +- extensions-jvm/aws2-ddb/deployment/pom.xml | 77 ----------------- .../aws2/ddb/deployment/Aws2DdbProcessor.java | 47 ----------- extensions-jvm/aws2-ddb/integration-test/pom.xml | 81 ------------------ .../component/aws2/ddb/it/Aws2DdbResource.java | 64 --------------- .../quarkus/component/aws2/ddb/it/Aws2DdbTest.java | 42 ---------- extensions-jvm/aws2-ddb/runtime/pom.xml | 96 ---------------------- extensions-jvm/aws2-eks/deployment/pom.xml | 73 ---------------- .../aws2/eks/deployment/Aws2EksProcessor.java | 47 ----------- extensions-jvm/aws2-eks/integration-test/pom.xml | 81 ------------------ .../component/aws2/eks/it/Aws2EksResource.java | 51 ------------ .../quarkus/component/aws2/eks/it/Aws2EksTest.java | 34 -------- extensions-jvm/aws2-eks/runtime/pom.xml | 91 -------------------- extensions-jvm/pom.xml | 2 - .../{aws2-cw => aws2-ddb}/deployment/pom.xml | 8 +- .../aws2/ddb/deployment/Aws2DdbProcessor.java} | 10 +-- {extensions-jvm => extensions}/aws2-ddb/pom.xml | 1 - extensions/{aws2-ecs => aws2-ddb}/runtime/pom.xml | 9 +- .../main/resources/META-INF/quarkus-extension.yaml | 2 - .../aws2/ecs/deployment/Aws2EcsProcessor.java | 49 +++++++---- .../{aws2-ec2 => aws2-eks}/deployment/pom.xml | 8 +- .../aws2/eks/deployment/Aws2EksProcessor.java} | 8 +- {extensions-jvm => extensions}/aws2-eks/pom.xml | 1 - extensions/{aws2-ecs => aws2-eks}/runtime/pom.xml | 8 +- .../main/resources/META-INF/quarkus-extension.yaml | 2 - extensions/pom.xml | 2 + integration-tests/aws2/pom.xml | 8 ++ .../camel/quarkus/component/aws2/CamelRoute.java | 5 ++ poms/bom/pom.xml | 12 +++ 31 files changed, 92 insertions(+), 837 deletions(-) delete mode 100644 extensions-jvm/aws2-ddb/deployment/pom.xml delete mode 100644 extensions-jvm/aws2-ddb/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/deployment/Aws2DdbProcessor.java delete mode 100644 extensions-jvm/aws2-ddb/integration-test/pom.xml delete mode 100644 extensions-jvm/aws2-ddb/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbResource.java delete mode 100644 extensions-jvm/aws2-ddb/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbTest.java delete mode 100644 extensions-jvm/aws2-ddb/runtime/pom.xml delete mode 100644 extensions-jvm/aws2-eks/deployment/pom.xml delete mode 100644 extensions-jvm/aws2-eks/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/eks/deployment/Aws2EksProcessor.java delete mode 100644 extensions-jvm/aws2-eks/integration-test/pom.xml delete mode 100644 extensions-jvm/aws2-eks/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/eks/it/Aws2EksResource.java delete mode 100644 extensions-jvm/aws2-eks/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/eks/it/Aws2EksTest.java delete mode 100644 extensions-jvm/aws2-eks/runtime/pom.xml copy extensions/{aws2-cw => aws2-ddb}/deployment/pom.xml (92%) copy extensions/{aws2-sns/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/sns/deployment/Aws2SnsProcessor.java => aws2-ddb/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/deployment/Aws2DdbProcessor.java} (92%) rename {extensions-jvm => extensions}/aws2-ddb/pom.xml (97%) copy extensions/{aws2-ecs => aws2-ddb}/runtime/pom.xml (91%) rename {extensions-jvm => extensions}/aws2-ddb/runtime/src/main/resources/META-INF/quarkus-extension.yaml (97%) copy extensions/{aws2-ec2 => aws2-eks}/deployment/pom.xml (92%) copy extensions/{aws2-cw/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/cw/deployment/Aws2CwProcessor.java => aws2-eks/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/eks/deployment/Aws2EksProcessor.java} (94%) rename {extensions-jvm => extensions}/aws2-eks/pom.xml (97%) copy extensions/{aws2-ecs => aws2-eks}/runtime/pom.xml (94%) rename {extensions-jvm => extensions}/aws2-eks/runtime/src/main/resources/META-INF/quarkus-extension.yaml (96%)