This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch
dependabot/maven/aws-java-sdk2-version-2.54.1
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 01a17259032c chore(deps): Bump aws-java-sdk2-version from 2.51.4 to
2.54.1
add e40225d85808 chore(camel-test-infra-observability): upgrade
observability.prometheus.container to v3.14.0
add dd50979547a5 chore(camel-test-infra-observability): upgrade
observability.victoriatraces.container to v0.11.0
add 0e93052d495c Regen
add 3b843131b909 CAMEL-24414: camel-core - resolve pollEnrich property
placeholders at build time (#25569)
add 8db602a5ee10 CAMEL-24421: camel-spring-redis - apply a deserialization
filter to the default JDK serializer (#25587)
add fc197c8ddc7a CAMEL-24384: camel-azure-eventgrid - remove the
inapplicable dataVersion header (#25592)
add 8b95ef19002a CAMEL-24422: camel-docling - make message body
input-source interpretation explicit and configurable (#25596)
add cb57e9cc22b3 chore: fix NATS JetStream IT tests sharing a
stream/durable name (#25630)
add cc95056c1792 chore(deps): Bump aws-java-sdk2-version from 2.51.4 to
2.54.1
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 (01a17259032c)
\
N -- N -- N
refs/heads/dependabot/maven/aws-java-sdk2-version-2.54.1 (cc95056c1792)
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:
.../apache/camel/catalog/components/docling.json | 26 +-
.../camel/catalog/components/spring-redis.json | 3 +-
.../camel/catalog/docs/docling-component.adoc | 49 +++-
.../docling/DoclingComponentConfigurer.java | 18 ++
.../docling/DoclingConfigurationConfigurer.java | 18 ++
.../docling/DoclingEndpointConfigurer.java | 18 ++
.../docling/DoclingEndpointUriFactory.java | 5 +-
.../apache/camel/component/docling/docling.json | 26 +-
.../src/main/docs/docling-component.adoc | 49 +++-
.../component/docling/DoclingConfiguration.java | 47 ++++
.../camel/component/docling/DoclingProducer.java | 129 ++++++++--
.../docling/DoclingCustomArgsValidationTest.java | 5 +-
.../docling/DoclingInputSourceValidationTest.java | 263 +++++++++++++++++++++
.../integration/DoclingServeProducerIT.java | 22 +-
.../integration/ExtractStructuredDataIT.java | 2 +-
.../docling/integration/MetadataExtractionIT.java | 12 +-
.../docling/integration/OcrExtractionIT.java | 8 +-
.../component/azure/eventgrid/azure-eventgrid.json | 3 +-
.../azure/eventgrid/EventGridConstants.java | 3 -
.../azure/eventgrid/EventGridProducer.java | 1 -
.../NatsJetstreamConsumerAckPolicyNoneIT.java | 6 +-
.../NatsJetstreamConsumerMaxDeliverIT.java | 4 +-
.../NatsJetstreamConsumerRedeliveryIT.java | 6 +-
.../camel-spring-parent/camel-spring-redis/pom.xml | 5 +
.../component/redis/RedisEndpointConfigurer.java | 6 +
.../component/redis/RedisEndpointUriFactory.java | 3 +-
.../apache/camel/component/redis/spring-redis.json | 3 +-
.../component/redis/FilteringDeserializer.java | 55 +++++
.../camel/component/redis/RedisConfiguration.java | 27 ++-
...edisConfigurationDeserializationFilterTest.java | 91 +++++++
.../apache/camel/component/sql/SqlOutputType.java | 18 +-
.../org/apache/camel/processor/PollEnricher.java | 24 +-
.../DynamicEndpointMessagePlaceholderTest.java | 33 ++-
.../java/org/apache/camel/util/SecurityUtils.java | 2 +
.../ROOT/pages/camel-4x-upgrade-guide-4_23.adoc | 77 ++++++
.../dsl/DoclingComponentBuilderFactory.java | 62 +++++
.../dsl/DoclingEndpointBuilderFactory.java | 91 +++++++
.../endpoint/dsl/RedisEndpointBuilderFactory.java | 60 +++++
.../observability/services/container.properties | 4 +-
39 files changed, 1180 insertions(+), 104 deletions(-)
create mode 100644
components/camel-ai/camel-docling/src/test/java/org/apache/camel/component/docling/DoclingInputSourceValidationTest.java
create mode 100644
components/camel-spring-parent/camel-spring-redis/src/main/java/org/apache/camel/component/redis/FilteringDeserializer.java
create mode 100644
components/camel-spring-parent/camel-spring-redis/src/test/java/org/apache/camel/component/redis/RedisConfigurationDeserializationFilterTest.java