I've successfully defined a query to pull fix versions by the following:
fixVersion = easerliestUnreleasedVersion(project key)
Now I'm trying to also create a filter for next fix version. This is what I came up with, but I think I'm having problems with JQL not recognizing nested quotes.
fixVersion in releaseDate("after endOfMonth() before endOfMonth("+1")")
Essentially our releases are on a month cadence, so logically, getting the next fix version is looking for releaseDate() that is after the current end of month, but before the end of month +1-- that is, before the end of the next month.
Is there a workaround for this?
Hello @Tony White ,
I have tried it on my instance and it seems you do not have to add quotes (on server that is) :
fixVersion in releaseDate("after endOfMonth() before endOfMonth(1)")
I Hope it is working on cloud as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.