No matter what I do, JQL queries never work in the search field.
Is there a way to turn this on? or a different way to access it?
Ah, I worked it out - I need to use 'fixVersion = earliestUnreleasedVersions()' in the filter.
Just in case someone ends up here as I did, correct syntax is
'fixVersion = earliestUnreleasedVersion()'
I assume others will realize as I did that it refers to next (singular) after trying the suggested filter and failing, but just in case
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I ended up using fixVersion in earliestUnreleasedVersionByReleaseDate([project key]) because the syntax above seemed to return releases without release date
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In case anyone else gets this error from this solution: `Unable to find JQL function 'earliestUnreleasedVersions()'.` - there's a typo in the filter function shown above.
It should be 'earliestUnreleasedVersion()', not 'earliestUnreleasedVersions()'.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can i write a script to get the list of issues in the next 3 upcoming fix versions , i want this to be dynamic and not hard coded ,it must automatically pick you the next three versions and display them with the associated issues
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, how can you achieve a dynamic quick filter for more than one upcoming fixVersions on a Kanban board?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same question as the two above. Is it possible?
And also, is there a documentation for methods used in the filter, like: `earliestUnreleasedVersion()` ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A workaround I found was to use `fixVersion is not EMPTY`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.