Versions Compared

Key

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

Basics

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

...

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 the your Project Settings → Versions and reorder the versions by drag and drop.

Wildcards 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.

...

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

...

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

...

You can also try JQL Search Extensions in your Jira now!

...