Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Latest commit

 

History

History
59 lines (41 loc) · 1.85 KB

CHANGELOG.md

File metadata and controls

59 lines (41 loc) · 1.85 KB

2.3.0

  • Switch from httplib2 to requests
  • Add files parameter to support multipart uploads for Help Center attachment style requests
  • Enhance api_gen.py to handle downloading and patching of developer.zendesk.com
  • Add Zopim and numerous other API endpoints
  • Regenerate API from updated mirror. See full commit

2.2.1

  • Remove common_params, allowing all kwargs to be passed as queries

2.2.0

  • Add exception classes to top level. e.g. from zdesk import ZendeskError works now
  • Modify api_gen.py so that update_many_update becomes just update_many
  • Regenerate API from updated mirror. See full commit

2.1.1

  • Remove explicit HTTP status code checking. Success is always in the 200 range, with some specific exceptions raised for only a few specific 400 range codes.

2.1.0

  • Support non-JSON data for, e.g., creating uploads
  • Add sort_by common parameter
  • Regenerate API from updated mirror. See full commit
  • Update examples/__init__.py with fixes and ticket updates and uploads
  • Reorder CHANGELOG.md with most recent releases at top

2.0.3

  • Add get_all_pages option to call to exhaustively follow next_page
  • Combine and reduce multiple requests when using get_all_pages

2.0.2

  • Always inject auth credentials into request when they are supplied

2.0.1

  • Immediately fix import bug in 2.0.0

2.0.0

  • Drop APIv1 support code completely
  • Drop endpoints dicts for new API generator approach
  • Support Python 2 and Python 3 in codebase without 2to3 translation

1.2.0

  • Fork zendesk from eventbrite
  • Merge PRs and apply fixes
  • Python 3 compatibility