This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch fix/CAMEL-24863
in repository https://gitbox.apache.org/repos/asf/camel.git
from d0f1bf976ac8 Merge remote-tracking branch 'origin/main' into
fix/CAMEL-24863
add 68c2099b15e3 chore(camel-test-infra-hashicorp-vault): upgrade
hashicorp.vault.container to 2.1.1
add 32aa2ed434d9 chore(deps): Bump com.aliyun:eventbridge20200401 in the
aliyun group
add 36ace1d9ac53 chore(camel-test-infra-aws-v2): upgrade aws.container to
2.1.0
add b6b183ea508c chore(camel-test-infra-jaeger): upgrade jaeger.container
to 2.21.0
add 8f2761ee7b84 chore(camel-test-infra-keycloak): upgrade
keycloak.container to 26.7.4
add 5aa67767a11c chore(camel-test-infra-milvus): upgrade milvus.container
to v2.6.24
add 6b8cfd76736c chore(camel-test-infra-couchdb): upgrade
couchdb.container to 3.5.2
add d1211fcb3500 chore(deps): Bump
org.elasticsearch.client:elasticsearch-rest-client-sniffer
add 5c20bbd37f05 Replace deprecated methods in vertx platform
add 0d5c39a20e55 CAMEL-24864: camel-platform-http-vertx: do not report a
lost client connection as a failure
add aa8a5fa06a69 chore(deps): Bump aws-java-sdk2-version from 2.54.18 to
2.55.0
add 7f20c8e51526 Regen
add e1da8e764e7c CAMEL-24862: the recursive file watcher watches
directories created while it runs, and ignores the compile work directory
add 869bfbc4cf6b CAMEL-24866: camel-support - route reload fails with
duplicate route id when a new file is added next to a file with several routes
add 6edffdd14288 CAMEL-24867: camel-jbang-mcp - expose the sql,
datasource, circuit breaker, metrics, spans, EIP stats, startup and route
analysis runtime tools
add dc32b43a80fb CAMEL-24855: the file consumer says at INFO when it
creates the starting directory it consumes from
add 5b9cf8ffd139 CAMEL-24857, CAMEL-24858, CAMEL-24859: two validator rows
and the reload outcome in camel_write_file, from the stepwise benchmark
add 64d39c50e67e Merge remote-tracking branch 'origin/main' into
fix/CAMEL-24863
No new revisions were added by this update.
Summary of changes:
.../apache/camel/catalog/components/aws2-ec2.json | 2 +-
.../camel/catalog/docs/mongodb-component.adoc | 8 +-
.../catalog/docs/mongodb-gridfs-component.adoc | 6 +-
.../camel/catalog/docs/spring-cloud-config.adoc | 12 +-
.../apache/camel/catalog/test-infra/metadata.json | 42 ++--
.../apache/camel/component/aws2/ec2/aws2-ec2.json | 2 +-
.../apache/camel/component/file/FileConsumer.java | 3 +
.../src/main/docs/mongodb-gridfs-component.adoc | 6 +-
.../src/main/docs/mongodb-component.adoc | 8 +-
.../platform/http/vertx/AsyncInputStream.java | 80 ++++--
.../http/vertx/ResponseWriteException.java} | 11 +-
.../http/vertx/VertxPlatformHttpConsumer.java | 30 ++-
.../http/vertx/VertxPlatformHttpRouter.java | 1 +
.../http/vertx/VertxPlatformHttpSupport.java | 32 +--
.../VertxPlatformHttpClientDisconnectTest.java | 280 +++++++++++++++++++++
.../src/main/docs/spring-cloud-config.adoc | 12 +-
.../FileWatcherResourceReloadStrategyTest.java | 89 +++++++
.../support/FileWatcherResourceReloadStrategy.java | 78 +++++-
.../camel/support/RouteWatcherReloadStrategy.java | 8 +-
.../ROOT/pages/camel-4x-upgrade-guide-4_23.adoc | 33 +++
.../modules/ROOT/pages/camel-jbang-mcp.adoc | 40 +++
.../dsl/jbang/core/commands/ai/AuthoringTools.java | 30 ++-
.../dsl/jbang/core/commands/ai/BeanRefChecks.java | 55 ++++
.../dsl/jbang/core/commands/ai/EndpointChecks.java | 84 +++++++
.../dsl/jbang/core/commands/ai/ReloadOutcome.java | 144 +++++++++++
.../dsl/jbang/core/commands/ai/YamlLines.java | 36 +++
.../jbang/core/commands/ai/ReloadOutcomeTest.java | 97 +++++++
.../ai/SourceValidatorPlaceholderTest.java | 109 ++++++++
.../dsl/jbang/core/commands/mcp/RuntimeTools.java | 174 +++++++++++--
.../jbang/core/commands/mcp/RuntimeToolsTest.java | 18 ++
.../camel/dsl/yaml/RouteReloadNewFileTest.groovy | 97 +++++++
parent/pom.xml | 6 +-
.../src/generated/resources/META-INF/metadata.json | 42 ++--
.../test/infra/aws2/services/container.properties | 2 +-
.../infra/couchdb/services/container.properties | 2 +-
.../hashicorp/vault/services/container.properties | 2 +-
.../infra/jaeger/services/container.properties | 2 +-
.../infra/keycloak/services/container.properties | 2 +-
.../infra/milvus/services/container.properties | 2 +-
39 files changed, 1534 insertions(+), 153 deletions(-)
copy
components/camel-platform-http-vertx/src/{test/java/org/apache/camel/component/platform/http/vertx/PathCreator.java
=>
main/java/org/apache/camel/component/platform/http/vertx/ResponseWriteException.java}
(72%)
create mode 100644
components/camel-platform-http-vertx/src/test/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpClientDisconnectTest.java
create mode 100644
core/camel-core/src/test/java/org/apache/camel/support/FileWatcherResourceReloadStrategyTest.java
create mode 100644
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ai/ReloadOutcome.java
create mode 100644
dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/commands/ai/ReloadOutcomeTest.java
create mode 100644
dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/commands/ai/SourceValidatorPlaceholderTest.java
create mode 100644
dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/RouteReloadNewFileTest.groovy