Releases: rwjdk/TrelloDotNet
Releases · rwjdk/TrelloDotNet
1.6.7 (5th of July 2023)
General
- Change the Project URL to point at the Wiki
- A bit of restructuring of the ReadMe
1.6.6 (12th of June 2023)
General
- Added Badges in ReadMe for eaiser discovery of additional resources.
1.6.4 (9th of June 2023)
Automation Engine
- Added Automation Trigger
CardMovedAwayFromListTrigger
1.6.3 (7th of June 2023)
Genereal
- Tweaked various documentation for spelling errors
TrelloClient
- Added
MoveCardToListAsync
for greater discoverability how to do it (was already possible viaUpdateCardAsync
)
Automation Engine
- Added Automation Action
AddLabelsToCardAction
- Added Automation Action
AddMembersToCardAction
- Added Automation Action
RemoveMembersFromCardAction
- Added the Webhook Object to the
WebhookNotification
(Trello recently exposed this feature)
1.6.2 (4th of June 2023)
General
- Tweaked various documentation for spelling errors
Automation Engine
- Added Automation Action
RemoveCardDataAction
1.6.1 (31st of May 2023)
General
- Tweaked various documentation for spelling errors
- This changelog now links to the Wiki
Automation Engine
- Added Automation Trigger
CheckItemStateUpdatedOnCardTrigger
- Added Automation Condition
ChecklistItemsCompleteCondition
1.6.0 (12th of May 2023)
General
- Added option to pass
Cancellation Tokens
to the API
TrelloClient
- Added
GetActionsOfBoardAsync
- Added
GetActionsOnCardAsync
- Added
GetActionsForListAsync
- Added
GetActionsForMemberAsync
- Added
GetActionsForOrganizationAsync
- Added
GetCardsForMemberAsync
- Added
AddMemberToBoardAsync
- Added
RemoveMemberFromBoardAsync
- Added
UpdateMembershipTypeOfMemberOnBoardAsync
- Added
GetBoardsInOrganization
- Added
GetMembersOfOrganizationAsync
- Added support for
Organizations
(also know as Workspaces)
Automation Engine
- Added Automation Action
AddCommentToCardAction
- Added Automation Action
StopProcessingFurtherAction
that allow you to conditionally stop any further processing for the specific webhook call. - Updated Automation Action
AddChecklistToCardAction
to now have the option to add Items to existing Checklists with same name (Example two Definition of Done Automations for two different labels add their items to a single Checklist)
1.5.2 (30th of March 2023)
Automation Engine
- Added Automation Action
AddChecklistToCardIfLabelMatchAction
to make combination of creating checklists easier to maintain
1.5.1 (27th of March 2023)
General
- Fixed that strings were not properly URL encoded if they contained an '&'
1.5.0 (27th of March 2023)
TrelloClient
- Added support for managing
Labels-definitions
on the Board - Added support for managing
Attachments
- Added support to set/remove Attachment Cover on a Card
- Added
UpdateChecklistItemAsync
- Added
GetBoardsForMemberAsync
- Added
GetBoardsCurrentTokenCanAccessAsync
- Added
GetMembershipsOfBoardAsync
Automation Engine
- Added Automation Action
RemoveLabelsFromCardAction
- It is now legal to have a null as a Condition in Automation Engine (indicating there are no further conditions)
- Fixed that 'Constraint' was spelled incorrectly (missing an 's') in 2 places (
ListConditionConstraint
andCardMovedToListTriggerConstraint
) [COMPILE TIME BREAKING CHANGE] (sorry but better to change now than later ;-( ) - Fixed that
CardCoverCondition
was not evaluated correctly in all scenarios - Fixed that
SetFieldsOnCardAction
did not update processing result (Executed and Skipped Actions counts)