You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2022/10/20 18:52:15 UTC

[camel] branch CAMEL-18617 updated (eead0da651a -> 5f95edd11b8)

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

lburgazzoli pushed a change to branch CAMEL-18617
in repository https://gitbox.apache.org/repos/asf/camel.git


 discard eead0da651a CAMEL-18617: Some health checks are hidden when running withg supervised controller enabled
     add 8bdf3833361 CAMEL-18624: camel-jbang - Should load custom type converters when adding new JARs
     add 5b51f3fb85b Upgrade Infinispan to version 14.0.1.Final
     add d03295b5df9 Sync deps
     add 444ac0abbb4 Upgrade Infinispan Container Image to version 14.0.1-Final
     add adb80d86a0c Upgrade AWS SDK v2 to version 2.17.295
     add 7e69fcac9a1 Sync deps
     add 3139a76ca6f CAMEL-18624: camel-jbang - Should load custom type converters when adding new JARs
     add 245c5cf5c18 CAMEL-18624: camel-jbang - Should load custom type converters when adding new JARs
     add 5fcb62dd171 Use latest container image for Hashicorp Vault 1.12.0 in test-infra module
     add 0cdb1137d7d camel-jbang - Upgrade to quarkus 2.13.3
     add fd135f9c81d CAMEL-18622: camel-yaml-dsl - Add support for camel.yaml/camelk.yaml file extension
     add 3d1082cdbff CAMEL-18622: camel-yaml-dsl - Add support for camel.yaml/camelk.yaml file extension
     add 1ee5ea63806 Upgrade Spring Security to version 5.7.4
     add 88e50254006 Sync deps
     add 68663ecdaaa Add note about AHC components removed in 3.19 (#8595)
     add 8210336f774 camel-jbang - Add missing annotation for IoC
     add d44e014ab58 [CAMEL-18612] Documentation for the new Jsonpath option (#8596)
     add e8356136483 [CAMEL-18612] Documentation for the new Jsonpath option (#8596)
     add 5c09cf83978 Platform HTTP Vertx Component: Fixed Camel Website build
     add a2a99874757 chore(aws-s3): fix deprecation warning (#8597)
     add 98d3ecc07c0 chore(main): fix warning about accessing MainHelpe  static members via instance reference (#8598)
     add 7ea810010eb camel-jbang - Tone down logging noise
     add e2fca637f94 Regen for commit 7ea810010ebf2fa727229ac8e5fc06f05c21ab13 (#8599)
     add 59b48860704 camel-console - Polished
     add 3c21bc0ddf6 CAMEL-18626: Java DSL to allow property placeholders in setExchangePattern
     add 5f95edd11b8 CAMEL-18617: Some health checks are hidden when running withg supervised controller enabled

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   (eead0da651a)
            \
             N -- N -- N   refs/heads/CAMEL-18617 (5f95edd11b8)

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.

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml                         |   6 +-
 .../camel/component/aws2/s3/AWS2S3Consumer.java    |   4 +-
 .../camel/component/aws2/s3/AWS2S3Producer.java    |   2 +-
 .../src/main/docs/platform-http-vertx.adoc         |   5 +-
 .../camel/spring/processor/setExchangePattern.xml  |   6 +-
 .../processor/setExchangePatternWithCustomId.xml   |   6 +-
 .../engine/DefaultRuntimeEndpointRegistry.java     |   4 +-
 .../camel/impl/console/HealthDevConsole.java       |   7 +-
 .../org/apache/camel/main/BaseMainSupport.java     |  28 +++---
 .../ROOT/pages/camel-3x-upgrade-guide-3_18.adoc    |   5 +
 .../ROOT/pages/camel-3x-upgrade-guide-3_19.adoc    |   7 ++
 .../ROOT/pages/camel-3x-upgrade-guide-3_20.adoc    |   4 +
 .../modules/ROOT/pages/camel-jbang.adoc            |   1 +
 .../dsl/jbang/core/commands/ExportBaseCommand.java |   2 +-
 .../java/org/apache/camel/main/KameletMain.java    |   8 +-
 .../main/download/ArtifactDownloadListener.java    |  34 +++++++
 .../camel/main/download/DependencyDownloader.java  |   5 +
 .../download/DependencyDownloaderRoutesLoader.java |   5 +-
 .../main/download/MavenDependencyDownloader.java   |  16 ++-
 .../TypeConverterLoaderDownloadListener.java       | 105 +++++++++++++++++++
 .../org/apache/camel/routes-loader/camel.yaml      |   2 +
 .../org/apache/camel/routes-loader/camelk.yaml     |   2 +
 .../dsl/yaml/CamelKYamlRoutesBuilderLoader.java    |  31 ++++++
 .../dsl/yaml/CamelYamlRoutesBuilderLoader.java     |  31 ++++++
 .../camel/dsl/yaml/YamlRoutesBuilderLoader.java    |   4 +
 .../camel/dsl/yaml/ChoiceCamelExtTest.groovy       | 111 +++++++++++++++++++++
 .../camel/dsl/yaml/ChoiceCamelKExtTest.groovy      | 111 +++++++++++++++++++++
 .../camel/dsl/yaml/support/YamlTestSupport.groovy  |  10 +-
 parent/pom.xml                                     |   6 +-
 .../HashicorpVaultLocalContainerService.java       |   2 +-
 .../services/InfinispanLocalContainerService.java  |   2 +-
 31 files changed, 533 insertions(+), 39 deletions(-)
 create mode 100644 dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/ArtifactDownloadListener.java
 create mode 100644 dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/TypeConverterLoaderDownloadListener.java
 create mode 100644 dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/META-INF/services/org/apache/camel/routes-loader/camel.yaml
 create mode 100644 dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/META-INF/services/org/apache/camel/routes-loader/camelk.yaml
 create mode 100644 dsl/camel-yaml-dsl/camel-yaml-dsl/src/main/java/org/apache/camel/dsl/yaml/CamelKYamlRoutesBuilderLoader.java
 create mode 100644 dsl/camel-yaml-dsl/camel-yaml-dsl/src/main/java/org/apache/camel/dsl/yaml/CamelYamlRoutesBuilderLoader.java
 create mode 100644 dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/ChoiceCamelExtTest.groovy
 create mode 100644 dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/ChoiceCamelKExtTest.groovy