Skip to content

Commit

Permalink
[TDL-24569] New Stream inclusion: subtasks (#56)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
somethingmorerelevant and nitingaikwad1 authored Dec 18, 2023
1 parent 45a2774 commit 6b3af3c
Show file tree
Hide file tree
Showing 9 changed files with 1,040 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.3.0
* New Stream Inclusion: Subtasks [#56](https://github.com/singer-io/tap-asana/pull/56)

## 2.2.0
* Below are the changes [#48](https://github.com/singer-io/tap-asana/pull/48)
* Upgraded the asana-python SDK
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This tap:
- [Projects](https://developers.asana.com/docs/projects)
- [Sections](https://developers.asana.com/docs/sections)
- [Stories](https://developers.asana.com/docs/stories)
- [Subtasks](https://developers.asana.com/reference/getsubtasksfortask)
- [Tags](https://developers.asana.com/docs/tags)
- [Tasks](https://developers.asana.com/docs/tasks)
- [Teams](https://developers.asana.com/docs/teams)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="tap-asana",
version="2.2.0",
version="2.3.0",
description="Singer.io tap for extracting Asana data",
author="Stitch",
url="http://github.com/singer-io/tap-asana",
Expand All @@ -28,7 +28,7 @@
tap-asana=tap_asana:main
""",
packages=["tap_asana"],
package_data = {
package_data={
"schemas": ["tap_asana/schemas/*.json"]
},
include_package_data=True,
Expand Down
Loading

0 comments on commit 6b3af3c

Please sign in to comment.