This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch fix/CAMEL-24156
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 3c881304b336 CAMEL-24156: Address review feedback - preserve
KinesisResumeAction registry lookup
discard 3ac53c58c120 CAMEL-24156: camel-aws2-ddb - Fix numeric type mapping in
JSON transformer
discard 4db5a801bbee CAMEL-24156: camel-aws2-kinesis - Fix connection close
reset and resume concurrency
discard 6e934d1922cd CAMEL-24156: camel-aws2-kinesis - Fix shardClosed NPE and
expired iterator stall
discard 07e587943c93 CAMEL-24156: camel-aws2-sqs/sns - Fix FIFO queue/topic
handling
discard 3a48b634a6ad CAMEL-24156: camel-aws2-s3 - Fix resource leaks and
multipart bucket mismatch
add 4f887ea6d264 CAMEL-24157: camel-aws2 - Fix medium-severity findings
from July 2026 review (#24864)
add edf03f86d84e CAMEL-24159: camel-azure-servicebus - fix medium-severity
bugs from code review (#24865)
add cd8268220566 CAMEL-24159: camel-azure-eventhubs - fix medium-severity
bugs from code review (#24867)
add f05c571a44b8 CAMEL-24159: camel-azure-storage-blob - Fix
medium-severity bugs from code review (#24869)
add dd1d7cafed24 CAMEL-24196: camel-aws2-sqs - Fix QueueDoesNotExist
swallowed, thread pool leak, and batch chunking
add d8be2daaa324 CAMEL-24195: camel-aws2-s3 - Fix StreamUploadProducer
race condition and timeout task exception handling
add f6ae9ecad39b CAMEL-24159: camel-azure-storage-datalake - Fix
medium-severity bugs from code review
add 054611d9be95 CAMEL-24150, CAMEL-24151: Saga EIP fixes — shared service
lifecycle, code review findings
add dcdccdb82e36 CAMEL-24156: camel-aws2-s3 - Fix resource leaks and
multipart bucket mismatch
add 938aaaa0b9ca CAMEL-24156: camel-aws2-sqs/sns - Fix FIFO queue/topic
handling
add b85004ba6d4b CAMEL-24156: camel-aws2-kinesis - Fix shardClosed NPE and
expired iterator stall
add e6ad75fee3b9 CAMEL-24156: camel-aws2-kinesis - Fix connection close
reset and resume concurrency
add 2ae6e1439b03 CAMEL-24156: camel-aws2-ddb - Fix numeric type mapping in
JSON transformer
add cc6b42d6dfd1 CAMEL-24156: Address review feedback - preserve
KinesisResumeAction registry lookup
add d11dd9eddb5e CAMEL-24156: Address review feedback - upgrade guide note
for SQS delay change
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 (3c881304b336)
\
N -- N -- N refs/heads/fix/CAMEL-24156 (d11dd9eddb5e)
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/aws2-s3.json | 2 +-
.../camel/component/aws2/ddb/Ddb2Endpoint.java | 6 +-
.../camel/component/aws2/ddb/ScanCommand.java | 3 +-
.../ddb/transform/Ddb2JsonDataTypeTransformer.java | 2 +-
.../apache/camel/component/aws2/s3/aws2-s3.json | 2 +-
.../camel/component/aws2/s3/AWS2S3Consumer.java | 38 ++++++++--
.../camel/component/aws2/s3/AWS2S3Endpoint.java | 13 +++-
.../camel/component/aws2/s3/AWS2S3Producer.java | 47 ++++++++++--
.../aws2/s3/stream/AWS2S3StreamUploadProducer.java | 29 ++++++--
.../camel/component/aws2/sns/Sns2Endpoint.java | 9 ++-
.../aws2/sns/Sns2ProducerHealthCheck.java | 10 ++-
.../camel/component/aws2/sqs/Sqs2Consumer.java | 26 +++++++
.../camel/component/aws2/sqs/Sqs2Producer.java | 65 +++++++++-------
.../eventhubs/EventHubsCheckpointUpdaterTask.java | 4 +-
.../azure/eventhubs/EventHubsComponent.java | 8 +-
.../azure/eventhubs/EventHubsConsumer.java | 4 +-
.../azure/eventhubs/EventHubsProducer.java | 8 +-
.../azure/servicebus/ServiceBusComponent.java | 8 +-
.../azure/servicebus/ServiceBusConsumer.java | 24 ++++--
.../azure/servicebus/ServiceBusProducer.java | 19 +++--
.../ServicebusCloudEventDataTypeTransformer.java | 2 +-
.../azure/servicebus/ServiceBusConsumerTest.java | 29 +++++++-
.../storage/blob/BlobCommonRequestOptions.java | 5 +-
.../azure/storage/blob/BlobComponent.java | 4 +-
.../blob/operations/BlobChangeFeedOperations.java | 2 +-
.../storage/blob/operations/BlobOperations.java | 53 ++++++++++++-
.../azure/storage/datalake/DataLakeComponent.java | 14 ++--
.../operations/DataLakeFileOperations.java | 9 ++-
.../org/apache/camel/service/lra/LRAClient.java | 21 ++++--
.../camel/service/lra/LRASagaCoordinator.java | 4 +-
.../apache/camel/service/lra/LRASagaService.java | 24 +++---
.../src/main/docs/modules/eips/pages/saga-eip.adoc | 4 +-
.../processor/saga/MandatorySagaProcessor.java | 5 +-
.../camel/processor/saga/NeverSagaProcessor.java | 5 +-
.../processor/saga/NotSupportedSagaProcessor.java | 5 +-
.../processor/saga/RequiredSagaProcessor.java | 5 +-
.../processor/saga/RequiresNewSagaProcessor.java | 5 +-
.../apache/camel/processor/saga/SagaProcessor.java | 24 ++----
.../camel/processor/saga/SagaProcessorBuilder.java | 20 ++---
.../processor/saga/SupportsSagaProcessor.java | 5 +-
.../java/org/apache/camel/reifier/SagaReifier.java | 12 ++-
.../processor/SagaSharedServiceRouteStopTest.java | 86 ++++++++++++++++++++++
.../apache/camel/saga/InMemorySagaCoordinator.java | 34 ++++++---
.../ROOT/pages/camel-4x-upgrade-guide-4_22.adoc | 8 ++
.../endpoint/dsl/AWS2S3EndpointBuilderFactory.java | 12 ++-
.../java/org/apache/camel/main/KameletMain.java | 2 +-
.../apache/camel/main/download/SagaDownloader.java | 14 +++-
47 files changed, 548 insertions(+), 192 deletions(-)
create mode 100644
core/camel-core/src/test/java/org/apache/camel/processor/SagaSharedServiceRouteStopTest.java