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 f259dc3df0 Disable kubernetes-client tests due to #6892 discard 5efaf6d78d Disable microprofile-fault-tolerance tests due to #6851 discard 07959f935a Upgrade Quarkus to 3.18.0.CR1 add 3644c9455f Upgrade Quarkus to 3.18.0.CR1 add 28932ccd15 Disable microprofile-fault-tolerance tests due to #6851 add 859a94669c Disable kubernetes-client tests due to #6892 add ded80818cb Disable postgres-debezium update & delete tests due to #6911 add afb12712d9 Upgrade Debezium to 3.0.7.Final add 049d05bc39 Langchain4j: remove useless dependency (#6915) add 3d58130e4b Fix usage of deprecated locale configuration add ba1c23cd6a Disable kubernetes-client dev services add bc181fa9b8 Fix #6905 to add a test for using artemis jca connector (#6906) add 675b14e60e Regen SBOM from commit bc181fa9b8ad9d22924b3d62e92e761cc4cd4de6 (#6918) add d66ff81ea8 fixes #6909 ssh: extend test coverage add ffc0be20a9 Minor updates to release guide sources dist promotion add 28b17cfdd8 Add changelog for 3.15.2 new a4e0635749 Upgrade Quarkus to 3.19.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 (f259dc3df0) \ N -- N -- N refs/heads/quarkus-main (a4e0635749) 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: CHANGELOG.md | 29 + camel-quarkus-sbom/camel-quarkus-sbom.json | 16067 ++++++++++--------- camel-quarkus-sbom/camel-quarkus-sbom.xml | 15173 ++++++++--------- docs/antora.yml | 2 +- .../pages/contributor-guide/release-guide.adoc | 7 +- .../ROOT/pages/reference/extensions/bindy.adoc | 23 +- .../modules/ROOT/pages/user-guide/native-mode.adoc | 14 +- .../bindy/runtime/src/main/doc/limitations.adoc | 23 +- .../KubernetesClusterServiceConfigDefaultTest.java | 1 + ...terServiceConfigEnabledWithRebalancingTest.java | 1 + ...terServiceConfigEnabledWithoutDefaultsTest.java | 1 + ...ServiceConfigEnabledWithoutRebalancingTest.java | 1 + .../component/ssh/deployment/SshProcessor.java | 29 +- .../ssh/runtime/SubstituteEdDSAEngine.java} | 44 +- .../ssh/runtime/SubstituteSecurityUtils.java | 65 - .../support/activemq/ActiveMQTestResource.java | 9 + .../messaging/it/MessagingCommonRoutes.java | 16 +- .../debezium/common/it/AbstractDebeziumTest.java | 3 + .../{jms-artemis-client => jms-artemis-ra}/pom.xml | 14 +- .../quarkus/component/jms/ra/it/JmsResource.java} | 8 +- .../src/main/resources/application.properties | 3 +- .../camel/quarkus/component/jms/ra/it/JmsRAIT.java | 5 +- .../quarkus/component/jms/ra/it/JmsRATest.java} | 20 +- integration-tests/langchain4j/pom.xml | 4 - .../src/main/resources/application.properties | 7 +- integration-tests/pom.xml | 1 + integration-tests/ssh/generate-certs.sh | 50 + integration-tests/ssh/pom.xml | 27 +- .../quarkus/component/ssh/it/SshResource.java | 93 +- .../camel/quarkus/component/ssh/it/SshRoutes.java | 81 + .../ssh}/src/main/resources/application.properties | 2 +- .../ssh/src/main/resources/edDSA/known_hosts | 1 + .../camel/quarkus/component/ssh/it/SshTest.java | 88 + .../quarkus/component/ssh/it/SshTestResource.java | 64 +- .../component/ssh/it/TestEchoCommandFactory.java | 117 + .../ssh/src/test/resources/edDSA/key_ed25519.pem | 7 + .../src/test/resources/edDSA/key_ed25519.pem.pub | 1 + pom.xml | 5 +- poms/bom/src/main/generated/flattened-full-pom.xml | 462 +- .../src/main/generated/flattened-reduced-pom.xml | 38 +- .../generated/flattened-reduced-verbose-pom.xml | 152 +- tooling/scripts/test-categories.yaml | 1 + 42 files changed, 17320 insertions(+), 15439 deletions(-) copy extensions/{nats/runtime/src/main/java/org/apache/camel/component/nats/graal/EdDSAEngineSubstitutions.java => ssh/runtime/src/main/java/org/apache/camel/quarkus/component/ssh/runtime/SubstituteEdDSAEngine.java} (71%) delete mode 100644 extensions/ssh/runtime/src/main/java/org/apache/camel/quarkus/component/ssh/runtime/SubstituteSecurityUtils.java copy integration-tests/{jms-artemis-client => jms-artemis-ra}/pom.xml (92%) copy integration-tests/{jms-qpid-amqp-client/src/main/java/org/apache/camel/quarkus/component/jms/qpid/it/QpidJmsResource.java => jms-artemis-ra/src/main/java/org/apache/camel/quarkus/component/jms/ra/it/JmsResource.java} (89%) copy {integration-test-groups/foundation/dataset => integration-tests/jms-artemis-ra}/src/main/resources/application.properties (95%) copy integration-test-groups/aws2/aws2-cw/src/test/java/org/apache/camel/quarkus/component/aws2/cw/it/Aws2CwIT.java => integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRAIT.java (90%) copy integration-tests/{jms-qpid-amqp-client/src/test/java/org/apache/camel/quarkus/component/jms/qpid/it/JmsQpidTest.java => jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRATest.java} (74%) create mode 100755 integration-tests/ssh/generate-certs.sh create mode 100644 integration-tests/ssh/src/main/java/org/apache/camel/quarkus/component/ssh/it/SshRoutes.java copy {integration-test-groups/foundation/dataset => integration-tests/ssh}/src/main/resources/application.properties (94%) create mode 100644 integration-tests/ssh/src/main/resources/edDSA/known_hosts create mode 100644 integration-tests/ssh/src/test/java/org/apache/camel/quarkus/component/ssh/it/TestEchoCommandFactory.java create mode 100644 integration-tests/ssh/src/test/resources/edDSA/key_ed25519.pem create mode 100644 integration-tests/ssh/src/test/resources/edDSA/key_ed25519.pem.pub