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 c9aba5bfc8 Upgrade Quarkus to 3.11.0.CR1
add 155e9c1740 Add Wasm extension
new bb1e86540e Upgrade Quarkus to 3.11.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 (c9aba5bfc8)
\
N -- N -- N refs/heads/quarkus-main (bb1e86540e)
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:
docs/modules/ROOT/examples/components/wasm.yml | 13 ++
docs/modules/ROOT/examples/languages/wasm.yml | 13 ++
docs/modules/ROOT/nav.adoc | 1 +
.../ROOT/pages/reference/extensions/wasm.adoc | 64 ++++++++++
extensions/pom.xml | 1 +
.../{aws-bedrock => wasm}/deployment/pom.xml | 12 +-
.../component/wasm/deployment/WasmProcessor.java} | 13 +-
extensions/{qdrant => wasm}/pom.xml | 4 +-
extensions/{aws-bedrock => wasm}/runtime/pom.xml | 15 ++-
extensions/wasm/runtime/src/main/doc/usage.adoc | 13 ++
.../main/resources/META-INF/quarkus-extension.yaml | 8 +-
integration-tests/pom.xml | 1 +
integration-tests/wasm/README.adoc | 13 ++
integration-tests/{csv => wasm}/pom.xml | 19 +--
integration-tests/wasm/rust/Cargo.lock | 124 +++++++++++++++++++
.../wasm/rust/Cargo.toml | 33 ++---
.../wasm/rust/build.sh | 13 +-
integration-tests/wasm/rust/functions.rs | 134 +++++++++++++++++++++
.../quarkus/component/wasm/it/WasmResource.java | 67 +++++++++++
.../quarkus/component/wasm/it/WasmRoutes.java | 67 +++++++++++
.../src/main/resources/application.properties | 2 +-
.../src/main/resources/wasm/modules/functions.wasm | Bin 0 -> 2216042 bytes
.../camel/quarkus/component/wasm/it/WasmIT.java | 4 +-
.../camel/quarkus/component/wasm/it/WasmTest.java | 84 +++++++++++++
pom.xml | 3 +
poms/bom/pom.xml | 15 +++
poms/bom/src/main/generated/flattened-full-pom.xml | 15 +++
.../src/main/generated/flattened-reduced-pom.xml | 15 +++
.../generated/flattened-reduced-verbose-pom.xml | 15 +++
tooling/scripts/test-categories.yaml | 1 +
30 files changed, 730 insertions(+), 52 deletions(-)
create mode 100644 docs/modules/ROOT/examples/components/wasm.yml
create mode 100644 docs/modules/ROOT/examples/languages/wasm.yml
create mode 100644 docs/modules/ROOT/pages/reference/extensions/wasm.adoc
copy extensions/{aws-bedrock => wasm}/deployment/pom.xml (85%)
copy
extensions/{arangodb/deployment/src/main/java/org/apache/camel/quarkus/component/arangodb/deployment/ArangodbProcessor.java
=>
wasm/deployment/src/main/java/org/apache/camel/quarkus/component/wasm/deployment/WasmProcessor.java}
(71%)
copy extensions/{qdrant => wasm}/pom.xml (93%)
copy extensions/{aws-bedrock => wasm}/runtime/pom.xml (88%)
create mode 100644 extensions/wasm/runtime/src/main/doc/usage.adoc
copy extensions/{file =>
wasm}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (92%)
create mode 100644 integration-tests/wasm/README.adoc
copy integration-tests/{csv => wasm}/pom.xml (89%)
create mode 100644 integration-tests/wasm/rust/Cargo.lock
copy release-utils/scripts/sign.sh => integration-tests/wasm/rust/Cargo.toml
(70%)
mode change 100755 => 100644
copy docs/local-build.sh => integration-tests/wasm/rust/build.sh (79%)
create mode 100644 integration-tests/wasm/rust/functions.rs
create mode 100644
integration-tests/wasm/src/main/java/org/apache/camel/quarkus/component/wasm/it/WasmResource.java
create mode 100644
integration-tests/wasm/src/main/java/org/apache/camel/quarkus/component/wasm/it/WasmRoutes.java
copy integration-tests/{json-validator =>
wasm}/src/main/resources/application.properties (94%)
create mode 100755
integration-tests/wasm/src/main/resources/wasm/modules/functions.wasm
copy
integration-test-groups/foundation/bean/src/test/java/org/apache/camel/quarkus/component/bean/EipIT.java
=>
integration-tests/wasm/src/test/java/org/apache/camel/quarkus/component/wasm/it/WasmIT.java
(91%)
create mode 100644
integration-tests/wasm/src/test/java/org/apache/camel/quarkus/component/wasm/it/WasmTest.java