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

Commit ae9b211

Browse files
authored
release 1.8.1 (#126)
1 parent 280aaf0 commit ae9b211

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.8.1 (2021-09-23)
2+
-------------------
3+
**Fixes**
4+
- LOG_BASED: Handle dates with year > 9999.
5+
- INCREMENTAL & FULL_TABLE: Avoid processing timestamps arrays as timestamp
6+
17
1.8.0 (2021-06-23)
28
-------------------
39

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ Full list of options in `config.json`:
6666
| 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) |
6767
| max_run_seconds | Integer | No | Stop running the tap after certain number of seconds. (Default: 43200) |
6868
| 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) |
69+
| tap_id | String | No | ID of the pipeline/tap (Default: None) |
70+
| itersize | Integer | No | Size of PG cursor iterator when doing INCREMENTAL or FULL_TABLE (Default: 20000) |
71+
| 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) |
6972

7073

7174
### Run the tap in Discovery Mode

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
long_description = f.read()
77

88
setup(name='pipelinewise-tap-postgres',
9-
version='1.8.0',
9+
version='1.8.1',
1010
description='Singer.io tap for extracting data from PostgresSQL - PipelineWise compatible',
1111
long_description=long_description,
1212
long_description_content_type='text/markdown',
13-
author='TransferWise',
13+
author='Wise',
1414
url='https://github.com/transferwise/pipelinewise-tap-postgres',
1515
classifiers=[
1616
'License :: OSI Approved :: GNU Affero General Public License v3',
@@ -33,4 +33,4 @@
3333
tap-postgres=tap_postgres:main
3434
''',
3535
packages=['tap_postgres', 'tap_postgres.sync_strategies']
36-
)
36+
)

0 commit comments

Comments
 (0)