This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git.
omit b495080 Regen for commit 2c6b7a56e765f17700417d7b85f5f7c22226f1d3 add 34a391f CAMEL-16914: simplify handling of numeric headers for idempotency support (#6053) add 79c81e6 Upgrade Commons Pool 2 to version 2.11.1 add 648775b Sync deps 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 (b495080) \ N -- N -- N refs/heads/regen_bot (648775b) 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: camel-dependencies/pom.xml | 2 +- .../camel-kafka/src/main/docs/kafka-component.adoc | 47 + .../component/kafka/serde/KafkaSerdeHelper.java | 43 + .../integration/CustomHeaderDeserializer.java | 40 + .../kafka/integration/KafkaConsumerFullIT.java | 3 + .../integration/KafkaConsumerIdempotentIT.java | 91 ++ .../KafkaConsumerIdempotentTestSupport.java | 69 ++ ...kaConsumerIdempotentWithCustomSerializerIT.java | 87 ++ .../KafkaConsumerIdempotentWithProcessorIT.java | 94 ++ .../integration/KafkaConsumerTopicIsPatternIT.java | 3 + .../sql/stored/template/generated/SSPTParser.java | 833 ++++++------- .../template/generated/SSPTParserConstants.java | 110 +- .../template/generated/SSPTParserTokenManager.java | 1222 ++++++++++---------- .../modules/ROOT/pages/kafka-component.adoc | 47 + parent/pom.xml | 2 +- 15 files changed, 1619 insertions(+), 1074 deletions(-) create mode 100644 components/camel-kafka/src/main/java/org/apache/camel/component/kafka/serde/KafkaSerdeHelper.java create mode 100644 components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/CustomHeaderDeserializer.java create mode 100644 components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentIT.java create mode 100644 components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentTestSupport.java create mode 100644 components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentWithCustomSerializerIT.java create mode 100644 components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentWithProcessorIT.java