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 276bc4d Temporary hacks to handle version misalignment of
smallrye-health and smallrye-faulttolerance in Quarkus & Camel
discard 9b89532 Upgrade to Quarkus 2.8.0.CR1
add c7b1b57 Remove weka extension #3532
add ec1b4ad Remove ipfs extension #3532
add a665ddc Fix the migration guide #3532
new 2d46856 Upgrade to Quarkus 2.8.0.CR1
new 592c61b Temporary hacks to handle version misalignment of
smallrye-health and smallrye-faulttolerance in Quarkus & Camel
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 (276bc4d)
\
N -- N -- N refs/heads/quarkus-main (592c61b)
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/migration-guide/2.8.0.adoc | 7 ++
extensions-jvm/weka/deployment/pom.xml | 61 ----------
.../component/weka/deployment/WekaProcessor.java | 46 --------
extensions-jvm/weka/pom.xml | 37 ------
extensions-jvm/weka/runtime/pom.xml | 123 --------------------
.../main/resources/META-INF/quarkus-extension.yaml | 32 ------
extensions/ipfs/deployment/pom.xml | 61 ----------
.../component/ipfs/deployment/IpfsProcessor.java | 30 -----
extensions/ipfs/pom.xml | 37 ------
extensions/ipfs/runtime/pom.xml | 125 --------------------
.../main/resources/META-INF/quarkus-extension.yaml | 31 -----
integration-tests-jvm/weka/pom.xml | 83 --------------
.../quarkus/component/weka/it/WekaResource.java | 51 ---------
.../camel/quarkus/component/weka/it/WekaTest.java | 34 ------
integration-tests/ipfs/pom.xml | 126 ---------------------
.../quarkus/component/ipfs/it/IpfsResource.java | 58 ----------
.../camel/quarkus/component/ipfs/it/IpfsIT.java | 24 ----
.../camel/quarkus/component/ipfs/it/IpfsTest.java | 79 -------------
.../component/ipfs/it/IpfsTestResource.java | 54 ---------
tooling/scripts/validate-github-workflows.groovy | 2 +-
tooling/test-list/pom.xml | 1 -
21 files changed, 8 insertions(+), 1094 deletions(-)
delete mode 100644 extensions-jvm/weka/deployment/pom.xml
delete mode 100644
extensions-jvm/weka/deployment/src/main/java/org/apache/camel/quarkus/component/weka/deployment/WekaProcessor.java
delete mode 100644 extensions-jvm/weka/pom.xml
delete mode 100644 extensions-jvm/weka/runtime/pom.xml
delete mode 100644
extensions-jvm/weka/runtime/src/main/resources/META-INF/quarkus-extension.yaml
delete mode 100644 extensions/ipfs/deployment/pom.xml
delete mode 100644
extensions/ipfs/deployment/src/main/java/org/apache/camel/quarkus/component/ipfs/deployment/IpfsProcessor.java
delete mode 100644 extensions/ipfs/pom.xml
delete mode 100644 extensions/ipfs/runtime/pom.xml
delete mode 100644
extensions/ipfs/runtime/src/main/resources/META-INF/quarkus-extension.yaml
delete mode 100644 integration-tests-jvm/weka/pom.xml
delete mode 100644
integration-tests-jvm/weka/src/main/java/org/apache/camel/quarkus/component/weka/it/WekaResource.java
delete mode 100644
integration-tests-jvm/weka/src/test/java/org/apache/camel/quarkus/component/weka/it/WekaTest.java
delete mode 100644 integration-tests/ipfs/pom.xml
delete mode 100644
integration-tests/ipfs/src/main/java/org/apache/camel/quarkus/component/ipfs/it/IpfsResource.java
delete mode 100644
integration-tests/ipfs/src/test/java/org/apache/camel/quarkus/component/ipfs/it/IpfsIT.java
delete mode 100644
integration-tests/ipfs/src/test/java/org/apache/camel/quarkus/component/ipfs/it/IpfsTest.java
delete mode 100644
integration-tests/ipfs/src/test/java/org/apache/camel/quarkus/component/ipfs/it/IpfsTestResource.java