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 64b6171e753c CAMEL-24156: camel-aws2-ddb - Fix numeric type mapping in
JSON transformer
discard 52cb659e8f75 CAMEL-24156: camel-aws2-ddb - Fix stream consumer CME,
pagination, and expired iterator
discard f319494b24b9 CAMEL-24156: camel-aws2-kinesis - Fix connection close
reset and resume concurrency
discard 7fdc747b086a CAMEL-24156: camel-aws2-kinesis - Fix shardClosed NPE and
expired iterator stall
discard 37bfe94d9691 CAMEL-24156: camel-aws2-sqs/sns - Fix FIFO queue/topic
handling
discard a7c28e995666 CAMEL-24156: camel-aws2-s3 - Fix resource leaks and
multipart bucket mismatch
add 56cd8dfdbf4b CAMEL-24154: camel-aws2-ddb - Fix DDB Streams consumer
silent data loss on resharding
add 3aaa8037a18c CAMEL-24153: camel-aws2-s3 - Fix streaming upload
truncation and orphaned multipart uploads
add 701eb46e477e CAMEL-24161: camel-salesforce - fix medium-severity bugs
from code review
add 73fe3089db15 (chores): fix SonarCloud S1845 naming convention issues
in salesforce and crypto-pgp (#24860)
add fd94df444f86 CAMEL-24194: camel-aws-config - removeConformancePack
reads the correct header (#24854)
add 3a48b634a6ad CAMEL-24156: camel-aws2-s3 - Fix resource leaks and
multipart bucket mismatch
add 07e587943c93 CAMEL-24156: camel-aws2-sqs/sns - Fix FIFO queue/topic
handling
add 6e934d1922cd CAMEL-24156: camel-aws2-kinesis - Fix shardClosed NPE and
expired iterator stall
add 4db5a801bbee CAMEL-24156: camel-aws2-kinesis - Fix connection close
reset and resume concurrency
add 3ac53c58c120 CAMEL-24156: camel-aws2-ddb - Fix numeric type mapping in
JSON transformer
add 3c881304b336 CAMEL-24156: Address review feedback - preserve
KinesisResumeAction registry lookup
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 (64b6171e753c)
\
N -- N -- N refs/heads/fix/CAMEL-24156 (3c881304b336)
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/camel-aws/camel-aws-config/pom.xml | 6 +
.../component/aws/config/AWSConfigProducer.java | 3 +-
.../config/AWSConfigRemoveConformancePackTest.java | 66 +++++++
.../aws2/ddbstream/ShardIteratorHandler.java | 59 ++++--
.../aws2/ddbstream/AmazonDDBStreamsClientMock.java | 9 +
.../aws2/ddbstream/ShardIteratorHandlerTest.java | 105 ++++++++++
.../component/aws2/kinesis/Kinesis2Consumer.java | 14 +-
.../aws2/s3/stream/AWS2S3StreamUploadProducer.java | 18 +-
.../s3/stream/AWS2S3StreamUploadMultipartTest.java | 217 +++++++++++++++++++++
.../camel/converter/crypto/PGPDataFormatUtil.java | 13 --
.../salesforce/SalesforceLoginConfig.java | 2 +-
.../internal/client/AbstractClientBase.java | 5 +
.../internal/client/DefaultRawClient.java | 4 +-
.../internal/client/PubSubApiClient.java | 25 ++-
.../internal/client/SalesforceSecurityHandler.java | 30 +--
.../internal/processor/AbstractRestProcessor.java | 20 +-
.../internal/processor/CompositeApiProcessor.java | 9 +
.../internal/processor/JsonRestProcessor.java | 4 +-
.../internal/processor/PubSubApiProcessor.java | 5 +-
.../internal/streaming/SubscriptionHelper.java | 4 +-
.../camel/component/salesforce/PubSubApiTest.java | 15 +-
21 files changed, 554 insertions(+), 79 deletions(-)
create mode 100644
components/camel-aws/camel-aws-config/src/test/java/org/apache/camel/component/aws/config/AWSConfigRemoveConformancePackTest.java
create mode 100644
components/camel-aws/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/stream/AWS2S3StreamUploadMultipartTest.java