Skip to content

Releases: Asana/python-asana

v0.10.2

08 Sep 20:30
Compare
Choose a tag to compare

Fixes BatchAPI being ignored on the client.

v0.10.1

25 Aug 18:21
Compare
Choose a tag to compare

Added team_memberships to resources

v0.10.0

14 Feb 00:54
ebfbafb
Compare
Choose a tag to compare

This version converts our client libraries to use the OpenAPI spec. We also switched to a more consistent naming convention. This version keeps the old methods and adds the new method names.

v0.9.2

20 Dec 19:03
Compare
Choose a tag to compare

Fixes an incorrectly strict requirement.

v0.9.1

07 Sep 00:27
Compare
Choose a tag to compare

This release contains one change, to fix some string templating when uploading attachments that was broken with string IDs.

v0.9.0

05 Aug 23:14
Compare
Choose a tag to compare

This adds api functionality the the client libraries have been missing:

  • Portfolios
  • PortfolioMemberships
  • Jobs
  • UserTaskLists

This update also includes Asana-Change warnings. These warnings pop up every time a request is made and the response contains a deprecation header. You can find out how to work with these here.

Fix issue #79

16 Oct 00:14
Compare
Choose a tag to compare

In Python 3.7, it's bad form to raise StopIteration at the end of a loop - and it yells at you for it by turning the exception into a Runtime Exception.

This simply removes throwing this, since it should be safe to just return.

Tested with pipenv on 2.7 and 3.7. We don't officially support 3.7 yet due to https://bugs.python.org/issue34226, but we should be close - support for everything except attachments.

v0.8.1

03 Oct 23:18
Compare
Choose a tag to compare

This fixes a bug with setting custom headers and fixes #80.

v0.8.0

20 Aug 18:30
14130bc
Compare
Choose a tag to compare

This release contains many of the API updates that have accumulated since the last release, including:

  • The search API
  • Dependencies
  • Custom field creation
  • Project memberships
  • Project statuses
  • Editing and deleting comments

Added support for client_name option

13 Apr 00:48
Compare
Choose a tag to compare

Our API can accept a client_name option for apps who wish to identify themselves, but we weren't properly pulling this out into the payload and query params.