Reputation: 1
In the question Query JIRA versions using wildcards with JQL
The answer is to use something like project=MYPROJ and fixversion in versionMatch("DEVX*")
using the asterix at DEVX*.
In my case I have: getting all the issues from CBS-6840 up to CBS-6849 project = CBS AND key in ("CBS-684")* Similar to the question above what would a need to add instead of versionMatch
Upvotes: 0
Views: 9151
Reputation: 1757
You might look at the many add-ons in the Atlassian Marketplace to see if anyone has scripted functions to provide the sort of functionality you are looking for. A pretty accessible work-around that I would suggest is below (using the JIRA / Hipchat issues themselves as an example). It uses the strict ordered-ness of JIRA keys without needing a wildcard.
project = HCPUB and issuekey >= "HCPUB-730" and issuekey <= "HCPUB-739"
You can also always generate the list yourself, which can be a little tedious:
project = HCPUB and issuekey in ('HCPUB-730','HCPUB-731',...)
Upvotes: 1