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 943f3c57f9 Upgrade Quarkus to 3.2.0.CR1 add 11650d6739 Added link to get started with Camel in general. add 2a09aed8db Upgrade Debezium to 2.2.0.Final add b481e4c203 Disable DebeziumMysqlIT & DebeziumSqlserverIT due to #4638 add 6da307d446 Updated CHANGELOG.md add 302945f053 Revert "Added link to get started with Camel in general." add 1a48ee7eae Bump quarkiverse-cxf.version from 2.0.4 to 2.1.0 add 015895029d Auto generated changes for dependabot commit 647cbfe1ac4ad5b048bdcaf669a5e07d73681087 add 671410db0a Revert "file: disabling idempotent test in order to experiment around flakiness #3584 (#4762)" add 8f72af5e8a Fix link to use xref for general getting started. add 4c1427edc5 Cxf-soap: Extend test coverage with Converter scenario #4652 add f4d17b3d26 Updated CHANGELOG.md add 0702cfe19a Bump quarkiverse-jsch.version from 3.0.0 to 3.0.1 (#4948) add 998b0f5b61 Fix broken formatting on the CXF extension page add 23df27d7ea Updated CHANGELOG.md add e48fe7a62b Bump quarkiverse-minio.version from 3.0.2 to 3.1.0.Final (#4952) add 1081f97a34 Updated CHANGELOG.md add d53fa4d3e8 Bump formatter-maven-plugin from 2.22.0 to 2.23.0 add 98a23c3834 Updated CHANGELOG.md add df13ea0cdd Regen SBOM from commit 98a23c3834c4164a767cfb3d2c6eedd9c17b7492 add da04acd1cf Updated CHANGELOG.md new 20f753d3b1 Upgrade Quarkus to 3.2.0.CR1 new 3f9a81749b Disable MyBatis testing due to #4945 new 6250e9c4ce Disable jta-jpa example testing due to #4945 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 (943f3c57f9) \ N -- N -- N refs/heads/quarkus-main (6250e9c4ce) 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 3 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/quarkus-master-cron.yaml | 1 + CHANGELOG.md | 12 + README.adoc | 2 + camel-quarkus-sbom/camel-quarkus-sbom.json | 971 ++++++++++++--------- camel-quarkus-sbom/camel-quarkus-sbom.xml | 895 ++++++++++--------- .../ROOT/pages/reference/extensions/cxf-soap.adoc | 19 +- docs/modules/ROOT/pages/user-guide/index.adoc | 2 + .../deployment/DebeziumSupportProcessor.java | 7 + .../cxf-soap/runtime/src/main/doc/usage.adoc | 19 +- .../cxf-soap/cxf-soap-converter}/pom.xml | 32 +- .../converter/it/CxfSoapConverterResource.java} | 21 +- .../soap/converter/it/CxfSoapConverterRoutes.java | 158 ++++ .../src/main/resources/application.properties | 5 +- .../src/main/resources/wsdl/person.wsdl | 196 +++++ .../cxf/soap/converter/it/CxfSoapConverterIT.java} | 4 +- .../soap/converter/it/CxfSoapConverterTest.java} | 25 +- integration-test-groups/cxf-soap/pom.xml | 1 + integration-tests/cxf-soap-grouped/pom.xml | 4 + integration-tests/debezium/pom.xml | 5 + .../common/it/AbstractDebeziumResource.java | 12 +- .../debezium/common/it/DebeziumMysqlResource.java | 4 +- .../common/it/DebeziumSqlserverResource.java | 8 +- .../it/mongodb/DebeziumMongodbTestResource.java | 45 +- .../debezium/common/it/mysql/DebeziumMysqlIT.java | 2 + .../common/it/sqlserver/DebeziumSqlserverIT.java | 2 + .../debezium/src/test/resources/initMongodb.txt | 2 +- .../camel/quarkus/component/file/it/FileTest.java | 2 - .../quarkus/component/mybatis/it/MyBatisIT.java | 2 + .../quarkus/component/mybatis/it/MyBatisTest.java | 2 + pom.xml | 12 +- poms/bom/src/main/generated/flattened-full-pom.xml | 881 ++++++++++--------- .../src/main/generated/flattened-reduced-pom.xml | 95 +- .../generated/flattened-reduced-verbose-pom.xml | 609 ++++++------- 33 files changed, 2354 insertions(+), 1703 deletions(-) copy {integration-tests/protobuf => integration-test-groups/cxf-soap/cxf-soap-converter}/pom.xml (86%) copy integration-test-groups/cxf-soap/{cxf-soap-ws-security-client/src/main/java/org/apache/camel/quarkus/component/cxf/soap/wss/client/it/CxfSoapWssClientResource.java => cxf-soap-converter/src/main/java/org/apache/camel/quarkus/component/cxf/soap/converter/it/CxfSoapConverterResource.java} (70%) create mode 100644 integration-test-groups/cxf-soap/cxf-soap-converter/src/main/java/org/apache/camel/quarkus/component/cxf/soap/converter/it/CxfSoapConverterRoutes.java copy integration-test-groups/cxf-soap/{cxf-soap-ws-security-client => cxf-soap-converter}/src/main/resources/application.properties (84%) create mode 100644 integration-test-groups/cxf-soap/cxf-soap-converter/src/main/resources/wsdl/person.wsdl copy integration-test-groups/{dataformats-json/json-gson/src/test/java/org/apache/camel/quarkus/component/dataformats/json/gson/GsonJsonIT.java => cxf-soap/cxf-soap-converter/src/test/java/org/apache/camel/quarkus/component/cxf/soap/converter/it/CxfSoapConverterIT.java} (88%) copy integration-test-groups/cxf-soap/{cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslTest.java => cxf-soap-converter/src/test/java/org/apache/camel/quarkus/component/cxf/soap/converter/it/CxfSoapConverterTest.java} (60%)