This site is moving soon to become part of an integrated Appfire documentation and information site for our apps. This site will remain available during the transition to our new and improved site. Once this site is moved over, this banner will be updated with the new site link for easy access.

Take a look here! If you have any questions please email support@appfire.com

Search Issues by Version

Basics

In Jira JQL you can search issues by fixVersion pretty easily:

fixVersion=v2.2

or if you’re interested in more than one version:

fixVersion in (v2.2, v2.4)

You can even find issues matching a range of versions. For example, if there are 4 versions v1.0, v2.0, v2.1, v2.2, v3.0 and you want to see all v2 versions:

fixVersion>=v2.0 and fixversion <=v2.2

It’s important to understand that the order of versions is controlled by the order they are arranged in your project’s versions configuration and not by the version number! If the order is incorrect, just go to your Project Settings → Versions and reorder the versions by drag and drop.

Wildcard searching and regular expressions

Searching using the version order can be problematic because you need to use an existing version as a range limit. Sometimes you may also want to find issues with versions that contain a particular text in the version name. Fortunately, you can perform advanced version searches with JQL Search Extensions.

To search by wildcard, go to Extended Search and execute issue in wildcardMatch("fixVersion", "v2.0*") to find all issues with versions starting with “v2.0”. You can put a wildcard anywhere in a search text.

For even more control you can leverage regular expressions. The following query only matches versions between v.2.0 and v2.5 that are betas:

issue in regex("fixVersion", "v2.[0-5]-beta")

For more examples on how to use the functions have a look at the documentation for wildcardMatch and regex.