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

nfilotto pushed a change to branch CAMEL-18217/suspend-messages-with-system-prop
in repository https://gitbox.apache.org/repos/asf/camel.git


    omit 5d511c7a307 CAMEL-18217: debugger - Allow to suspend messages using a 
system property
     add 0c281ece372 CAMEL-18226: camel-core - Converter for InputStream to 
byte[] should close stream
     add 82c2ed5f43d Recommend camel-spring-rabbitmq as the best rabbitmq 
component to use.
     add 29f510d1764 Update split-eip.adoc
     add 14c19ba00b7 (chores) doc: fixed invalid reference
     add f69a4077c58 CAMEL-18222: camel-kubernetes - KubernetesClient should be 
autowried
     add 1f11207cf4e CAMEL-18222: camel-kubernetes - KubernetesClient should be 
autowried
     add 97045a93cce CAMEL-18222: camel-kubernetes - KubernetesClient should be 
autowried
     add 6dec16ab59e CAMEL-18171: camel-main - LocationHelper to make it easier 
to get summary logs
     add 4bf48eaf2a0 CAMEL-18171: camel-kubernetes - Allow to configure k8s 
client from application.properties.
     add de70f9703d7 Regen for commit 4bf48eaf2a017f213820a4d33663c6c7346fd739
     add 23c2048a268 (chores) camel-kubernetes: fixed checkstyle violations
     add efdb118e78b CAMEL-18217: debugger - Allow to suspend messages using a 
system property

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   (5d511c7a307)
            \
             N -- N -- N   
