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 211aa4bbb4 Disable groovy integration test native profile due to #7361 discard 4a80dc52f7 Upgrade Quarkus to 3.23.0.CR1 add 1fa9df2844 Run camel-quarkus-junit5 tests in the Quarkus Platform add fb757c36dd Remove redundant BaseMainSupport method overrides add 0bfeea21f5 Upgrade Quarkus to 3.23.0.CR1 add 848968fe69 Disable groovy integration test native profile due to #7361 add 4761e7d821 Do not exclude findbugs from wss4j-ws-security-common in the BOM because it transitively depends on quarkus-grpc-common that requires it at runtime add 33550fef09 Bump io.quarkiverse.amazonservices:quarkus-amazon-services-bom from 3.5.0 to 3.6.1 add 66ff4b18c3 Improve handling of findSingleByType where multiple beans exist without any @Default qualifier new 96fb97d857 Upgrade Quarkus to 3.24.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 (211aa4bbb4) \ N -- N -- N refs/heads/quarkus-main (96fb97d857) 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: docs/antora.yml | 2 +- .../core/runtime/CamelBeanPrecedenceTest.java | 172 ++ .../quarkus/core/runtime/CamelPrecedeBeanTest.java | 70 - .../camel/quarkus/core/RuntimeBeanRepository.java | 75 +- .../org/apache/camel/quarkus/main/CamelMain.java | 26 - .../component/jpa/deployment/JpaProcessor.java | 52 + .../quarkus/component/jpa/it/JpaResource.java | 35 + .../camel/quarkus/component/jpa/it/JpaRoute.java | 2 + .../jpa/src/main/resources/application.properties | 33 +- ...efaultAndExplicitEntityManagerFactoryTest.java} | 35 +- ...JpaMultipleNamedResourcesWithNoDefaultTest.java | 23 +- .../JpaSingleNamedResourceWithNoDefaultTest.java} | 22 +- .../quarkus/component/sql/it/SqlDbInitializer.java | 2 + .../quarkus/component/sql/it/SqlResource.java | 2 + .../camel/quarkus/component/sql/it/SqlRoutes.java | 2 + .../sql/it/datasource/SqlDataSourceResource.java | 64 + .../sql/src/main/resources/application.properties | 19 +- ...SqlMultipleNamedDatasourceWithDefaultTest.java} | 44 +- ...lMultipleNamedDatasourceWithNoDefaultTest.java} | 43 +- pom.xml | 6 +- poms/bom/pom.xml | 6 +- poms/bom/src/main/generated/flattened-full-pom.xml | 2683 ++++++++++---------- .../src/main/generated/flattened-reduced-pom.xml | 124 +- .../generated/flattened-reduced-verbose-pom.xml | 344 ++- test-framework/junit5/pom.xml | 12 +- tooling/test-list/pom.xml | 6 + 26 files changed, 2103 insertions(+), 1801 deletions(-) create mode 100644 extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/runtime/CamelBeanPrecedenceTest.java delete mode 100644 extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/runtime/CamelPrecedeBeanTest.java copy integration-tests/{jolokia/src/test/java/org/apache/camel/quarkus/component/jolokia/it/JolokiaAdditionalPropertiesTest.java => jpa/src/test/java/org/apache/camel/quarkus/component/jpa/it/JpaMultipleNamedResourcesWithNoDefaultAndExplicitEntityManagerFactoryTest.java} (59%) copy integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslTest.java => integration-tests/jpa/src/test/java/org/apache/camel/quarkus/component/jpa/it/JpaMultipleNamedResourcesWithNoDefaultTest.java (62%) copy integration-tests/{jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptConfigurationCustomizerTest.java => jpa/src/test/java/org/apache/camel/quarkus/component/jpa/it/JpaSingleNamedResourceWithNoDefaultTest.java} (65%) create mode 100644 integration-tests/sql/src/main/java/org/apache/camel/quarkus/component/sql/it/datasource/SqlDataSourceResource.java copy integration-tests/{jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis/it/JmsArtemisXATest.java => sql/src/test/java/org/apache/camel/quarkus/component/sql/it/SqlMultipleNamedDatasourceWithDefaultTest.java} (56%) copy integration-tests/{jolokia/src/test/java/org/apache/camel/quarkus/component/jolokia/it/JolokiaDiscoveryDisabledTest.java => sql/src/test/java/org/apache/camel/quarkus/component/sql/it/SqlMultipleNamedDatasourceWithNoDefaultTest.java} (53%)