This is an automated email from the ASF dual-hosted git repository.
Croway pushed a change to branch camel-4.22.x
in repository https://gitbox.apache.org/repos/asf/camel.git
from b0399b181d26 CAMEL-24436: camel-platform-http-vertx - only allow CORS
credentials for a configured origin (#25820)
new 152743fcae57 CAMEL-24455: camel-platform-http - select proxy mode by
the exact path, not by prefix (#25833)
new f08aae0758b1 CAMEL-24453: camel-platform-http - compare request header
names case-insensitively when suppressing the echo (#25831)
new 270b6adb1921 CAMEL-24442: camel-thrift - unmarshal into a copy instead
of the shared defaultInstance (#25823)
new 14eeda5d48f7 CAMEL-24423: camel-tika - filter parsed document metadata
before mapping it to headers (#25819)
new 7895d9175ace CAMEL-24475: camel-xpath - parse an InputSource document
type with the hardened XML parser (#25683)
new 260989268cbc 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