Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.43.0 #934

Merged
merged 4 commits into from
Apr 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
0.43.0 (2022-04-07)
-------------------

*Breaking changes*
- Bump `tap-kafka` to `7.0.0`
- Drop not null constraints on Snowflake tables PK columns.

*Added*
- Send failure alerts to slack channel defined in tap, `slack_alert_channel`
- Backup state file before tap starting

*Fixes*
- Patch tap-mysql to `1.5.1`
- Don't use log files to check tap status before starting it.
- Change to e2e tests structure

0.42.1 (2022-03-17)
-------------------
- Bump `tap-kafka` to `6.0.0`
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,18 @@

setup(name='pipelinewise',
python_requires='>=3.7,<3.10',
version='0.42.1',
version='0.43.0',
description='PipelineWise',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Wise',
url='https://github.com/transferwise/pipelinewise',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'argparse==1.4.0',
Expand Down