v0.1.6
view • Fixed setting attributes on the 5 readonly @property
view • Refactored JSON deserialization for every class
view • Changed the due_date format in Card
view • Rename an item for a Checklist.
view • Rename header Content-type to Content-Type.
view • Add setter to Card.description
view • Add members methods to Board class
view • rename to changelog
0.3.0
view • use requests and requests-oauthlib to simplify code and make it Python 3 compatible
view • bumped version to 0.2.0, updated setup.py and requirements.txt
view • added test for Board.get_cards and Card.delete -> 0.2.1
view • Extended test for Board.get_cards
view • Remove get_list
from TrelloClient (closes #51)
view • Fix util.py for Python2
view • added property Card.date_last_activity : datetime, and test for fetching card attributes (including the new datetime property)
view • Unified initialization of cards from JSON data. Added optionally lazy properties for comments and checklists.
view • Python 2 fix (@henriquegemignani )
view • version bumped and dependency "dateutil" added
view • Allow empty due dates
view • Change requirement dateutil to python-dateutil.
view • Fix python2 support (no annotations)
view • Add method get_card, fixes #62
view • FIX: Inverted arguments
view • make util script executable
view • Add shebang to util.py
view • [NEW]: support attachments from file or url
view • Added method to Card object to update card name
view • fetch_checklists: allow the list to be empty
view • added the rename method on Checklist
view • added the delete method on Checklist
view • refactor tests to avoid code duplication and flake8 reports
view • raised coverage to 80%
view • Added support for Organizations
view • Fix Board.from_json call parameterization
view • Add a default app name
view • Updated the create_oauth_token() function to include the ability to suppress printing the secrets and tokens, as well as returning the access tokens after the OAuth request.
view • Added open() to Boards and Lists
view • added due_date property
view • handling pos attribute
view • Added the Label class and fixed the labels property to cards
view • Added functionality to add a Label to a board
view • Updated the from_json documentation to reflect the parent board as being on the arguments, as opposed to the Trello Client I had originally
view • Removed Board.open() and List.open() for the pull request
view • Added the ability to add a label on card creation. Added a call to add a label to a card directly. Added a call to get all labels for a board
view • Added the ability to archive all cards, and add a due date on a card. Additionally, I updated creating a new card to use the Card path instead of the List path, since it allows for adding Labels by ID instead of by color
view • added sphinx docs
view • improved docs slightly
view • improved docs slightly
view • improved docs slightly
view • card might be initialized with either board or list
view • card labels are returned as Label class instead of dicts
view • setUp -> setUpClass
view • added list to card
view • Remove unused Member.commentCard attribute
view • Fix docstring typo in Member.fetch()
v0.3.1
view • bump version since I forgot to sign
v0.4.0
view • Revert "Removed Board.open() and List.open() for the pull request"
view • datetime.strptime -> dateparser.parse
view • The fields 'status' and 'initials' appear optional
view • Use hour, min, sec to help deal with TZ issues
view • Don't error out if no due date
view • Add ability to subscribe to a card
view • broken code into multiple files
view • broken tests into multiple files + change board test list behavior (each run create a new list)
view • FIX saner way to deal with circular import between list/card
view • Add myself to contributors list and cleanup setup.py
v0.4.1
view • Fix import bugs + bug in tests for card due date
view • bump to 0.4.1
view • fix unicode bug (tests for python3 are broken)
v0.4.2
view • card : checklists and comments are sorted; checklists and comments won't raise AttributeError if not already fetched; style nitpicking
view • members : comments are sorted
view • trelloclient : add optional import of PyOpenSSL useful for python < 2.7.9 and 3.2 to prevent security issues with openssl (More info : https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning)
view • tests : more tests and broken into multiple files
view • Proposition of changelog for 0.4.2
v0.4.3
view • Allow cards to unassign members
view • Use the proper ref in the lambda (fixes #108)
v0.5.0
view • Add remove_label function to card
view • Members: Add "fetch_cards" and "fetch_notifications" methods.
view • A few things I added for a project of mine: 1. all_boards can now filter, for example open (https://developers.trello.com/advanced-reference/member#get-1-members-idmember-or-username-boards) 2. Cards and boards parse dateLastActivity without needing another fetch (as it is returned in the original json).
view • None out the date_last_activity as I "promoted" it to the json parsing, so it'll be weird if it just didn't exist if parse failed.
view • How the hell did I manage to add tabs? :)
view • fix #66 - strings are encoded with UTF-8 to be compatible with python 2 and decoded with utf-8 to be compatible with python 3
view • Revert "fix #66 - strings are encoded with UTF-8 to be compatible with python 2 and decoded with utf-8 to be compatible with python 3"
view • Add card filter parameter to List.list_cards()
view • Add cloning from a source card to add_card()
view • Add functionality to retrieve a Label object
view • Add URL shorturl property
view • Added card_filter argument to Board.get_cards()
view • Fixed gh-124. -Added support for a source_board parameter to add_board - Added tests for add_board, copy_board, close_board - Modified list boards to only look at open boards - This commit now causes the test account to accumulate closed boards
view • gh-124 Fix for original PR, unit tests had flaw that hid non-working code for copying board.
view • added test for closed cards, fixed tests for python3(except test_delete_cards)
view • added action_limit for board. plus the unittests
view • action_limit is an optional parameter
view • add due date
view • Add ability to specify which organization to create a board on
view • implement deletion of single checklist items
view • refactoring by removing some duplication
view • implement clearing of checklists
view • Updates to support attachments as per Walter's comments https://trello.com/c/5L574YgX/4-add-attachments-to-card
view • Added obtaining all checklists directly from the board and the respective test
0.5.1
view • Once a card has reached done list stop time measurement
view • Refactoring to avoid repeated code between Card.listCardMove_date and Card.list_movements
view • Complete statistics about Trello cards
view • List position should not be computed based on list.pos, it should be computed by an external function passed as a parameter
view • Improve the comments in Card.get_stats_by_list
view • Adds date filter when extracting card stats. This way we can have a workaround to the limitation of Trello API to get only last 1000 board movements
view • added card_created_date() function
view • changed oauth section run command into block quote to match the rest of the file
view • try this version
view • RST hates me
view • RST hates me
view • it would help if I wasn't previewing on the master branch
view • Added remove_attachment shortcut
view • Implement delete comments method on card
0.6.0
view • Encoding: use unicode everywhere
view • tests: add tox support
view • tests: replace use of deprecated assertEquals with assertEqual
view • README: formatting fixes
0.6.1
view • README: fix hybrid markdow/rst syntax
view • add gitignore .tox/\nupdate all of comment about :rtype: to remove warning
view • fix inverted logic in python2 check
view • Python 2 is less than Python 3
view • Don't call it a checklist item id if it's actually an index
view • Fix the docstring to match the call signature
view • Note that 'eager' fetches attachments also
view • Don't be coy about returning an empty list if there are no attachments
view • Some whitespace tweaks and a comment fix
view • 'create_date' is evidently a typo