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 e1eaaaaca9 Upgrade Quarkus to 3.21.0.CR1 add f78011d22b Bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 add 95cfc1e226 Smb: extend coverage with test using path parameter add c3364644f9 Fix formatting for Jolokia expose-container-port config docs add 6db9c7bb78 Update Jolokia extension native since version to 3.20.0 add 0162e929ee Upgrade Quarkus to 3.19.2 add 88070370bc Adapt Kubernetes extension tests to updates in Camel 4.10.1 add 33b571b074 Remove reflective class configuration for Kubernetes vault configuration add ad40b40327 Add support for SimpleLanguageFunctionFactory add 519c10be33 Bump org.apache.maven.plugins:maven-compiler-plugin add 3546cf7a1d Bump org.jolokia:jolokia-agent-jvm from 2.2.3 to 2.2.4 add e3db2a5ed4 Add note about HTTP endpoint paths when using rest-openapi contract first add ea79564938 Disable FopTest on GitHub CI for Windows add a9ad59abae Verify expected json-validator error messages add 3a76807c1f Added azure-servicebus local testing add b16caad829 Fix Jolokia client-principal config code snippet new 8e4e71d60f Upgrade Quarkus to 3.21.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 (e1eaaaaca9) \ N -- N -- N refs/heads/quarkus-main (8e4e71d60f) 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: .github/workflows/ci-build.yaml | 6 - .github/workflows/generate-sbom-main.yml | 2 +- docs/antora.yml | 2 +- .../ROOT/pages/reference/extensions/jolokia.adoc | 8 +- .../pages/reference/extensions/rest-openapi.adoc | 13 ++ .../quarkus/core/deployment/CamelProcessor.java | 3 +- extensions/jolokia/runtime/pom.xml | 2 +- extensions/jolokia/runtime/src/main/doc/usage.adoc | 2 +- .../jolokia/config/JolokiaRuntimeConfig.java | 2 +- extensions/json-validator/deployment/pom.xml | 4 + .../deployment/JsonValidatorProcessor.java | 13 +- extensions/json-validator/runtime/pom.xml | 4 + .../kubernetes/deployment/KubernetesProcessor.java | 15 --- .../rest-openapi/runtime/src/main/doc/usage.adoc | 13 ++ .../azure/azure-servicebus/pom.xml | 5 + .../src/main/resources/application.properties | 3 + .../azure/servicebus/it/AzureServiceBusIT.java | 3 - .../azure/servicebus/it/AzureServiceBusTest.java | 26 +++- .../support/azure/AzureServiceBusTestResource.java | 120 +++++++++++++++++ .../src/main/resources/servicebus-config.json | 90 +++++++++++++ .../main/resources/servicebus-docker-compose.yaml | 41 ++++-- .../camel/quarkus/component/fop/it/FopTest.java | 9 ++ integration-tests/json-validator/pom.xml | 4 + .../json/validator/it/JsonValidatorResource.java | 68 ++++++++-- .../json/validator/it/JsonValidatorRoute.java | 10 +- .../json-validator/src/main/resources/schema.json | 3 +- .../json/validator/it/JsonValidatorTest.java | 51 +++++-- .../it/KubernetesConfigMapContextReloadIT.java | 6 +- .../it/KubernetesConfigMapContextReloadTest.java | 14 +- .../kubernetes/it/KubernetesConfigMapTest.java | 42 +++--- .../kubernetes/it/KubernetesDeploymentTest.java | 150 ++++++++++----------- .../kubernetes/it/KubernetesPodsTest.java | 3 - .../it/KubernetesSecretContextReloadIT.java | 2 - .../it/KubernetesSecretContextReloadTest.java | 20 ++- .../camel/quarkus/component/pdf/it/PdfTest.java | 9 ++ .../platform/http/it/PlatformHttpRouteBuilder.java | 3 + .../component/http/server/it/PlatformHttpTest.java | 13 ++ .../quarkus/component/smb/it/SmbResource.java | 19 ++- .../camel/quarkus/component/smb/it/SmbTest.java | 34 +++++ pom.xml | 8 +- poms/bom/src/main/generated/flattened-full-pom.xml | 2 +- .../src/main/generated/flattened-reduced-pom.xml | 2 +- .../generated/flattened-reduced-verbose-pom.xml | 2 +- 43 files changed, 638 insertions(+), 213 deletions(-) create mode 100644 integration-tests-support/azure/src/main/java/org/apache/camel/quarkus/test/support/azure/AzureServiceBusTestResource.java create mode 100644 integration-tests-support/azure/src/main/resources/servicebus-config.json copy .asf.yaml => integration-tests-support/azure/src/main/resources/servicebus-docker-compose.yaml (53%)