Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mongodb/docs-kafka-connector into…
Browse files Browse the repository at this point in the history
… DOCSP-40133-custom-authprovider
  • Loading branch information
rustagir committed Jun 13, 2024
2 parents 3aaeb6d + 7ba901d commit bcee423
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 139 deletions.
7 changes: 6 additions & 1 deletion source/includes/fundamentals/cdc/debezium.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ CDC events from each of the preceding datastores:
database=<your mongodb database>
collection=<your mongodb collection>
topics=<topic containing debezium cdc events>
change.data.capture.handler=com.mongodb.kafka.connect.sink.cdc.debezium.mongodb.MongoDbHandler
change.data.capture.handler=com.mongodb.kafka.connect.sink.cdc.debezium.mongodb.ChangeStreamHandler
.. note::

If you are using a Debezium CDC version earlier than 2.0, set the value of the
``change.data.capture.handler`` property to ``com.mongodb.kafka.connect.sink.cdc.debezium.mongodb.MongoDbHandler``.

To view the source code for the Debezium CDC handler, see
:github:`the {+connector+} source code </mongodb/mongo-kafka/tree/{+connector_version_github_tag+}/src/main/java/com/mongodb/kafka/connect/sink/cdc/debezium>`.
Expand Down
137 changes: 0 additions & 137 deletions source/source-connector/configuration-properties/copy-existing.txt

This file was deleted.

19 changes: 18 additions & 1 deletion source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ What's New

Learn what's new by version:

* :ref:`Version 1.13 <kafka-connector-whats-new-1.13>`
* :ref:`Version 1.12 <kafka-connector-whats-new-1.12>`
* :ref:`Version 1.11.2 <kafka-connector-whats-new-1.11.2>`
* :ref:`Version 1.11.1 <kafka-connector-whats-new-1.11.1>`
Expand All @@ -39,6 +40,22 @@ Learn what's new by version:
* :ref:`Version 1.1 <kafka-connector-whats-new-1.1>`
* :ref:`Version 1.0 <kafka-connector-whats-new-1.0>`

.. _kafka-connector-whats-new-1.13:

What's New in 1.13
------------------

- Added a custom authentication provider interface for Source and Sink
Connectors. This feature enables you to write and use a custom implementation
class in your connector.

.. TODO add link To learn more, see the :ref:`` guide.

- Fixed an issue that occurred when validating configuration for Source
and Sink Connectors if the configuration contained secrets and used
the ``Provider`` framework. To learn more about this fix, see the
`KAFKA-414 <https://jira.mongodb.org/browse/KAFKA-414>`__ JIRA issue.

.. _kafka-connector-whats-new-1.12:

What's New in 1.12
Expand Down Expand Up @@ -240,7 +257,7 @@ Source Connector
- Added support for the
:manual:`allow disk use </reference/command/aggregate/#std-label-aggregate-cmd-allowDiskUse>`
field of the {+query-api+} in the copy existing aggregation with the
``copy.existing.allow.disk.use`` :ref:`configuration property <source-configuration-copy-existing>`
``copy.existing.allow.disk.use`` configuration property
- Added support for `Avro schema namespaces <https://avro.apache.org/docs/current/spec.html#names>`__
in the ``output.schema.value`` and ``output.schema.key``
:ref:`configuration properties <source-configuration-output-format>`
Expand Down

0 comments on commit bcee423

Please sign in to comment.