Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Find all issues which belong to releases in Done status

Code Block
fixVersion in versionsOfReleasesByStatus("My Board Name","Done")

Find all issues which belong to a particular release

Code Block
fixVersion in versionsOfReleasesByName("My Board Name","My Release Name")

Find all issues which belong to versions in "UAT" status

Code Block
fixVersion in versionsByStatus("My Board Name","UAT")

Find all issues which belong to versions with a tag “Regulation“ across all the board

Code Block
fixVersion in versionsByTags("Regulation")

Find all issues which belong to versions which have tags “Regulation“ and “USA“ at the same time across all the board

Code Block
fixVersion in versionsByTags("Regulation","USA")

Find all issues which belong to versions which have tags “Regulation“ and “USA“ at the same time in “Portal releases board“

Code Block
fixVersion in versionsByTags("Portal releases","Regulation","USA")

Find all issues which belong to versions in the release which have tags “Regulation“ and “USA“ at the same time in “Portal releases board“

Code Block
fixVersion in versionsOfReleasesByName("Portal releases","Regulation","USA")

“issue in ..“ JQL functions (ver. 4.1.0

...

+)

Tip

The below functions returns a list of issues that belongs to all versions managed by Release Management App. So, virtual versions are taken in account as well - both JQL based and Epic based.

...