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 eb6db73681b6 CAMEL-24156: Fix KinesisConsumerResumeIT for per-shard
resume action instances
discard d11dd9eddb5e CAMEL-24156: Address review feedback - upgrade guide note
for SQS delay change
discard cc6b42d6dfd1 CAMEL-24156: Address review feedback - preserve
KinesisResumeAction registry lookup
discard 2ae6e1439b03 CAMEL-24156: camel-aws2-ddb - Fix numeric type mapping in
JSON transformer
discard e6ad75fee3b9 CAMEL-24156: camel-aws2-kinesis - Fix connection close
reset and resume concurrency
discard b85004ba6d4b CAMEL-24156: camel-aws2-kinesis - Fix shardClosed NPE and
expired iterator stall
discard 938aaaa0b9ca CAMEL-24156: camel-aws2-sqs/sns - Fix FIFO queue/topic
handling
discard dcdccdb82e36 CAMEL-24156: camel-aws2-s3 - Fix resource leaks and
multipart bucket mismatch
add eceeeaaf9d9c CAMEL-24006: Fix flaky JpaPollingConsumerLockEntityTest
under concurrency
add 27d0663fc626 CAMEL-23465: camel-aws-bedrock - align agent runtime
modelId enum with BedrockConfiguration (#24851)
add 48a28da60ef1 CAMEL-24197: camel-aws2-kinesis - Fix fixed-shardId
DescribeStream on every poll and batch partition key (#24878)
add 21b8be5aa494 CAMEL-24159: camel-azure-storage-queue - Fix
medium-severity bugs from code review (#24870)
add 2d65bce838b4 CAMEL-24156: camel-aws2-s3 - Fix resource leaks and
multipart bucket mismatch
add 3c4f265bce55 CAMEL-24156: camel-aws2-sqs/sns - Fix FIFO queue/topic
handling
add cc559382a803 CAMEL-24156: camel-aws2-kinesis - Fix shardClosed NPE and
expired iterator stall
add 4ba7f6cfa268 CAMEL-24156: camel-aws2-kinesis - Fix connection close
reset and resume concurrency
add d29be2ed4685 CAMEL-24156: camel-aws2-ddb - Fix numeric type mapping in
JSON transformer
add f58f943e8b54 CAMEL-24156: Address review feedback - preserve
KinesisResumeAction registry lookup
add 755c8cc86444 CAMEL-24156: Address review feedback - upgrade guide note
for SQS delay change
add 8bd6ac952f1f CAMEL-24156: Fix KinesisConsumerResumeIT for per-shard
resume action instances
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 (eb6db73681b6)
\
N -- N -- N refs/heads/fix/CAMEL-24156 (8bd6ac952f1f)
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:
.../components/aws-bedrock-agent-runtime.json | 4 +-
.../camel/catalog/components/aws2-kinesis.json | 5 +-
.../agentruntime/aws-bedrock-agent-runtime.json | 4 +-
.../BedrockAgentRuntimeConfiguration.java | 2 +-
.../camel/component/aws2/kinesis/aws2-kinesis.json | 5 +-
.../component/aws2/kinesis/Kinesis2Constants.java | 8 +
.../component/aws2/kinesis/Kinesis2Consumer.java | 108 ++++++--------
.../component/aws2/kinesis/Kinesis2Producer.java | 26 +++-
.../aws2/kinesis/Kinesis2ProducerTest.java | 166 +++++++++++++++++++++
.../KinesisConsumerClosedShardWithSilentTest.java | 17 +--
.../azure/storage/queue/QueueComponent.java | 4 +-
.../storage/queue/client/QueueClientWrapper.java | 4 +
.../storage/queue/operations/QueueOperations.java | 4 +-
.../jpa/JpaPollingConsumerLockEntityTest.java | 22 ++-
.../ROOT/pages/camel-4x-upgrade-guide-4_22.adoc | 20 +++
.../dsl/Kinesis2EndpointBuilderFactory.java | 16 ++
16 files changed, 315 insertions(+), 100 deletions(-)
create mode 100644
components/camel-aws/camel-aws2-kinesis/src/test/java/org/apache/camel/component/aws2/kinesis/Kinesis2ProducerTest.java