Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

Product

Version

Smart Checklist for Jira. Free

#.#.##-AC

Smart Checklist for Jira. Pro

#.#.##-AC

  • NEW Search by number of items in JQL

  • NEW Search for a fixed date in JQL

  • NEW Search for checklist items in the particular status

  • NEW Search for checked/unchecked checklist items

  • FIXED Duplicate key value error for JCMA migration

Details

Search by number of items in JQL

Starting from #.#.##-AC it is possible to search for issues by a total number of checklist items (only checkbox items are counted).

Search for issues using the syntax below:

issue.property[SmartChecklist].totalChecklistItems > 5 - return all the issues where there are more than 5 checkbox checklist items.

Available operators could be used: >, >=, <, <=, =, !=.

Search for a fixed date in JQL

Starting from #.#.##-AC search for a specified due date in the checklist item is available.

Search for issues using the syntax below:

issue.property[SmartChecklist].itemsDates ~ '2022-11-11'

Date format used in JQL search should match the date format in the checklist item.

If you are searching for a date: '2022-11-11', it will only match for '2022-11-11', not for '2022/11/11', '11/11/2022' or any other.

Supported date formats can be found here.

Search for checklist items in the particular status

Starting from #.#.##-AC it is allowed to search for issues by checklist items in a particular status.

Search for issues using the syntax below:

issue.property[SmartChecklist].itemsStatus ~ 'Todo'

Search for default status (Todo, Done, Skipped, and In Progress) or any created custom statuses.

Text is case insensitive, so DONE, Done, or done will return the same results.

Search for checked/unchecked checklist items

Starting from #.#.##-AC users are able to search for issues that have checked/unchecked items.

Search for issues using the syntax below:

  • issue.property[SmartChecklist].hasClosedChecklistItems = 'true' - return all issues where there is at least one completed (checked) checklist item;

  • issue.property[SmartChecklist].hasClosedChecklistItems = 'false' - return all issues where all checklist items are open (unchecked);

  • issue.property[SmartChecklist].hasOpenChecklistItems = 'true' - return all issues where there is at least one open checklist item;

  • issue.property[SmartChecklist].hasOpenChecklistItems = 'false' - return all issues where all checklist items are completed;

For any questions or feature requests contact us: smartchecklist@railsware.com

  • No labels