From 55471860cc2871f121ca27ee0e4e2f773ea39a78 Mon Sep 17 00:00:00 2001 From: Peter Kosztolanyi Date: Tue, 4 Aug 2020 15:53:39 +0200 Subject: [PATCH] [RELEASE] v0.21.0 (#499) --- CHANGELOG.md | 23 +++++++++++++++++++++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2720b4ee8..a9601ec67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +0.21.0 (2020-08-04) +------------------- + +- Improve alert messages to include botocore and generic python exception and error patterns in the alerts + +**Tap S3 CSV**, **Target Snowflake**, **Target S3 CSV**, **Target Redshift** +- Add `aws_profile` option to support Profile based authentication to S3 +- Add option to authenticate to S3 using `AWS_PROFILE`, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` and `AWS_SESSION_TOKEN` environment variables + +**Target Snowflake** +- Fixed an issue when target-snowflake was failing when `QUOTED_IDENTIFIERS_IGNORE_CASE` snowflake parameter set to True +- Fixed an issue when new `SCHEMA` singer message triggered a flush event even if the newly received `SCHEMA` message is the same as the previous one +- Add `s3_endpoint_url` option to support non-native S3 accounts + +**Target S3 CSV** +- Add `naming_convention` option to create custom and dynamically named files on S3 + +**Tap Snowflake** +- Eliminate some warning messages of `optional pandas and/or pyarrow not installed`. + +**Tap Zendesk** +- Fixed and issue when `rate_limit`, `max_workers` and `batch_size` were not configurable via the tap-zendesk YAML file + 0.20.2 (2020-07-27) ------------------- diff --git a/docs/conf.py b/docs/conf.py index 200972287..2d7bd875c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ def setup(app): project = 'PipelineWise' copyright = '2020, TransferWise Ltd.' author = 'TransferWise' -version = '0.20.0' +version = '0.21.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 2f9fdbb29..8ffcbeb01 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ LONG_DESCRIPTION = f.read() setup(name='pipelinewise', - version='0.20.2', + version='0.21.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',