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 fe6965ae96 Disable microprofile-fault-tolerance integration test 
native profile due to #6584
 discard 7b9cd43a15 Disable git native profile due to #6559
 discard 63c743f036 Disable UpdateExtensionDocPageMojo due to #6418
 discard 3f9ce7ef2e Upgrade Quarkus to 3.16.0.CR1
     add 8c3b0f7c56 Remove incorrect assumptions about kamelets-catalog 
dependency scope from the extension documentation
     add 1cc04ab793 Fix build time processing of Kamelets with bean definitions
     add dd6e3893a2 Upgrade Debezium to 3.0.0.Final
     add 067fa18517 Upgrade quarkus-jackson-jq to 2.1.0
     add 931c3111fd Upgrade to Quarkus CXF 3.15.2
     add b317af5251 Rely on quarkus-cxf-bom for managing httpclient5
     add e130fdb11d Bump cq-plugin.version from 4.12.0 to 4.13.0
     add 708b9a4f83 Mark .wasm files as binary in .gitattributes
     add 5ef59a3baa Bump actions/cache from 4.0.2 to 4.1.0
     add f63a58b117 Regen SBOM from commit 
5ef59a3baa80d02c94f6d6f2d688079cf9b2e717 (#6600)
     add dffa968320 Move swagger-codegen dependencies to rest-openapi 
deployment module
     add f9a98e9d98 Add tests for context reloading
     add 4941fdd373 Bump actions/checkout from 4.2.0 to 4.2.1 (#6605)
     add 1b27d53a85 Bump actions/upload-artifact from 4.4.0 to 4.4.1 (#6606)
     add 55128680fb Bump maven-surefire-plugin.version from 3.5.0 to 3.5.1 
(#6607)
     add 337109d742 Link to Camel 4.8.x documentation
     new 522c9919ff Upgrade Quarkus to 3.16.0.CR1
     new 6623b8b84c Disable UpdateExtensionDocPageMojo due to #6418
     new b3684cb707 Disable git native profile due to #6559
     new 1fea0c22b2 Disable microprofile-fault-tolerance integration test 
native profile due to #6584

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   (fe6965ae96)
            \
             N -- N -- N   refs/heads/quarkus-main (1fea0c22b2)

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 4 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:
 .gitattributes                                     |    1 +
 .github/workflows/camel-master-cron.yaml           |   18 +-
 .github/workflows/ci-build.yaml                    |   22 +-
 .github/workflows/generate-sbom-main.yml           |    2 +-
 .github/workflows/label-issue.yaml                 |    2 +-
 .github/workflows/pr-validate.yml                  |    2 +-
 .github/workflows/quarkus-master-cron.yaml         |   18 +-
 .../workflows/synchronize-dependabot-branch.yaml   |    2 +-
 camel-quarkus-sbom/camel-quarkus-sbom.json         | 1861 ++++++++++----------
 camel-quarkus-sbom/camel-quarkus-sbom.xml          | 1531 ++++++++--------
 docs/antora.yml                                    |    4 +-
 .../ROOT/pages/reference/extensions/kamelet.adoc   |   12 +-
 .../pages/reference/extensions/rest-openapi.adoc   |    7 +-
 extensions-support/swagger/runtime/pom.xml         |    8 -
 .../runtime/graal/SwaggerSubstitutions.java        |   27 +-
 extensions/jq/runtime/pom.xml                      |    4 -
 .../kamelet/deployment/KameletProcessor.java       |   30 +-
 extensions/kamelet/runtime/src/main/doc/usage.adoc |   10 +-
 .../quarkus/component/kamelet/KameletRecorder.java |    7 +
 extensions/rest-openapi/deployment/pom.xml         |    8 +
 integration-tests/kamelet/pom.xml                  |   17 +
 .../quarkus/component/kamelet/it/KameletBean.java} |   11 +-
 .../component/kamelet/it/KameletResource.java      |    6 +
 .../component/kamelet/it/KameletRoutes.java        |    3 +
 .../src/main/resources/application.properties      |    2 +-
 ...injector.kamelet.yaml => greeting.kamelet.yaml} |   35 +-
 .../quarkus/component/kamelet/it/KameletTest.java  |   12 +-
 integration-tests/main/pom.xml                     |    5 +
 .../camel/quarkus/main/ContextReloadObserver.java} |   22 +-
 .../camel/quarkus/main/CoreMainResource.java       |   28 +
 .../main/{CoreMainIT.java => ContextReloadIT.java} |    2 +-
 .../camel/quarkus/main/ContextReloadTest.java      |   63 +
 pom.xml                                            |   14 +-
 poms/bom/pom.xml                                   |   10 -
 poms/bom/src/main/generated/flattened-full-pom.xml | 1047 ++++++-----
 .../src/main/generated/flattened-reduced-pom.xml   |  117 +-
 .../generated/flattened-reduced-verbose-pom.xml    |  733 ++++----
 37 files changed, 2885 insertions(+), 2818 deletions(-)
 copy 
integration-tests/kamelet/src/{test/java/org/apache/camel/quarkus/component/kamelet/it/KameletIT.java
 => main/java/org/apache/camel/quarkus/component/kamelet/it/KameletBean.java} 
(80%)
 copy 
integration-tests/kamelet/src/main/resources/kamelets/{injector.kamelet.yaml => 
greeting.kamelet.yaml} (63%)
 copy 
integration-tests/{main-yaml/src/main/java/org/apache/camel/quarkus/main/GreetingBean.java
 => 
main/src/main/java/org/apache/camel/quarkus/main/ContextReloadObserver.java} 
(67%)
 copy 
integration-tests/main/src/test/java/org/apache/camel/quarkus/main/{CoreMainIT.java
 => ContextReloadIT.java} (94%)
 create mode 100644 
integration-tests/main/src/test/java/org/apache/camel/quarkus/main/ContextReloadTest.java

Reply via email to