diff --git a/CHANGELOG.md b/CHANGELOG.md index 94f10a0..cf1a8d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.1.0 + +Make 2 LOG_BASED parameters configurable: + +* `await_time_ms` would control how long the log_based method would wait for new change streams before stopping, default is 1000ms=1s which is the default anyway in the server. + +* `update_buffer_size` would control how many update operation we should keep in the memory before having to make a call to `find` operation to get the documents from the server. The default value is 1, i.e every detected update will be sent to stdout right away. + ## 1.0.1 * Fix case where resume tokens has extra properties that are not json serializable by saving `_data` only. diff --git a/setup.py b/setup.py index ffda4b5..f69af91 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ long_desc = fh.read() setup(name='pipelinewise-tap-mongodb', - version='1.0.1', + version='1.1.0', description='Singer.io tap for extracting data from MongoDB - Pipelinewise compatible', long_description=long_desc, long_description_content_type='text/markdown',