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

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


 discard 399add8d78 Regen
 discard 79f2085d5d Regen
 discard ededf27317 Upgrade Camel to 4.23.0-SNAPSHOT
 discard 73f12a641b Fixes #9142. Delegate langchain4j-ingest to the 
camel-langchain4j-ingest component
     add 93c8683ecc CAMEL-24290 - skip local installation when deploying 
snapshots on Jenkins
     add 196816f206 Add integration tests for paho-mqtt5 resubscribe failure 
after reconnect
     add b9d0eca470 Upgrade Camel to 4.22.1
     add 7494b1cfec Bump cq-plugin.version from 4.27.4 to 4.28.0
     add 87c6f470f4 Add changelog for 3.33.3
     add cd40729980 Upgrade Quarkus CXF to 3.40.0.CR1
     add 33faf6c3db Document TLS Registry usage for kafka
     add ddf703465c Restore virtual thread tests
     add c4d213cf3e Refine AI agent formatting rules
     add 2a5f7a2ab1 Regen SBOM from commit 
c4d213cf3ef6c25a5b3387af204f05c84ba93ed0 (#9196)
     new 0cd51a2136 Fixes #9142. Delegate langchain4j-ingest to the 
camel-langchain4j-ingest component
     new a589bc29a9 Upgrade Camel to 4.23.0-SNAPSHOT
     new 746efc1e67 Regen
     new f5eaf13315 Regen
     new fb38d2833c Regen after rebase

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   (399add8d78)
            \
             N -- N -- N   refs/heads/camel-main (fb38d2833c)

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 5 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:
 AGENTS.md                                          |    16 +-
 CHANGELOG.md                                       |    18 +
 Jenkinsfile                                        |     2 +-
 camel-quarkus-sbom/camel-quarkus-sbom.json         | 31025 ++++++++++---------
 camel-quarkus-sbom/camel-quarkus-sbom.xml          | 30521 +++++++++---------
 .../pages/reference/extensions/tls-registry.adoc   |    27 +
 .../tls-registry/runtime/src/main/doc/usage.adoc   |    26 +
 .../component/seda/it/SedaVirtualThreadsIT.java    |     2 -
 .../component/seda/it/SedaVirtualThreadsTest.java  |     4 +-
 integration-tests/paho-mqtt5/pom.xml               |     5 +
 .../component/paho/mqtt5/it/PahoMqtt5Route.java    |    19 +-
 .../component/paho/mqtt5/it/FaultyMqtt5Broker.java |   173 +
 ...tPahoContainer.java => InjectFaultyBroker.java} |     3 +-
 ....java => PahoMqtt5ResubscribeNoRecoveryIT.java} |     3 +-
 .../it/PahoMqtt5ResubscribeNoRecoveryTest.java     |    70 +
 ...IT.java => PahoMqtt5ResubscribeRecoveryIT.java} |     3 +-
 .../mqtt5/it/PahoMqtt5ResubscribeRecoveryTest.java |    75 +
 ...Profile.java => ResubscribeFailureProfile.java} |    16 +-
 .../mqtt5/it/ResubscribeFailureTestResource.java}  |    37 +-
 ...file.java => ResubscribeNoRecoveryProfile.java} |    17 +-
 .../it/ResubscribeNoRecoveryTestResource.java}     |    37 +-
 .../camel/quarkus/component/saga/it/SagaRoute.java |     2 -
 pom.xml                                            |     4 +-
 poms/bom/src/main/generated/flattened-full-pom.xml |    78 +-
 .../src/main/generated/flattened-reduced-pom.xml   |    78 +-
 .../generated/flattened-reduced-verbose-pom.xml    |    78 +-
 26 files changed, 31485 insertions(+), 30854 deletions(-)
 create mode 100644 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/FaultyMqtt5Broker.java
 copy 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/{InjectPahoContainer.java
 => InjectFaultyBroker.java} (96%)
 copy 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/{PahoMqtt5IT.java
 => PahoMqtt5ResubscribeNoRecoveryIT.java} (91%)
 create mode 100644 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/PahoMqtt5ResubscribeNoRecoveryTest.java
 copy 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/{PahoMqtt5IT.java
 => PahoMqtt5ResubscribeRecoveryIT.java} (92%)
 create mode 100644 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/PahoMqtt5ResubscribeRecoveryTest.java
 copy 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/{ReconnectProfile.java
 => ResubscribeFailureProfile.java} (77%)
 copy 
integration-tests/{netty/src/test/java/org/apache/camel/quarkus/component/netty/udp/NettyUdpTestResource.java
 => 
paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/ResubscribeFailureTestResource.java}
 (55%)
 copy 
integration-tests/paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/{ReconnectProfile.java
 => ResubscribeNoRecoveryProfile.java} (73%)
 copy 
integration-tests/{netty/src/test/java/org/apache/camel/quarkus/component/netty/udp/NettyUdpTestResource.java
 => 
paho-mqtt5/src/test/java/org/apache/camel/quarkus/component/paho/mqtt5/it/ResubscribeNoRecoveryTestResource.java}
 (55%)

Reply via email to