Filtering resolved issues where there is both an unreleased and a released version set

StackOverflow https://stackoverflow.com/questions/23427616

  •  14-07-2023
  •  | 
  •  

Pregunta

In our Jira issue tracker (hosted by Atlassian) we have many issues that have multiple fixVersions. Some of these are unreleased versions and others are released. The various versions come from different workflows across teams, and isn't something I can change.

What I'm looking for is a JQL filter query for the Work Sub-Filter on the board configuration page that excludes any issue that has at least one fixVersion that is released.

The default filter

fixVersion in unreleasedVersions() or fixVersion is EMPTY

leaves the issue on the board as long as at least one of the fixVersions is unreleased.

Any suggestions?

¿Fue útil?

Solución

(fixVersion in unreleasedVersions() or fixVersion is EMPTY) 
and (fixVersion not in releasedVersions() or fixVersion is EMPTY)

Seems to do the trick.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top