This is an automated email from the ASF dual-hosted git repository.
Croway pushed a change to branch camel-4.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git
from 2bfc572864d1 [4.18.x] Bump io.projectreactor:reactor-core from 3.8.3
to 3.8.7 (#25923)
new 37188f807e03 CAMEL-24455: camel-platform-http - select proxy mode by
the exact path, not by prefix (#25833)
new 8cb967504192 CAMEL-24453: camel-platform-http - compare request header
names case-insensitively when suppressing the echo (#25831)
new c0859814a707 CAMEL-24442: camel-thrift - unmarshal into a copy instead
of the shared defaultInstance (#25823)
new 6653df8e65e6 CAMEL-24423: camel-tika - filter parsed document metadata
before mapping it to headers (#25819)
new 1b17b24b0424 CAMEL-24475: camel-xpath - parse an InputSource document
type with the hardened XML parser (#25683)
new af1efbcccf58 CAMEL-24449: camel-core - only consult
Long-Running-Action for a saga service that uses it
The 6 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:
.../component/kafka/integration/KafkaSagaIT.java | 16 +++-
.../apache/camel/service/lra/LRASagaService.java | 9 ++
.../platform/http/PlatformHttpEndpoint.java | 26 +++++-
.../http/PlatformHttpEndpointHeaderEchoTest.java | 53 ++++++++++++
.../http/PlatformHttpEndpointProxyPathTest.java | 65 ++++++++++++++
components/camel-thrift/pom.xml | 5 ++
.../camel/dataformat/thrift/ThriftDataFormat.java | 14 ++-
.../thrift/ThriftUnmarshalIsolationTest.java | 89 +++++++++++++++++++
components/camel-tika/pom.xml | 5 ++
.../apache/camel/component/tika/TikaProducer.java | 25 +++++-
.../tika/TikaMetadataHeaderFilterTest.java | 74 ++++++++++++++++
.../apache/camel/language/xpath/XPathBuilder.java | 33 +++++++-
.../apache/camel/processor/saga/SagaProcessor.java | 7 +-
.../apache/camel/builder/xml/XPathFeatureTest.java | 72 ++++++++++++++++
.../SagaHeaderCannotSelectCoordinatorTest.java | 99 ++++++++++++++++++++++
.../org/apache/camel/saga/CamelSagaService.java | 18 ++++
16 files changed, 594 insertions(+), 16 deletions(-)
create mode 100644
components/camel-platform-http/src/test/java/org/apache/camel/component/platform/http/PlatformHttpEndpointHeaderEchoTest.java
create mode 100644
components/camel-platform-http/src/test/java/org/apache/camel/component/platform/http/PlatformHttpEndpointProxyPathTest.java
create mode 100644
components/camel-thrift/src/test/java/org/apache/camel/dataformat/thrift/ThriftUnmarshalIsolationTest.java
create mode 100644
components/camel-tika/src/test/java/org/apache/camel/component/tika/TikaMetadataHeaderFilterTest.java
create mode 100644
core/camel-core/src/test/java/org/apache/camel/processor/SagaHeaderCannotSelectCoordinatorTest.java