Skip to content

Releases: jchrom/trelloR

trelloR 0.8.0

27 Aug 19:21
Compare
Choose a tag to compare
  • Fixed missing -package alias.
  • Added new function get_batch() to facilitate batch requests
  • Added new function get_card_fields_values() to fetch custom field values
    for a given card id.

trelloR 0.6

12 Oct 22:48
Compare
Choose a tag to compare

New features

  • No need to use the token argument in all function calls, functions now check for a local .httr-oauth file first; you can still use the argument though
  • Nicer functions for retrieving custom fields
  • New wrapper to get board preferences

Other stuff

  • Updated package website and nicer vignettes

trelloR 0.5

31 Mar 18:24
Compare
Choose a tag to compare

New features

  • You can now use URL for model ID

Other stuff

  • When nothing matches the request, a nice message is printed, instead of an ugly warning
  • Updated vignette and pkg docs

trelloR 0.4.0

01 Dec 21:31
Compare
Choose a tag to compare

New features

  • You can now issue PUT and DELETE requests
  • Calling wrappers update_ and delete_ is going to make it easier for you
  • you can decide whether you want to obtain the content of a response (data.frame for get_, list for the others) or a complete response object including headers, statuses etc.

Deprecated arguments

  • bind.rows in get_token() has been deprecated, will always try to return a single data.frame if the content is returned

Other stuff

  • refactored GET-related code to make use of httr for repeated requests, stopping/warning/messaging on errors
  • updated vignette and pkg docs
  • I am now a bit more sensible about package maintenance: Pull from master for production, use master-rc for the hottest of codes (well, even master requires some bravery but it's much better than it was)

trelloR 0.3.0

19 Nov 10:29
Compare
Choose a tag to compare

New features

  • you can now get a token with write and account permissions
  • and you can specify its expiration (incl. never for never expiring tokens)
  • you can now issue POST requests to add cards, comments, members to cards etc.
  • you can use the add_ family of functions, which are wrappers for post_model()

Deprecated functions

  • trello_get_token() has been deprecated, use get_token() instead
  • trello_get_model() has been deprecated, use get_model() instead

Other stuff

  • greater reliance on httr - eg. when building URLs or convert status codes to messages/warnings/errors in R (this is true only for the newly added code, but in time I will rewrite the older code too)
  • updated vignette

trelloR 0.2.0

29 Dec 11:15
Compare
Choose a tag to compare

New features

  • you can now specify values for limit larger than 1000
  • added S3 classes for results
  • some classes (cards_df, actions_df, labels_df, checklists_df) now pretty-print on the console

Deprecated arguments

  • paging has been deprecated, use limit = 0 instead

Bugfixes

  • the internal before parameter is now set correctly (preventing duplicates in results)
  • all messages can now be suppressed (replaced cat with message everywhere)

trelloR 0.1.0

23 Sep 06:32
Compare
Choose a tag to compare

First version of R API for Trello. Implements GET requests for Trello API via httr package.