Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JIRA JQL: How can I search for a select version and newer?

Jeremiah Landi
Contributor
January 21, 2016

Hello,

Right now I have the following query:

project = xxxx AND fixVersion in (3.4, 3.4.1, 3.4.2) 

I want a way to find issues within the project greater than or equality to 3.4. Is this possible?

Also, is there a way to just say currentVersion () like you can with openSprints ()?

 

I found an Answer that was closed but involved doing a wild card search.

https://answers.atlassian.com/questions/30052/jql-wildcard-search-of-version-list-like-fixversion

 

1 answer

1 accepted

2 votes
Answer accepted
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 21, 2016

I suspect the best you can do is earliestUnreleasedVersion() and latestReleasedVersion() for finding the current one (you can have many versions so currentVersion would simply beg the question "which one"?). 

And unreleasedVersions() and releasedVersions() can help you with the ranges as long as you're strict on releasing versions when you should.

Suggest an answer

Log in or Sign up to answer