This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard 2fc078f Upgrade to Quarkus 1.9.0 - WIP add 81d6094 Updated CHANGELOG.md add cc3e28b Fix SSH itest name add 8d7691d Make sure that Telegram tests are not run against mock API by setting CAMEL_QUARKUS_START_MOCK_BACKEND=false #1717 add fa37a04 Document allowContextMapAll native mode limitations add 2d6a816 Tidy up pom.xml files add 00cd740 platform-http: handle requests using a thread from the worker pool new 9005c2d Upgrade to Quarkus 1.9.0 - WIP 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 (2fc078f) \ N -- N -- N refs/heads/quarkus-master (9005c2d) 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: CHANGELOG.md | 6 +- .../ROOT/pages/reference/extensions/jolt.adoc | 5 + .../pages/reference/extensions/json-validator.adoc | 5 + .../ROOT/pages/reference/extensions/mustache.adoc | 5 + .../ROOT/pages/reference/extensions/qute.adoc | 9 + .../pages/reference/extensions/stringtemplate.adoc | 11 +- .../ROOT/pages/reference/extensions/velocity.adoc | 11 +- .../http/runtime/QuarkusPlatformHttpConsumer.java | 261 ++++++++++++--------- .../qute/runtime/src/main/doc/limitations.adoc | 5 + .../runtime/src/main/doc/limitations.adoc | 6 - .../velocity/runtime/src/main/doc/limitations.adoc | 6 - .../mock-backend}/pom.xml | 33 +-- .../test/mock/backend/MockBackendUtils.java | 47 ++++ integration-tests-support/pom.xml | 1 + integration-tests/ssh/pom.xml | 2 +- integration-tests/telegram/README.adoc | 12 +- integration-tests/telegram/pom.xml | 4 + .../component/telegram/it/TelegramRoutes.java | 79 +++++-- .../src/main/resources/application.properties | 11 +- .../quarkus/component/telegram/it/TelegramIT.java | 2 - .../component/telegram/it/TelegramTest.java | 2 - pom.xml | 53 +++-- poms/bom-test/pom.xml | 5 + poms/build-parent/pom.xml | 7 +- .../quarkus/maven/UpdateExtensionDocPageMojo.java | 25 ++ .../doc-templates/extension-doc-page.adoc | 7 + 26 files changed, 414 insertions(+), 206 deletions(-) create mode 100644 extensions/qute/runtime/src/main/doc/limitations.adoc delete mode 100644 extensions/stringtemplate/runtime/src/main/doc/limitations.adoc delete mode 100644 extensions/velocity/runtime/src/main/doc/limitations.adoc copy {extensions/smallrye-reactive-messaging => integration-tests-support/mock-backend}/pom.xml (61%) create mode 100644 integration-tests-support/mock-backend/src/main/java/org/apache/camel/quarkus/test/mock/backend/MockBackendUtils.java