Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Getting next fix version by releaseDate()

Tony White July 29, 2022

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?

1 answer

0 votes
Antoine Berry
Community Champion
August 8, 2022

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.

Suggest an answer

Log in or Sign up to answer