Skip to content

Commit 6b3af3c

Browse files
[TDL-24569] New Stream inclusion: subtasks (#56)
* added full table sync for subtasks * updated base test * removed pylint warning * more pylint fixes * updated comments * full table to incremental for subtasks * removed unused import * fixed pylint issue * updated subtask schema * updated start date test * updated bookmark test * updated base tests * updated bookmark test * updated start date test * updated readme and changelog * removed logger set to debug * removed unsed import --------- Co-authored-by: Nitin Gaikwad <ngaikwad@talend.com>
1 parent 45a2774 commit 6b3af3c

File tree

9 files changed

+1040
-6
lines changed

9 files changed

+1040
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 2.3.0
4+
* New Stream Inclusion: Subtasks [#56](https://github.com/singer-io/tap-asana/pull/56)
5+
36
## 2.2.0
47
* Below are the changes [#48](https://github.com/singer-io/tap-asana/pull/48)
58
* Upgraded the asana-python SDK

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ This tap:
1313
- [Projects](https://developers.asana.com/docs/projects)
1414
- [Sections](https://developers.asana.com/docs/sections)
1515
- [Stories](https://developers.asana.com/docs/stories)
16+
- [Subtasks](https://developers.asana.com/reference/getsubtasksfortask)
1617
- [Tags](https://developers.asana.com/docs/tags)
1718
- [Tasks](https://developers.asana.com/docs/tasks)
1819
- [Teams](https://developers.asana.com/docs/teams)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="tap-asana",
6-
version="2.2.0",
6+
version="2.3.0",
77
description="Singer.io tap for extracting Asana data",
88
author="Stitch",
99
url="http://github.com/singer-io/tap-asana",
@@ -28,7 +28,7 @@
2828
tap-asana=tap_asana:main
2929
""",
3030
packages=["tap_asana"],
31-
package_data = {
31+
package_data={
3232
"schemas": ["tap_asana/schemas/*.json"]
3333
},
3434
include_package_data=True,

0 commit comments

Comments
 (0)