Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
release 1.8.1 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samira-El authored Sep 23, 2021
1 parent 280aaf0 commit ae9b211
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.8.1 (2021-09-23)
-------------------
**Fixes**
- LOG_BASED: Handle dates with year > 9999.
- INCREMENTAL & FULL_TABLE: Avoid processing timestamps arrays as timestamp

1.8.0 (2021-06-23)
-------------------

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ Full list of options in `config.json`:
| break_at_end_lsn | Boolean | No | Stop running the tap if the newly received lsn is after the max lsn that was detected when the tap started. (Default: true) |
| max_run_seconds | Integer | No | Stop running the tap after certain number of seconds. (Default: 43200) |
| debug_lsn | String | No | If set to `"true"` then add `_sdc_lsn` property to the singer messages to debug postgres LSN position in the WAL stream. (Default: None) |
| tap_id | String | No | ID of the pipeline/tap (Default: None) |
| itersize | Integer | No | Size of PG cursor iterator when doing INCREMENTAL or FULL_TABLE (Default: 20000) |
| default_replication_method | String | No | Default replication method to use when no one is provided in the catalog (Values: `LOG_BASED`, `INCREMENTAL` or `FULL_TABLE`) (Default: None) |


### Run the tap in Discovery Mode
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
long_description = f.read()

setup(name='pipelinewise-tap-postgres',
version='1.8.0',
version='1.8.1',
description='Singer.io tap for extracting data from PostgresSQL - PipelineWise compatible',
long_description=long_description,
long_description_content_type='text/markdown',
author='TransferWise',
author='Wise',
url='https://github.com/transferwise/pipelinewise-tap-postgres',
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3',
Expand All @@ -33,4 +33,4 @@
tap-postgres=tap_postgres:main
''',
packages=['tap_postgres', 'tap_postgres.sync_strategies']
)
)

0 comments on commit ae9b211

Please sign in to comment.