Skip to content

Releases: jpetrucciani/pyclickup

User-Agent support

14 Aug 12:59
Compare
Choose a tag to compare

Thanks to @bastbnl (#10), we now have support for overriding the User-Agent for this library!

Naive get by id for most objects

02 Jan 21:01
Compare
Choose a tag to compare

In this release, I've added a naive implementation helper method to get certain objects by their ID.

Hopefully when their v2 of the API is released, these can be remapped to the right API calls!

This also adds some type annotations for the model methods like List.create_task and Task.update.

Fixing Task.update

04 Dec 13:44
Compare
Choose a tag to compare

This release should resolve #6.

The add_assignees and remove_assignees parameters are now correctly documented as Lists of int/Users instead of just int/User, and the list is defaulted to an empty list if nothing is passed to the function.

Thanks @y-aok for bringing up this issue!

Basic Task Creation

12 Nov 23:05
Compare
Choose a tag to compare

This adds basic task creation to the List class so that you can make tasks programmatically!

Related to issue #5 by @Sergprotector

Using a ClickUp List object, you can provide a few different options to customize the new task. The method will return the id of the new task you created; however, if you'd like that task's object, you'll have to re-query the List for it, as currently ClickUp does not have an API method to fetch a single task by id.

The API endpoint this is based on can be found here.

More PyPi release fixes

29 Sep 17:50
701a23a
Compare
Choose a tag to compare

PyPi import fixes

29 Sep 13:49
42ea712
Compare
Choose a tag to compare

Thanks @y-aok!

This solves the issues on pip install if you don't already have requests installed.

Type Annotations

25 Sep 19:12
Compare
Choose a tag to compare

Adding a ton of type annotations to the client module

Cleanup of the travis build

18 Sep 19:00
Compare
Choose a tag to compare

This cleans up the travis builder so that on deployments it doesn't show up as failing.
It also cleans up some of the magic locals() usage

Fixing packaging issues with m2r

18 Sep 17:46
Compare
Choose a tag to compare

Switching readme to rst so I don't have to deal with any issues related to converting that on deploy

PyPi readme renderer

18 Sep 17:06
Compare
Choose a tag to compare

This release updates some of the readme related stuff for PyPi!