Releases: Asana/python-asana
Releases · Asana/python-asana
v5.0.10
v5.0.9
- Added
privacy_setting
property to portfolios - Update portfolios description
- Added
default_access_level
property to portfolios - Created
PortfolioMembershipCompactResponse
- Added
delivery_retry_count
property to webhook response - Update security scheme in yaml
- Added
team_content_management_access_level
to teams opt_field description - Update security scheme in yaml
v5.0.8
v5.0.7
v3.2.3
- Update v3 to v3.2.3
- Add important message to README.md
v5.0.6
- chore: fixes repsonse type to response #197
- fix: GCP not recognizing access token #196
- Added new allocations endpoints: create_allocation, delete_allocation, get_allocation, get_allocations, update_allocation
- Added update a membership endpoint
v5.0.5
- Remove beta warning from README
- Fixed GitHub Action workflow to publish new versions of python
- Delete task template endpoint added
- Fixed: urlib3 deprecation warning: HTTPResponse.getheaders() is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTPResponse.headers directly. #192
v5.0.3
- Add a custom field to a project endpoint now takes in
opts
argument
BEFORE:
api_response = projects_api_instance.add_custom_field_setting_for_project(body, project_gid)
AFTER:
api_response = projects_api_instance.add_custom_field_setting_for_project(body, project_gid, opts)
v5.0.2
- Fix
call_api
not working when no query_params are provided (Adding a custom field to a project raises exception #188) - Fix page iterator link in README.md going to wrong link
v5.0.0
- Changes from v4:
-
- Query params are now passed in through
opts
dictionary instead of method params
- Query params are now passed in through
- Added pagination
- Updated sample code
- Document how to use new client library features
- Fix response decode issue of special characters from previous versions