This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard e245b9723b Upgrade Quarkus to 3.22.0.CR1 discard 29d9e2fead Disable git integration tests due to #7257 add 9c5a516073 Update IBM MQ versions add f3745bb451 fixes #6771 DataFormat endpoints ignore camel.dataformat.* configuration properties add a1a1cd85e2 Use Pinecone emulator for integration testing new 6dd80c72c4 Disable git integration tests due to #7257 new 24b7d4d5fe Upgrade Quarkus to 3.22.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 (e245b9723b) \ N -- N -- N refs/heads/quarkus-main (24b7d4d5fe) 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 2 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: .../pages/reference/extensions/dataformat.adoc | 24 +++++++ .../dataformat/deployment/DataformatProcessor.java | 17 +++++ .../dataformat/CamelDataformatConfig.java | 30 ++++----- .../component/dataformat/DataformatRecorder.java | 77 ++++++++++++++++++++++ integration-tests/beanio/pom.xml | 17 +++++ .../component/beanio/it/BeanioResource.java | 47 +++++++------ .../quarkus/component/beanio/it/BeanioRoutes.java | 4 ++ .../quarkus/component/beanio/it/model/Person.java} | 25 ++++--- .../src/main/resources/application.properties | 6 +- .../beanio/src/main/resources/employee-mapping.xml | 12 ++++ .../quarkus/component/beanio/it/BeanioTest.java | 52 +++++++++++---- .../beanio/src/test/resources/employees-csv.txt | 2 +- .../src/test/resources/employees-delimited.txt | 2 +- .../src/test/resources/employees-fixedlength.txt | 2 +- .../src/test/resources/employees-with-error.txt | 2 +- .../beanio/src/test/resources/employees-xml.txt | 2 +- integration-tests/pinecone/pom.xml | 27 ++++++++ .../component/pinecone/it/PineconeResource.java | 31 ++------- .../component/pinecone/it/PineconeTest.java | 38 +++++------ .../pinecone/it/PineconeTestResource.java | 48 ++++++++++---- ...dexes-0cb5785f-987c-481d-b49a-51dac8cc4a5a.json | 29 -------- ...dexes-293cf644-849f-4860-809f-13278d509acb.json | 30 --------- ...dexes-5854cd4f-0384-40dd-bfa5-bf36592d3a9b.json | 33 ---------- ...index-92a8d520-01e3-48ae-89eb-1f51beed3276.json | 26 -------- pom.xml | 5 +- 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 +- 28 files changed, 344 insertions(+), 250 deletions(-) copy extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelRuntimeConfig.java => extensions/dataformat/runtime/src/main/java/org/apache/camel/quarkus/component/dataformat/CamelDataformatConfig.java (65%) create mode 100644 extensions/dataformat/runtime/src/main/java/org/apache/camel/quarkus/component/dataformat/DataformatRecorder.java copy integration-tests/{java-joor-dsl/src/main/resources/routes/MyUser.java => beanio/src/main/java/org/apache/camel/quarkus/component/beanio/it/model/Person.java} (84%) delete mode 100644 integration-tests/pinecone/src/test/resources/mappings/indexes-0cb5785f-987c-481d-b49a-51dac8cc4a5a.json delete mode 100644 integration-tests/pinecone/src/test/resources/mappings/indexes-293cf644-849f-4860-809f-13278d509acb.json delete mode 100644 integration-tests/pinecone/src/test/resources/mappings/indexes-5854cd4f-0384-40dd-bfa5-bf36592d3a9b.json delete mode 100644 integration-tests/pinecone/src/test/resources/mappings/indexes_test-index-92a8d520-01e3-48ae-89eb-1f51beed3276.json