This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch quarkus-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard 1c38c78 Set quarkus.version to 999-SNAPSHOT add 16b1db7 Upgrade Quarkus to 1.4.0.CR1 add 2f261e4 Try to capture some debugging info for AMQP CI failures add 2574671 Reinstate MongoDB extensions add 20d5d58 Add missing dependencies for OpenTracing extension to work around quarkusio/quarkus#8578 add 7da7ce7 InfluxDB native support #1036 add ef01128 Fix AMQP tests hanging in CI environment add d0291d3 Merge pull request #1091 from jamesnetherton/fix-amqp-native-test new e608b14 Set quarkus.version to 999-SNAPSHOT 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 (1c38c78) \ N -- N -- N refs/heads/quarkus-master (e608b14) 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/pr-build.yaml | 3 +- .../pages/list-of-camel-quarkus-extensions.adoc | 4 +- .../influxdb/deployment/InfluxdbProcessor.java | 47 -------- extensions-jvm/influxdb/integration-test/pom.xml | 80 ------------ .../component/influxdb/it/InfluxdbResource.java | 51 -------- extensions-jvm/pom.xml | 3 +- .../influxdb/deployment/pom.xml | 4 + .../influxdb/deployment/InfluxdbProcessor.java} | 46 ++++--- {extensions-jvm => extensions}/influxdb/pom.xml | 1 - .../influxdb/runtime/pom.xml | 4 + .../main/resources/META-INF/quarkus-extension.yaml | 6 +- extensions/opentracing/runtime/pom.xml | 10 ++ extensions/pom.xml | 3 +- .../component/amqp/it/ActiveMQTestResource.java | 5 +- integration-tests/{couchdb => influxdb}/pom.xml | 14 ++- .../component/influxdb/it/InfluxdbResource.java | 134 +++++++++++++++++++++ .../camel/quarkus/component/influxdb/it/Point.java | 65 ++++++++++ .../quarkus/component/influxdb/it/Points.java | 49 ++++++-- .../quarkus/component/influxdb/it/InfluxdbIT.java} | 4 +- .../component/influxdb/it/InfluxdbTest.java | 131 ++++++++++++++++++++ .../influxdb/it/InfluxdbTestResource.java} | 19 +-- .../{pom-disabled-issue-1064.xml => pom.xml} | 0 integration-tests/pom.xml | 3 +- 23 files changed, 449 insertions(+), 237 deletions(-) delete mode 100644 extensions-jvm/influxdb/deployment/src/main/java/org/apache/camel/quarkus/component/influxdb/deployment/InfluxdbProcessor.java delete mode 100644 extensions-jvm/influxdb/integration-test/pom.xml delete mode 100644 extensions-jvm/influxdb/integration-test/src/main/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbResource.java rename {extensions-jvm => extensions}/influxdb/deployment/pom.xml (94%) copy extensions/{github/deployment/src/main/java/org/apache/camel/quarkus/component/github/deployment/GithubProcessor.java => influxdb/deployment/src/main/java/org/apache/camel/quarkus/component/influxdb/deployment/InfluxdbProcessor.java} (50%) rename {extensions-jvm => extensions}/influxdb/pom.xml (97%) rename {extensions-jvm => extensions}/influxdb/runtime/pom.xml (95%) rename {extensions-jvm => extensions}/influxdb/runtime/src/main/resources/META-INF/quarkus-extension.yaml (89%) copy integration-tests/{couchdb => influxdb}/pom.xml (88%) create mode 100644 integration-tests/influxdb/src/main/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbResource.java create mode 100644 integration-tests/influxdb/src/main/java/org/apache/camel/quarkus/component/influxdb/it/Point.java rename extensions-jvm/influxdb/integration-test/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTest.java => integration-tests/influxdb/src/main/java/org/apache/camel/quarkus/component/influxdb/it/Points.java (52%) copy integration-tests/{bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanITCase.java => influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbIT.java} (90%) create mode 100644 integration-tests/influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTest.java copy integration-tests/{mongodb/src/test/java/org/apache/camel/quarkus/component/mongodb/it/MongoDbTestResource.java => influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTestResource.java} (78%) rename integration-tests/mongodb/{pom-disabled-issue-1064.xml => pom.xml} (100%)