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

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


    omit bac311f8925 CAMEL-20587 - Camel-Qdrant: Add a datatype for 
transforming langchain embeddings in qdrant objects
    omit be173fdc921 CAMEL-20587 - Camel-Qdrant: Add a datatype for 
transforming langchain embeddings in qdrant objects
     add e280224c9f2 CAMEL-17641: Generate json metadata for pojo beans in 
camel-core that end users can use such as AggregationStrategy implementations. 
And have that information in camel-catalog for tooling assistance.
     add dc2ce0f57e3 CAMEL-17641: Generate json metadata for pojo beans in 
camel-core that end users can use such as AggregationStrategy implementations. 
And have that information in camel-catalog for tooling assistance.
     new 36855245022 CAMEL-20587 - Camel-Qdrant: Add a datatype for 
transforming langchain embeddings in qdrant objects
     new 8efb07afe9b CAMEL-20587 - Camel-Qdrant: Add a datatype for 
transforming langchain embeddings in qdrant objects

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   (bac311f8925)
            \
             N -- N -- N   refs/heads/CAMEL-20587 (8efb07afe9b)

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 2 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:
 .../org/apache/camel/catalog/beans.properties      |  6 ++
 .../catalog/beans/CronScheduledRoutePolicy.json    | 16 ++++
 .../camel/catalog/beans/DurationRoutePolicy.json   | 16 ++++
 .../catalog/beans/DurationRoutePolicyFactory.json  | 16 ++++
 .../catalog/beans/SimpleScheduledRoutePolicy.json  | 16 ++++
 .../beans/ThrottlingExceptionRoutePolicy.json      | 16 ++++
 .../beans/ThrottlingInflightRoutePolicy.json       | 16 ++++
 .../quartz/CronScheduledRoutePolicyConfigurer.java | 73 ++++++++++++++++
 .../SimpleScheduledRoutePolicyConfigurer.java      | 97 ++++++++++++++++++++++
 .../services/org/apache/camel/bean.properties      |  7 ++
 .../camel/bean/CronScheduledRoutePolicy.json       | 16 ++++
 .../camel/bean/SimpleScheduledRoutePolicy.json     | 16 ++++
 ...mel.routepolicy.quartz.CronScheduledRoutePolicy |  2 +
 ...l.routepolicy.quartz.SimpleScheduledRoutePolicy |  2 +
 .../quartz/CronScheduledRoutePolicy.java           | 11 +++
 .../routepolicy/quartz/ScheduledRoutePolicy.java   |  4 +
 .../quartz/SimpleScheduledRoutePolicy.java         | 14 ++++
 .../impl/engine/DurationRoutePolicyConfigurer.java | 61 ++++++++++++++
 .../DurationRoutePolicyFactoryConfigurer.java      | 67 +++++++++++++++
 .../services/org/apache/camel/bean.properties      |  7 ++
 .../org/apache/camel/bean/DurationRoutePolicy.json | 16 ++++
 .../camel/bean/DurationRoutePolicyFactory.json     | 16 ++++
 ...rg.apache.camel.impl.engine.DurationRoutePolicy |  2 +
 ...he.camel.impl.engine.DurationRoutePolicyFactory |  2 +
 .../camel/impl/engine/DurationRoutePolicy.java     | 14 +++-
 .../impl/engine/DurationRoutePolicyFactory.java    | 19 ++++-
 .../ThrottlingExceptionRoutePolicyConfigurer.java  | 73 ++++++++++++++++
 .../ThrottlingInflightRoutePolicyConfigurer.java   | 67 +++++++++++++++
 .../services/org/apache/camel/bean.properties      |  2 +-
 .../camel/bean/ThrottlingExceptionRoutePolicy.json | 16 ++++
 .../camel/bean/ThrottlingInflightRoutePolicy.json  | 16 ++++
 ...camel.throttling.ThrottlingExceptionRoutePolicy |  2 +
 ....camel.throttling.ThrottlingInflightRoutePolicy |  2 +
 .../throttling/ThrottlingExceptionRoutePolicy.java | 49 +++++++++--
 .../throttling/ThrottlingInflightRoutePolicy.java  | 10 +++
 35 files changed, 774 insertions(+), 11 deletions(-)
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/CronScheduledRoutePolicy.json
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/DurationRoutePolicy.json
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/DurationRoutePolicyFactory.json
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/SimpleScheduledRoutePolicy.json
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/ThrottlingExceptionRoutePolicy.json
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/ThrottlingInflightRoutePolicy.json
 create mode 100644 
components/camel-quartz/src/generated/java/org/apache/camel/routepolicy/quartz/CronScheduledRoutePolicyConfigurer.java
 create mode 100644 
components/camel-quartz/src/generated/java/org/apache/camel/routepolicy/quartz/SimpleScheduledRoutePolicyConfigurer.java
 create mode 100644 
components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/bean.properties
 create mode 100644 
components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/bean/CronScheduledRoutePolicy.json
 create mode 100644 
components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/bean/SimpleScheduledRoutePolicy.json
 create mode 100644 
components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.routepolicy.quartz.CronScheduledRoutePolicy
 create mode 100644 
components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.routepolicy.quartz.SimpleScheduledRoutePolicy
 create mode 100644 
core/camel-base-engine/src/generated/java/org/apache/camel/impl/engine/DurationRoutePolicyConfigurer.java
 create mode 100644 
core/camel-base-engine/src/generated/java/org/apache/camel/impl/engine/DurationRoutePolicyFactoryConfigurer.java
 create mode 100644 
core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/bean.properties
 create mode 100644 
core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/bean/DurationRoutePolicy.json
 create mode 100644 
core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/bean/DurationRoutePolicyFactory.json
 create mode 100644 
core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.engine.DurationRoutePolicy
 create mode 100644 
core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.engine.DurationRoutePolicyFactory
 create mode 100644 
core/camel-support/src/generated/java/org/apache/camel/throttling/ThrottlingExceptionRoutePolicyConfigurer.java
 create mode 100644 
core/camel-support/src/generated/java/org/apache/camel/throttling/ThrottlingInflightRoutePolicyConfigurer.java
 create mode 100644 
core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/bean/ThrottlingExceptionRoutePolicy.json
 create mode 100644 
core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/bean/ThrottlingInflightRoutePolicy.json
 create mode 100644 
core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.throttling.ThrottlingExceptionRoutePolicy
 create mode 100644 
core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.throttling.ThrottlingInflightRoutePolicy

Reply via email to