We are working with two teams on the same project, one is working on the current launch, and the other for the next launch.
There is the function of filtering by earliestUnreleasedVersion(), but I'm searching for a solution to have earliestUnreleasedVersion()+1, meaning to filter the next NEXT upcoming version somehow.
Is there any solution for this without hardcoding the versions in it?
Hi @Dosa Szabolcs ,
There is no dynamic way to do this, unfortunately. And while there has been a feature request for it, it has been closed as won't do: JRACLOUD-29479. In other words, it's not something that you may expect to be developed.
The closest you may get with a dynamic search would be something like this:
fixversion in unreleasedVersions()
AND fixversion not in earliestUnreleasedVersion()
If you have more than 2 unreleased versions, that will of course not yield the desired results. In that case, explicitly filtering for the version by its name would be the way to go.
Hope this helps!
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.