I want to find issues that have a Fix version between 1.0.1 and 1.0.8. Please help if JQL works for a range search.
Hi Brijendra,
Unfortunately there's no wildcard search in Jira Cloud - https://jira.atlassian.com/browse/JRACLOUD-24152 is still open.
The way to do it then would be to manually pick all the versions in basic search, or run something like:
fixVersion IN (1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.0.8)
Cheers, Jimmy
Hello Jimmy,
Thanks, it helped. I also create a working JQL for same using operators-
fixVersion >= "1.0.1" and fixVersion <= "2.0.8"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Singh,
You can easily find that using JQL Search Extensions
The JQL will be like that:
issue in regex("fixVersion", "1.0.[1-8]")
matches issues with versions from 1.0.1 to 1.0.8
Full documentation is here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.