This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot_sbom in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
omit a9b7a9db8f Regen SBOM from commit 2d8aa0c2f758885c0395ad0bd9ea9e546d52b944 add db26b51edc Regen SBOM from commit 2d8aa0c2f758885c0395ad0bd9ea9e546d52b944 (#7329) add c223b07f45 Add changelog for 3.20.1 add 6a1134dd20 Simplify running SQL test against external database servers add 472b5c0391 fixes #7337: add ignore option also for service bus test add a265768914 fixes #7335 EdDSA test should be disabled on RHEL8 in native add 3127bf433d Fix dependency convergence error io.opentelemetry:opentelemetry-semconv add c42ebd59d6 Bump quarkiverse-minio.version from 3.8.1 to 3.8.3 add 4f8b7de56e Test CamelQuarkusTestSupport in the Quarkus Platform add ac20afcc76 Add GitHub workflow to perform dependency convergence checks add 3329c3ab9c Rework CallbackUtil.MockExtensionContext to not implement JUnit ExtensionContext add 958d8cb055 Regen SBOM from commit 3329c3ab9c4680f5b7b0d7465ae4cd5db609aa5e 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 (a9b7a9db8f) \ N -- N -- N refs/heads/regen_bot_sbom (958d8cb055) 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. No new revisions were added by this update. Summary of changes: .github/workflows/check-dependency-convergence.yml | 177 +++++++++++++++++++++ .github/workflows/ci-build.yaml | 1 + .github/workflows/pr-validate.yml | 1 + CHANGELOG.md | 24 +++ camel-quarkus-sbom/camel-quarkus-sbom.json | 94 +++++------ camel-quarkus-sbom/camel-quarkus-sbom.xml | 92 +++++------ .../ROOT/pages/reference/extensions/ssh.adoc | 13 ++ .../ssh/runtime/src/main/doc/limitations.adoc | 6 + .../azure/servicebus/it/AzureServiceBusHelper.java | 7 + .../apache/camel/quarkus/test/DisabledOnRhel.java | 6 +- .../quarkus/test/DisabledOnRhelCondition.java | 32 ++-- .../quarkus/test/DisabledOnRhelConditionTest.java | 30 ++-- integration-tests/sql/README.adoc | 73 ++++----- .../component/sql/it/SqlConfigSourceFactory.java | 63 -------- .../camel/quarkus/component/sql/it/SqlHelper.java | 12 +- .../io.smallrye.config.ConfigSourceFactory | 1 - .../camel/quarkus/component/ssh/it/SshTest.java | 2 + pom.xml | 3 +- poms/bom/pom.xml | 5 + poms/bom/src/main/generated/flattened-full-pom.xml | 18 +-- .../src/main/generated/flattened-reduced-pom.xml | 9 +- .../generated/flattened-reduced-verbose-pom.xml | 9 +- test-framework/junit5-extension-tests/pom.xml | 16 ++ .../camel/quarkus/test/AfterAllCallback.java | 6 +- .../camel/quarkus/test/BeforeEachCallback.java | 4 +- .../apache/camel/quarkus/test/CallbackUtil.java | 108 +------------ .../quarkus/test/CamelQuarkusTestSupport.java | 7 +- tooling/scripts/create-superapp.groovy | 97 +++++++++++ tooling/test-list/pom.xml | 6 + 29 files changed, 551 insertions(+), 371 deletions(-) create mode 100644 .github/workflows/check-dependency-convergence.yml create mode 100644 extensions/ssh/runtime/src/main/doc/limitations.adoc delete mode 100644 integration-tests/sql/src/main/java/org/apache/camel/quarkus/component/sql/it/SqlConfigSourceFactory.java delete mode 100644 integration-tests/sql/src/main/resources/META-INF/services/io.smallrye.config.ConfigSourceFactory create mode 100644 tooling/scripts/create-superapp.groovy