Versions Compared

Key

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

The add-on provides several JQL extension to query Version Graph. You can pass either version id or version name to all JQL clauses. All of this JQL clauses returns list of version and can be combined with other JQL clauses. If you pass version name it is especially important to combine it with a project selection clause because the same version name may belong to different projects. For example several projects may have "1.0.0" version. 

JQL

Examples

Description

betweenVersions(startVersionIdOrName, endVersionIdOrName)



Panel

project = ERP AND fixVersion in betweenVersions(“1.2.0”, “1.0.0”)

Panel

project = ERP AND affectsVersion in betweenVersions(“1.2.0”, “1.0.0”)

All issues with versions between 1.0.0 and 1.2.0.



geVersion(versionIdOrName)



Panel

project = ERP AND fixVersion in geVersion(“1.0.2”)

Panel

project = ERP AND affectsVersion in geVersion(“1.0.2”)

All issues with “fixVersion” greater than or equal to 1.0.2



gtVersion(versionIdOrName)



Panel

project = ERP AND fixVersion in gtVersion(“1.1.0”)

Panel

project = ERP AND affectsVersion in gtVersion(“1.1.0”)

All issues with “fixVersion” greater than 1.1.0



leVersion(versionIdOrName)



Panel

project = ERP AND fixVersion in leVersion(“1.0.1”)

Panel

project = ERP AND affectsVersion in leVersion(“1.0.1”)

All issues with “fixVersion” less than or equal to 1.0.1



ltVersion(versionIdOrName)



Panel

project = ERP AND fixVersion in ltVersion(“1.0.1”)

Panel

project = ERP AND affectsVersion in ltVersion(“1.0.1”)

All issues with “fixVersion” less than or equal to 1.0.1