This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard 3abfec6 upgrade to camel 3.11.0-SNAPSHOT add 89174b1 fix typo add 977b28d Updated CHANGELOG.md add 19c3c42 Upgrade SmallRye Reactive Messaging Camel to 3.3.2 add c3fa3ff Add `@sync` tag to `smallrye.reactive.messaging.camel.version` property. add e3f7d33 Document usage of dashed query params with platform-http add fc97b40 fix camel-quarkus-jacksonxml:JsonView annotations take no effect in n… (#2682) add 440f5b9 Expanded Saxon test coverage with XPath saxon tests and fixed related native issues #2702 add a529aca Fix vertx-http SSL integration test add 0629a6b Updated CHANGELOG.md add da36044 demonstrate how to configure quarkus-jackson extension's own ObjectMapper instance and reuse it in our jackson test #2706 add 5d2ef77 address feedback 2 #2681 new 9e302d7 upgrade to camel 3.11.0-SNAPSHOT new b6d730b Adapt to latest camel API changes 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 (3abfec6) \ N -- N -- N refs/heads/camel-main (b6d730b) 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: CHANGELOG.md | 95 ++++++++++++---------- .../ROOT/pages/reference/extensions/rest.adoc | 34 ++++++++ .../jacksonxml/deployment/JacksonxmlProcessor.java | 27 ++++++ .../rest/runtime/src/main/doc/configuration.adoc | 34 ++++++++ .../component/saxon/deployment/SaxonProcessor.java | 6 ++ .../vertx/websocket/VertxWebsocketRecorder.java | 8 +- .../jackson/xml/JacksonXmlResource.java | 10 +-- .../dataformats/json/JsonDataformatsRoute.java | 10 ++- .../json/RegisterSnakeCaseCustomizer.java | 17 ++-- .../quarkus/component/http/it/HttpResource.java | 2 +- .../camel/quarkus/component/http/it/HttpRoute.java | 55 +++++++++++++ .../camel/quarkus/component/http/it/HttpTest.java | 4 +- .../component/saxon/it/SaxonXPathResource.java} | 37 ++++++--- .../component/saxon/it/SaxonXPathRoutes.java | 46 +++++++++++ ...SaxonResource.java => SaxonXQueryResource.java} | 2 +- .../{SaxonRoutes.java => SaxonXQueryRoutes.java} | 2 +- .../saxon/it/{SaxonIT.java => SaxonXPathIT.java} | 2 +- .../quarkus/component/saxon/it/SaxonXPathTest.java | 57 +++++++++++++ .../saxon/it/{SaxonIT.java => SaxonXQueryIT.java} | 2 +- .../it/{SaxonTest.java => SaxonXQueryTest.java} | 2 +- pom.xml | 4 +- 21 files changed, 372 insertions(+), 84 deletions(-) copy integration-test-groups/foundation/core-languages/src/main/java/org/apache/camel/quarkus/core/languages/it/ConstantLanguageRoutes.java => integration-tests/dataformats-json/src/main/java/org/apache/camel/quarkus/component/dataformats/json/RegisterSnakeCaseCustomizer.java (63%) copy integration-tests/{jing/src/main/java/org/apache/camel/quarkus/component/jing/it/JingResource.java => saxon/src/main/java/org/apache/camel/quarkus/component/saxon/it/SaxonXPathResource.java} (61%) create mode 100644 integration-tests/saxon/src/main/java/org/apache/camel/quarkus/component/saxon/it/SaxonXPathRoutes.java rename integration-tests/saxon/src/main/java/org/apache/camel/quarkus/component/saxon/it/{SaxonResource.java => SaxonXQueryResource.java} (98%) rename integration-tests/saxon/src/main/java/org/apache/camel/quarkus/component/saxon/it/{SaxonRoutes.java => SaxonXQueryRoutes.java} (97%) copy integration-tests/saxon/src/test/java/org/apache/camel/quarkus/component/saxon/it/{SaxonIT.java => SaxonXPathIT.java} (95%) create mode 100644 integration-tests/saxon/src/test/java/org/apache/camel/quarkus/component/saxon/it/SaxonXPathTest.java rename integration-tests/saxon/src/test/java/org/apache/camel/quarkus/component/saxon/it/{SaxonIT.java => SaxonXQueryIT.java} (95%) rename integration-tests/saxon/src/test/java/org/apache/camel/quarkus/component/saxon/it/{SaxonTest.java => SaxonXQueryTest.java} (99%)