From 1a03e9f5e112cf9d7de3b0b55347a2ec1de00684 Mon Sep 17 00:00:00 2001 From: Amir Mofakhar Date: Fri, 19 Jul 2024 10:27:08 +0100 Subject: [PATCH] fixed schema --- CHANGELOG.md | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64904465a..68aa0848a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +0.64.0 (2024-07-19) +------------------- +- Update `sync_tables` and `import_config` commands + - new optional config setting for source tables size checking + - checking the size of source tables in `tap_mysql` and `tap_postgres` to `target_snowflake` and failing fast sync + if the size is not allowed + - added `--force` argument for `sync_tables` command to ignore size checking + 0.63.0 (2024-07-08) --------------------- - Bump `pipelinewise-tap-jira`from `2.0.1` to `2.2.0` diff --git a/setup.py b/setup.py index 768d58b7e..6a534453a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name='pipelinewise', python_requires='==3.8.*', - version='0.63.0', + version='0.64.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',