I have created the Custom Value "Version Release Date - Current Year" to group all issues by release date of any Version this year:
fixVersion in releaseDate("after StartOfYear()")
AND
fixVersion in releaseDate("before endOfYear()")
I am trying to add on to this and specify issues where the resolvedDate > releaseDate to catch issues that we committed to originally but had to reprioritize for whatever reason and completed later. I want to identify these in our retrospective to improve our commitment estimation and identify any systemic impediments to remediate.
I'm not sure how to access the issue's release date. The way I am trying currently is by looking into: issue.propertyFixVersion but I'm not finding the right documentation to explain what this does in JQL.
The whole query that I have right now is:
fixVersion in releaseDate("after StartOfYear()") AND fixVersion in releaseDate("before endOfYear()") AND issue.properFixVersion
It throws an error but this is what I'm working with.