Versions Compared

Key

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

...

Versions hierarchy app adds two custom JQL functions to search issues in versions hierarchy: subversions and vrSubfoldervhSubfolder.

The result of both functions is a list of versions, that's why you should use them in a combination with version field, e.g. "fixVersion in subversions(…)".

Function

Parameters

Examples

subversions()

  1. project key - key of the project to search in

  2. version name - find issues for this version and all its nested versions

You can optionally provide the third parameter as "false" to exclude issues of current version from the result

  • fixVersion in subversions("DEMO", "Version 1.0")

  • affectVersion in subversions("DEMO", "Version 1.1", "false")

vrSubfoldervhSubfolder()

  1. project key - key of the project to search in

  2. folder name - find issues for all hierarchy items under this folder

  • fixVersion in vrSubfoldervhSubfolder("DEMO", "folder 1")

Select versions in issue

...