refs/heads/CAMEL-18217/suspend-messages-with-system-prop (efdb118e78b)

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:
 .../catalog/components/kubernetes-config-maps.json |  1 +
 .../components/kubernetes-custom-resources.json    |  1 +
 .../catalog/components/kubernetes-deployments.json |  1 +
 .../camel/catalog/components/kubernetes-hpa.json   |  1 +
 .../camel/catalog/components/kubernetes-job.json   |  1 +
 .../catalog/components/kubernetes-namespaces.json  |  1 +
 .../camel/catalog/components/kubernetes-nodes.json |  1 +
 .../kubernetes-persistent-volumes-claims.json      |  1 +
 .../components/kubernetes-persistent-volumes.json  |  1 +
 .../camel/catalog/components/kubernetes-pods.json  |  1 +
 .../kubernetes-replication-controllers.json        |  1 +
 .../components/kubernetes-resources-quota.json     |  1 +
 .../catalog/components/kubernetes-secrets.json     |  1 +
 .../components/kubernetes-service-accounts.json    |  1 +
 .../catalog/components/kubernetes-services.json    |  1 +
 .../components/openshift-build-configs.json        |  1 +
 .../camel/catalog/components/openshift-builds.json |  1 +
 .../components/openshift-deploymentconfigs.json    |  1 +
 .../KubernetesConfigMapsComponentConfigurer.java   | 11 ++++
 ...bernetesCustomResourcesComponentConfigurer.java | 11 ++++
 .../KubernetesDeploymentsComponentConfigurer.java  | 11 ++++
 .../hpa/KubernetesHPAComponentConfigurer.java      | 11 ++++
 .../job/KubernetesJobComponentConfigurer.java      | 11 ++++
 .../KubernetesNamespacesComponentConfigurer.java   | 11 ++++
 .../nodes/KubernetesNodesComponentConfigurer.java  | 11 ++++
 ...rnetesPersistentVolumesComponentConfigurer.java | 11 ++++
 ...PersistentVolumesClaimsComponentConfigurer.java | 11 ++++
 .../pods/KubernetesPodsComponentConfigurer.java    | 11 ++++
 ...sReplicationControllersComponentConfigurer.java | 11 ++++
 ...ubernetesResourcesQuotaComponentConfigurer.java | 11 ++++
 .../KubernetesSecretsComponentConfigurer.java      | 11 ++++
 ...bernetesServiceAccountsComponentConfigurer.java | 11 ++++
 .../KubernetesServicesComponentConfigurer.java     | 11 ++++
 .../OpenshiftBuildConfigsComponentConfigurer.java  | 11 ++++
 .../builds/OpenshiftBuildsComponentConfigurer.java | 11 ++++
 ...nshiftDeploymentConfigsComponentConfigurer.java | 11 ++++
 .../config_maps/kubernetes-config-maps.json        |  1 +
 .../kubernetes-custom-resources.json               |  1 +
 .../deployments/kubernetes-deployments.json        |  1 +
 .../component/kubernetes/hpa/kubernetes-hpa.json   |  1 +
 .../component/kubernetes/job/kubernetes-job.json   |  1 +
 .../namespaces/kubernetes-namespaces.json          |  1 +
 .../kubernetes/nodes/kubernetes-nodes.json         |  1 +
 .../kubernetes-persistent-volumes.json             |  1 +
 .../kubernetes-persistent-volumes-claims.json      |  1 +
 .../component/kubernetes/pods/kubernetes-pods.json |  1 +
 .../kubernetes-replication-controllers.json        |  1 +
 .../kubernetes-resources-quota.json                |  1 +
 .../kubernetes/secrets/kubernetes-secrets.json     |  1 +
 .../kubernetes-service-accounts.json               |  1 +
 .../kubernetes/services/kubernetes-services.json   |  1 +
 .../build_configs/openshift-build-configs.json     |  1 +
 .../openshift/builds/openshift-builds.json         |  1 +
 .../openshift-deploymentconfigs.json               |  1 +
 .../kubernetes/AbstractKubernetesComponent.java    | 19 +++++++
 .../properties/BasePropertiesFunction.java         | 44 +++++++++++++++
 .../producer/KubernetesJobProducerTest.java        | 13 ++---
 .../src/main/docs/rabbitmq-component.adoc          |  3 ++
 .../org/apache/camel/converter/IOConverter.java    |  2 +-
 .../main/docs/modules/eips/pages/split-eip.adoc    |  2 +-
 .../org/apache/camel/main/BaseMainSupport.java     | 32 +----------
 .../java/org/apache/camel/util/LocationHelper.java | 62 ++++++++++++++++++++++
 .../support/processor/validation/SchemaReader.java |  2 +-
 .../ROOT/pages/camel-3x-upgrade-guide-3_18.adoc    |  2 +
 ...ubernetesConfigMapsComponentBuilderFactory.java | 17 ++++++
 ...etesCustomResourcesComponentBuilderFactory.java | 17 ++++++
 ...bernetesDeploymentsComponentBuilderFactory.java | 17 ++++++
 .../dsl/KubernetesHpaComponentBuilderFactory.java  | 17 ++++++
 .../dsl/KubernetesJobComponentBuilderFactory.java  | 17 ++++++
 ...ubernetesNamespacesComponentBuilderFactory.java | 17 ++++++
 .../KubernetesNodesComponentBuilderFactory.java    | 17 ++++++
 ...istentVolumesClaimsComponentBuilderFactory.java | 17 ++++++
 ...esPersistentVolumesComponentBuilderFactory.java | 17 ++++++
 .../dsl/KubernetesPodsComponentBuilderFactory.java | 17 ++++++
 ...licationControllersComponentBuilderFactory.java | 17 ++++++
 ...netesResourcesQuotaComponentBuilderFactory.java | 17 ++++++
 .../KubernetesSecretsComponentBuilderFactory.java  | 17 ++++++
 ...etesServiceAccountsComponentBuilderFactory.java | 17 ++++++
 .../KubernetesServicesComponentBuilderFactory.java | 17 ++++++
 ...enshiftBuildConfigsComponentBuilderFactory.java | 17 ++++++
 .../OpenshiftBuildsComponentBuilderFactory.java    | 17 ++++++
 ...ftDeploymentconfigsComponentBuilderFactory.java | 17 ++++++
 82 files changed, 681 insertions(+), 40 deletions(-)
 create mode 100644 
core/camel-util/src/main/java/org/apache/camel/util/LocationHelper.java

Reply via email to