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 b01e7341eb Upgrade Quarkus to 3.11.0.CR1 add 9a5e6238a5 Fix nightly CI workflow alternate JDK steps add dcf1b29fac Create Milvus Extension (#6020) add 63d8221390 Fixup Milvus JVM only state add 9a946aee6f Removed Qdrant leftover test in JVM Integration tests add 653e532e9a Bump quarkiverse-groovy.version from 3.9.1 to 3.9.3 add d5334adcf0 JT400 tests can not be run in parallel #6018 add c53bbd085f Make Jasypt SmallRye Config integration operate only on runtime properties add f9ad836ac8 Activate format profile as part of CI checks add d4f319e236 Clean up leftovers from MicroProfile Fault Tolerance disablement add 9d3bce3d4c Jt400: possible missing resource in the native add 9be20b7862 Fix AsciiDoc attribute substitution in MapStruct and Jasypt documentation add 17308467ed Upgrade Quarkus to 3.10.0 add e3d3caaa6d Remove workaround for Google BigQuery host resolution add 94422de0cf Upgrade to Quarkus CXF 3.10.0 add 0a7cb4b3b1 Exclude faulttolerance package from MicroProfile integration test module javadoc new 0a2c0b4ba8 Upgrade Quarkus to 3.11.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 (b01e7341eb) \ N -- N -- N refs/heads/quarkus-main (0a2c0b4ba8) 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/camel-master-cron.yaml | 29 +- .github/workflows/ci-build.yaml | 5 +- .github/workflows/quarkus-master-cron.yaml | 29 +- catalog/pom.xml | 26 + docs/antora.yml | 2 +- docs/modules/ROOT/examples/components/milvus.yml | 13 + docs/modules/ROOT/nav.adoc | 1 + .../ROOT/pages/reference/extensions/jasypt.adoc | 2 +- .../ROOT/pages/reference/extensions/mapstruct.adoc | 4 +- .../{langchain-embeddings.adoc => milvus.adoc} | 18 +- .../milvus}/deployment/pom.xml | 8 +- .../milvus/deployment/MilvusProcessor.java | 7 +- .../{langchain-embeddings => milvus}/pom.xml | 4 +- .../runtime/pom.xml | 10 +- .../main/resources/META-INF/quarkus-extension.yaml | 6 +- extensions-jvm/pom.xml | 1 + .../jasypt/deployment/JasyptProcessor.java | 32 +- .../quarkus/component/jasypt/JasyptDevUITest.java | 2 - extensions/jasypt/runtime/src/main/doc/usage.adoc | 2 +- .../CamelJasyptConfigSourceInterceptorFactory.java | 9 +- .../component/jasypt/CamelJasyptRecorder.java | 17 +- ...r.java => CamelJasyptRuntimeConfigBuilder.java} | 11 +- .../CamelJasyptSecretKeysHandlerFactory.java | 14 +- ....smallrye.config.ConfigSourceInterceptorFactory | 1 - .../io.smallrye.config.SecretKeysHandlerFactory | 1 - .../component/jt400/deployment/Jt400Processor.java | 14 + .../mapstruct/runtime/src/main/doc/usage.adoc | 4 +- .../jslt => integration-tests-jvm/milvus}/pom.xml | 14 +- .../component/milvus/it/MilvusResource.java} | 20 +- .../quarkus/component/milvus/it/MilvusIT.java | 4 +- .../quarkus/component/milvus/it/MilvusTest.java} | 8 +- integration-tests-jvm/pom.xml | 1 + .../quarkus/component/qdrant/it/QdrantTest.java | 34 - integration-tests/foundation-grouped/pom.xml | 13 - .../spi/v2/CustomHostCapableHttpBigQueryRpc.java | 905 --------------------- .../google/bigquery/it/GoogleBigqueryResource.java | 13 +- integration-tests/jasypt/pom.xml | 9 - .../jasypt/it/JasyptSecureExtensionConfigTest.java | 9 - .../it/JasyptSecureExtensionConfigTestProfile.java | 8 - .../jt400/mocked/it/Jt400MockResource.java | 13 + .../component/jt400/mocked/Jt400MockTest.java | 15 + integration-tests/jt400/README.adoc | 47 +- .../quarkus/component/jt400/it/Jt400Resource.java | 17 +- .../src/main/resources/application.properties | 10 +- .../quarkus/component/jt400/it/Jt400Test.java | 63 +- .../component/jt400/it/Jt400TestResource.java | 306 +++---- integration-tests/main-xml-jaxb/pom.xml | 15 +- integration-tests/microprofile/pom.xml | 20 +- pom.xml | 13 +- poms/bom/pom.xml | 36 +- poms/bom/src/main/generated/flattened-full-pom.xml | 768 ++++++++--------- .../src/main/generated/flattened-reduced-pom.xml | 108 ++- .../generated/flattened-reduced-verbose-pom.xml | 606 +++++++------- 53 files changed, 1271 insertions(+), 2076 deletions(-) create mode 100644 docs/modules/ROOT/examples/components/milvus.yml copy docs/modules/ROOT/pages/reference/extensions/{langchain-embeddings.adoc => milvus.adoc} (61%) copy {extensions/aws-bedrock => extensions-jvm/milvus}/deployment/pom.xml (89%) copy extensions/csv/deployment/src/main/java/org/apache/camel/quarkus/component/csv/deployment/CsvProcessor.java => extensions-jvm/milvus/deployment/src/main/java/org/apache/camel/quarkus/component/milvus/deployment/MilvusProcessor.java (87%) copy extensions-jvm/{langchain-embeddings => milvus}/pom.xml (92%) copy extensions-jvm/{langchain-embeddings => milvus}/runtime/pom.xml (91%) copy extensions-jvm/{chatscript => milvus}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (91%) copy extensions/jasypt/runtime/src/main/java/org/apache/camel/quarkus/component/jasypt/{JasyptConfigurationCustomizer.java => CamelJasyptRuntimeConfigBuilder.java} (64%) delete mode 100644 extensions/jasypt/runtime/src/main/resources/META-INF/services/io.smallrye.config.ConfigSourceInterceptorFactory delete mode 100644 extensions/jasypt/runtime/src/main/resources/META-INF/services/io.smallrye.config.SecretKeysHandlerFactory copy {integration-tests/jslt => integration-tests-jvm/milvus}/pom.xml (87%) copy integration-tests-jvm/{bonita/src/main/java/org/apache/camel/quarkus/component/bonita/it/BonitaResource.java => milvus/src/main/java/org/apache/camel/quarkus/component/milvus/it/MilvusResource.java} (75%) copy integration-test-groups/foundation/browse/src/test/java/org/apache/camel/quarkus/component/browse/it/BrowseIT.java => integration-tests-jvm/milvus/src/test/java/org/apache/camel/quarkus/component/milvus/it/MilvusIT.java (90%) copy integration-tests-jvm/{bonita/src/test/java/org/apache/camel/quarkus/component/bonita/it/BonitaTest.java => milvus/src/test/java/org/apache/camel/quarkus/component/milvus/it/MilvusTest.java} (86%) delete mode 100644 integration-tests-jvm/qdrant/src/test/java/org/apache/camel/quarkus/component/qdrant/it/QdrantTest.java delete mode 100644 integration-tests/google-bigquery/src/main/java/com/google/cloud/bigquery/spi/v2/CustomHostCapableHttpBigQueryRpc.java