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

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


 discard 0ed7abe62f Disable microprofile-fault-tolerance tests due to #6851
 discard 868940bd4a Upgrade Quarkus to 3.18.0.CR1
     add fc1accc088 Bump quarkiverse-groovy.version from 3.17.1 to 3.17.2 
(#6865)
     add 23c44a38b2 Camel Quarkus 3.17.0 - changelog
     add 278b251fc1 Add test for AI service resolution by name #6866 (#6867)
     add 948358acfc Upgrade to quarkus 3.17.4
     add 7195804a29 Bump cq-plugin.version from 4.16.0 to 4.16.1 (#6870)
     add 4c7f55ba8e Regen SBOM from commit 
7195804a29fb0718d9bb89200d60d41dbaef99e8 (#6872)
     add 5dfe2f9a96 fixed typos in testing.adoc (#6873)
     add 3d013de6ce Bump io.swagger.codegen.v3:swagger-codegen-generators from 
1.0.54 to 1.0.55 (#6874)
     add 07cedadc95 Bump actions/upload-artifact from 4.4.3 to 4.5.0 (#6875)
     add 9395b25ff3 Bump actions/setup-java from 4.5.0 to 4.6.0 (#6876)
     add 78af34a8d8 langchain4j: fix documentation (#6877)
     add 91b3ca587a Fix #6720 to add camel-quarkus-fury (#6878)
     add df1ff5d080 Regen SBOM from commit 
91b3ca587a9573c9182e793878306f9ff3aa906a (#6879)
     add e2b80d128c Bump peter-evans/create-pull-request from 7.0.5 to 7.0.6 
(#6883)
     new 089305ee3d Upgrade Quarkus to 3.18.0.CR1
     new a1d759e95e Disable microprofile-fault-tolerance tests due to #6851

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   (0ed7abe62f)
            \
             N -- N -- N   refs/heads/quarkus-main (a1d759e95e)

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:
 .github/workflows/camel-master-cron.yaml           |    18 +-
 .github/workflows/ci-build.yaml                    |    20 +-
 .github/workflows/generate-sbom-main.yml           |     4 +-
 .github/workflows/pr-validate.yml                  |     2 +-
 .github/workflows/quarkus-master-cron.yaml         |    18 +-
 CHANGELOG.md                                       |    82 +
 camel-quarkus-sbom/camel-quarkus-sbom.json         | 10827 ++++++++++---------
 camel-quarkus-sbom/camel-quarkus-sbom.xml          | 10691 +++++++++---------
 catalog/pom.xml                                    |    13 +
 docs/antora.yml                                    |     2 +-
 .../examples/dataformats/{avro.yml => fury.yml}    |    16 +-
 docs/modules/ROOT/nav.adoc                         |     1 +
 .../reference/extensions/{atom.adoc => fury.adoc}  |    26 +-
 .../pages/reference/extensions/langchain4j.adoc    |     6 +-
 docs/modules/ROOT/pages/user-guide/testing.adoc    |     4 +-
 .../fury/deployment/pom.xml                        |    18 +-
 .../component/fury/deployment/FuryProcessor.java}  |     6 +-
 .../parent-pom.xml => extensions/fury/pom.xml      |     8 +-
 .../fury/runtime/pom.xml                           |    27 +-
 .../main/resources/META-INF/quarkus-extension.yaml |     6 +-
 .../runtime/src/main/doc/configuration.adoc        |     6 +-
 extensions/pom.xml                                 |     1 +
 integration-tests/{exec => fury}/pom.xml           |    17 +-
 .../quarkus/component/fury/it/FuryResource.java    |    39 +-
 .../quarkus/component/fury/it/FuryRoutes.java      |     9 +-
 .../camel/quarkus/component/fury/it/Pojo.java      |    10 +-
 .../camel/quarkus/component/fury/it/FuryIT.java    |     4 +-
 .../camel/quarkus/component/fury/it/FuryTest.java} |    33 +-
 ...Interface.java => AiServiceResolvedByName.java} |    14 +-
 .../langchain/it/LangChain4jResource.java          |     7 +
 .../component/langchain/it/LangChain4jRoute.java   |     3 +
 .../component/langchain4jit/LangChain4jTest.java   |    11 +
 integration-tests/pom.xml                          |     1 +
 pom.xml                                            |    19 +-
 poms/bom/pom.xml                                   |    37 +
 poms/bom/src/main/generated/flattened-full-pom.xml |    51 +-
 .../src/main/generated/flattened-reduced-pom.xml   |    51 +-
 .../generated/flattened-reduced-verbose-pom.xml    |    51 +-
 tooling/scripts/test-categories.yaml               |     1 +
 39 files changed, 11566 insertions(+), 10594 deletions(-)
 copy docs/modules/ROOT/examples/dataformats/{avro.yml => fury.yml} (53%)
 copy docs/modules/ROOT/pages/reference/extensions/{atom.adoc => fury.adoc} 
(56%)
 copy tooling/create-extension-templates/deployment-pom.xml => 
extensions/fury/deployment/pom.xml (79%)
 copy 
extensions/{amqp/deployment/src/main/java/org/apache/camel/quarkus/component/amqp/deployment/AmqpProcessor.java
 => 
fury/deployment/src/main/java/org/apache/camel/quarkus/component/fury/deployment/FuryProcessor.java}
 (88%)
 copy tooling/create-extension-templates/parent-pom.xml => 
extensions/fury/pom.xml (86%)
 copy tooling/create-extension-templates/runtime-pom.xml => 
extensions/fury/runtime/pom.xml (83%)
 copy {extensions-core/yaml-io => 
extensions/fury}/runtime/src/main/resources/META-INF/quarkus-extension.yaml 
(91%)
 copy integration-tests/{exec => fury}/pom.xml (89%)
 copy 
integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/java/org/apache/camel/quarkus/component/cxf/soap/wss/client/it/CxfSoapWssClientResource.java
 => 
integration-tests/fury/src/main/java/org/apache/camel/quarkus/component/fury/it/FuryResource.java
 (60%)
 copy 
tooling/perf-regression/cq-perf-regression-sample-base/src/main/java/org/apache/camel/quarkus/performance/regression/PerfRegressionSampleRouteBuilder.java
 => 
integration-tests/fury/src/main/java/org/apache/camel/quarkus/component/fury/it/FuryRoutes.java
 (82%)
 copy 
test-framework/junit5/src/test/java/org/apache/camel/quarkus/test/junit5/patterns/MySender.java
 => 
integration-tests/fury/src/main/java/org/apache/camel/quarkus/component/fury/it/Pojo.java
 (83%)
 copy 
integration-test-groups/foundation/bean/src/test/java/org/apache/camel/quarkus/component/bean/EipIT.java
 => 
integration-tests/fury/src/test/java/org/apache/camel/quarkus/component/fury/it/FuryIT.java
 (91%)
 copy 
integration-tests/{stax/src/test/java/org/apache/camel/quarkus/component/stax/it/StaxTest.java
 => 
fury/src/test/java/org/apache/camel/quarkus/component/fury/it/FuryTest.java} 
(66%)
 copy 
integration-tests/langchain4j/src/main/java/org/apache/camel/quarkus/component/langchain/it/{AiServiceResolvedByInterface.java
 => AiServiceResolvedByName.java} (76%)

Reply via email to