This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.
discard d2d064c Avoid slashes on RabbitMQ component omit 18b0fd4 Avoid slashes in sjms2 URLs omit a2185b7 Fix issue #159: camel components secret options are showed in logs omit 360df65 Bump camel dependency to use the latest 3.8.0-SNAPSHOT add 13ddc0c Removed download page add d5527c5 Added a JDBC test case that does not use a custom test data source add 072b2e2 Update try-it-out-on-kubernetes procedure add ed26a8b Ensure the DLQ configuration from Kafka Connect is correctly handled (issue #835) add 9f95613 Create timeout when creating Cassandra's test table add 4610966 Added docs for idempotency first draft add 2156b78 Fix idempotency link in nav add 43147a7 Fix idempotency link on index add 438fc51 Disable couchbase tests by default because they are too unreliable add d5161c7 Use relative link add c0b01cc Fix xref link new a1e629b Bump camel dependency to use the latest 3.8.0-SNAPSHOT new 5394a24 Fix issue #159: camel components secret options are showed in logs new 553fb13 Avoid slashes in sjms2 URLs new b6d8129 Avoid slashes on RabbitMQ component 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 (d2d064c) \ N -- N -- N refs/heads/camel-master (b6d8129) 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. The 4 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: .../apache/camel/kafkaconnector/CamelSinkTask.java | 14 ++- .../ROOT/assets/images/ckc-idempotency-sink.png | Bin 0 -> 364925 bytes .../ROOT/assets/images/ckc-idempotency-source.png | Bin 0 -> 290094 bytes docs/modules/ROOT/nav.adoc | 2 +- docs/modules/ROOT/pages/download.adoc | 10 -- docs/modules/ROOT/pages/idempotency.adoc | 61 ++++++++++ docs/modules/ROOT/pages/index.adoc | 2 +- .../ROOT/pages/try-it-out-on-kubernetes.adoc | 54 +++++---- .../cassandra/clients/dao/TestDataDao.java | 8 +- .../common/BasicConnectorPropertyFactory.java | 19 +++ ...figBuilder.java => ComponentConfigBuilder.java} | 19 ++- .../couchbase/sink/CamelSinkCouchbaseITCase.java | 7 +- ...e.java => CamelSinkJDBCNoDataSourceITCase.java} | 13 ++- .../sjms2/sink/CamelSinkWithDLQJMSITCase.java | 127 +++++++++++++++++++++ 14 files changed, 274 insertions(+), 62 deletions(-) create mode 100644 docs/modules/ROOT/assets/images/ckc-idempotency-sink.png create mode 100644 docs/modules/ROOT/assets/images/ckc-idempotency-source.png delete mode 100644 docs/modules/ROOT/pages/download.adoc create mode 100644 docs/modules/ROOT/pages/idempotency.adoc copy tests/itests-common/src/test/java/org/apache/camel/kafkaconnector/common/{TransformsConfigBuilder.java => ComponentConfigBuilder.java} (66%) copy tests/itests-jdbc/src/test/java/org/apache/camel/kafkaconnector/jdbc/sink/{CamelSinkJDBCITCase.java => CamelSinkJDBCNoDataSourceITCase.java} (93%) create mode 100644 tests/itests-sjms2/src/test/java/org/apache/camel/kafkaconnector/sjms2/sink/CamelSinkWithDLQJMSITCase.java