Can someone help me write a JQL query please.
We have multiple versions open at the same time as we use the 'release' feature for multiple applications to track our live deployments.
What I would like is to save a filter that shows all unreleased versions, where all of the issues with that fix version are 'done'. I would like to report on the versions that are 'done' and therefore ready to be released.
Thanks
Community moderators have prevented the ability to post new answers.
I'd use a filter for "fixVersion in unreleasedVersions(xyz) and status = done" (xyz = a project name) to find the issues, then I'd stick the saved filter on a dashboard, in a filter statistics gadget, grouped by version - this will give you a list of unreleased versions with a count of the number of "done" issues in each.
This suggestion worked great for me! Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying this but it's not letting me put the project name in the (xyz) ...any tips?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nevermind- seems to be working now. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this what you are looking for?
fixVersion in unreleasedVersions() and status = Done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jack, I was hoping there was a way I could do this with a JQL query. Do you not think that's possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
that is a JQL query. If you want you can add more to it to meet your needs. Otherwise just paste that into the advanced search bar and see if it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I mean only using a JQL query.
I don't really want to be using dashboards and gadgets as you've suggested.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL returns lists of issues, not versions. The only way to do what you want is to use JQL to find issues and then report on them in a gadget on a dashboard.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL Extenstions plugin may help you in your use-cases. Refer documentation
I am also using it to fetch release version info. for multiple applications to keep a track of our deployments.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.