You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2023/10/18 07:31:38 UTC

[camel] branch regen_bot_40x updated (bfb3e31954e -> 330cbfc42d3)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_40x
in repository https://gitbox.apache.org/repos/asf/camel.git


    from bfb3e31954e CAMEL-19689: camel-jbang - Load classpath resources that have src/main/resources as prefix.
     add 2e246758916 CAMEL-19998: move several internal APIs to the CamelContext extension
     add 1d6c3ac4bd6 Upgrade AWS SDK v2 to version 2.21.1 (#11735)
     add 4fce7339c98 Upgrade Kubernetes Client to version 6.9.0 (#11737)
     add f2f084c9407 CAMEL-19998: cleanup type converter APIs
     add 998c8fa4152 CAMEL-19998: use the wrapper method to stop the registry
     add 194c7f6ae87 CAMEL-19998: cleanup injector API
     add 76db106418e CAMEL-19998: cleanup route controller API
     add 8504874a173 CAMEL-19998: cleanup shutdown strategy API
     add 29566baad54 CAMEL-19998: cleanup executor service manager API
     add 87278e71781 (chores) camel-core: minor cleanup in the shutdown strategy
     add 0b61318e300 CAMEL-19973 - Camel-AWS components: Revisit description - DynamoDB component (#11740)
     add 33585c61b57 CAMEL-19998: cleanup executor startup step recorder API
     add 6d2d0c31c89 CAMEL-19998: hide route startup order count
     add be5b9764703 CAMEL-19998: reduce coupling between CamelContext and the InternalServiceManager
     add 73db0391a6f CAMEL-19998: reduce coupling between CamelContext and the InternalRouteStartupManager
     add fb21cbd87ac CAMEL-19994: camel-platform-http-vertx - Allow access to vertx request object. Add support for pooled exchange like we have in other http components. (#11739)
     add 9f372bc7493 Upgrade undertow 2.3.10 (#11746)
     add 669dd05e47c Upgrade to log4j 2.21.0 (#11747)
     add 330cbfc42d3 Update known camel releases

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/releases/camel-releases.json     |   5 +
 components/camel-aws/camel-aws2-ddb/pom.xml        |   2 +-
 .../services/org/apache/camel/component.properties |   2 +-
 .../client/ConfigFluentImplConfigurer.java         |   6 +
 components/camel-platform-http-vertx/pom.xml       |   6 +
 .../src/main/docs/platform-http-vertx.adoc         |  20 +
 .../component/platform/http/vertx/HttpMessage.java |  66 ++++
 .../http/vertx/VertxPlatformHttpConsumer.java      |  16 +-
 .../http/vertx/VertxPlatformHttpEngineTest.java    |  30 ++
 .../vertx/VertxPlatformHttpPooledExchangeTest.java | 126 +++++++
 .../camel/impl/engine/AbstractCamelContext.java    | 351 ++++++------------
 .../impl/engine/DefaultCamelContextExtension.java  | 401 ++++++++++++++++++++-
 .../camel/impl/engine/DefaultShutdownStrategy.java |  14 +-
 .../impl/engine/InternalRouteStartupManager.java   | 123 ++++---
 .../camel/impl/engine/InternalServiceManager.java  |  31 +-
 .../DefaultCamelContextSuspendResumeRouteTest.java |   7 +-
 parent/pom.xml                                     |   8 +-
 17 files changed, 867 insertions(+), 347 deletions(-)
 create mode 100644 components/camel-platform-http-vertx/src/main/java/org/apache/camel/component/platform/http/vertx/HttpMessage.java
 create mode 100644 components/camel-platform-http-vertx/src/test/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpPooledExchangeTest.java