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

nfilotto pushed a change to branch CAMEL-17741/fix-default-name-retrieval
in repository https://gitbox.apache.org/repos/asf/camel.git.


 discard cefb0c9  CAMEL-17741: Improper way to get the default name of a field 
annotated with XmlElement
     add 7acfb27  CAMEL-17555: Flag to include/exclude routes in route 
templates (#7091)
     add effdb40  CAMEL-17117: added details about supported components for the 
resume API
     add 9ec450c  CAMEL-17733: added a builtin delegating resume strategy
     add 24ff4b9  Regen for commit effdb40e899072eafc9d3ed7848ed5e138ad868b
     add 154b3e3  Upgrade Optaplanner to version 8.18.0.Final
     add ac4d208  Sync deps
     add 508de9d  CAMEL-15520: fixed deprecated usages of 
CamelContextHelper.findByType
     add bf46ca6  Regen for commit 508de9d7f2eedcb5524cd79d876c6929ed36143c
     add 95eeca8  CAMEL-15520: fixed deprecated usages of Exchange.getOut/getIn
     add c8ee421  Regen for commit bf46ca641b0294e2ddab633a186798a87780657f
     add b1c3516  Regen for commit c8ee421a87f3ff9682c2d927c4fcc239cb423c8d
     add ab07cb5  Upgrade Hazelcast to 5.1 (#7102)
     add 2929bb7  CAMEL-17739 - Camel Google Secret Manager Properties Source: 
Support the usage of client default instance
     add bb7edec  CAMEL-17739 - Camel Google Secret Manager Properties Source: 
Support the usage of client default instance
     add e3c8422  CAMEL-17739 - Camel Google Secret Manager Properties Source: 
Support the usage of client default instance
     add b8eac7f  CAMEL-17739 - Camel Google Secret Manager Properties Source: 
Support the usage of client default instance
     add 45a8194  CAMEL-17739 - Camel Google Secret Manager Properties Source: 
Support the usage of client default instance
     add 635c0d6  CAMEL-17739 - Camel Google Secret Manager Properties Source: 
Support the usage of client default instance
     add 896f409  Regen for commit 635c0d6cc066916a063ecabfef890e5aa133ad86
     add c187e95  CAMEL-17727: camel-kafka - Add readiness health check for 
kafka consumer (#7093)
     add 9a39e56  CAMEL-17741: Improper way to get the default name of a field 
annotated with XmlElement

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   (cefb0c9)
            \
             N -- N -- N   refs/heads/CAMEL-17741/fix-default-name-retrieval 
(9a39e56)

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                         |   4 +-
 .../main/camel-main-configuration-metadata.json    |   3 +-
 .../org/apache/camel/catalog/others.properties     |   1 -
 .../org/apache/camel/catalog/others/console.json   |  15 --
 .../apache/camel/catalog/schemas/camel-spring.xsd  |   1 +
 .../bean/validator/ValidatorFactories.java         |   2 +-
 .../org/apache/camel/component/bean/BeanInfo.java  |   2 +-
 .../component/bean/ConstantTypeBeanHolder.java     |   2 +-
 .../apache/camel/component/cron/CronHelper.java    |   2 +-
 .../camel/component/fhir/api/FhirHistory.java      |   2 +-
 .../apache/camel/component/file/GenericFile.java   |  10 +-
 .../GoogleSecretManagerPropertiesFunction.java     |  10 +-
 .../GoogleSecretManagerPropertiesSourceTestIT.java |  21 +++
 components/camel-jcache/pom.xml                    |   2 +-
 .../camel/component/jcache/JCacheHelper.java       |   2 +-
 components/camel-kafka/pom.xml                     |   4 +
 .../camel/component/kafka/KafkaConsumer.java       |  20 ++-
 .../component/kafka/KafkaConsumerHealthCheck.java  |  77 +++++++++
 .../camel/component/kafka/KafkaFetchRecords.java   |  32 ++++
 .../integration/KafkaConsumerHealthCheckIT.java    | 189 +++++++++++++++++++++
 .../camel/component/knative/KnativeComponent.java  |   2 +-
 .../camel/component/language/LanguageProducer.java |   6 +-
 .../http/vertx/VertxPlatformHttpServer.java        |   4 +-
 .../reactive/streams/ReactiveStreamsHelper.java    |   2 +-
 .../apache/camel/component/saga/SagaProducer.java  |   2 +-
 .../apache/camel/spring/RoutePreconditionTest.java |  53 ++++++
 .../camel/spring/RoutePreconditionTest.properties  |  18 ++
 .../apache/camel/spring/RoutePreconditionTest.xml  |  51 ++++++
 .../apache/camel/vault/GcpVaultConfiguration.java  |  13 ++
 .../docs/modules/eips/pages/resume-strategies.adoc |   7 +
 .../org/apache/camel/impl/DefaultCamelContext.java |  68 ++++++--
 .../org/apache/camel/model/RouteDefinition.java    |  31 ++++
 .../camel/model/RouteTemplateDefinition.java       |   2 +-
 .../processor/resume/DelegatingResumeStrategy.java | 102 +++++++++++
 .../builder/RouteTemplatePreconditionTest.java     |  92 ++++++++++
 .../camel/processor/RoutePreconditionTest.java     | 106 ++++++++++++
 .../camel/impl/health/AbstractHealthCheck.java     |   2 +
 .../GcpVaultConfigurationPropertiesConfigurer.java |   6 +
 .../camel-main-configuration-metadata.json         |   3 +-
 core/camel-main/src/main/docs/main.adoc            |   3 +-
 .../main/GcpVaultConfigurationProperties.java      |   8 +
 .../java/org/apache/camel/main/MainVaultTest.java  |   4 +-
 .../apache/camel/support/CamelContextHelper.java   |  11 --
 .../java/org/apache/camel/xml/in/ModelParser.java  |   1 +
 docs/user-manual/modules/ROOT/pages/routes.adoc    |  38 +++++
 .../deserializers/RouteDefinitionDeserializer.java |   4 +
 .../src/generated/resources/camel-yaml-dsl.json    |   3 +
 .../src/generated/resources/camelYamlDsl.json      |   3 +
 .../org/apache/camel/dsl/yaml/RoutesTest.groovy    |  27 +++
 parent/pom.xml                                     |   4 +-
 50 files changed, 1000 insertions(+), 77 deletions(-)
 delete mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
 create mode 100644 
components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaConsumerHealthCheck.java
 create mode 100644 
components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerHealthCheckIT.java
 create mode 100644 
components/camel-spring-xml/src/test/java/org/apache/camel/spring/RoutePreconditionTest.java
 create mode 100644 
components/camel-spring-xml/src/test/resources/org/apache/camel/spring/RoutePreconditionTest.properties
 create mode 100644 
components/camel-spring-xml/src/test/resources/org/apache/camel/spring/RoutePreconditionTest.xml
 create mode 100644 
core/camel-core-processor/src/main/java/org/apache/camel/processor/resume/DelegatingResumeStrategy.java
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/builder/RouteTemplatePreconditionTest.java
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/processor/RoutePreconditionTest.java

Reply via email to