Abstract

This code snippet finds the earliest unreleased version scheduled after a certain date

Logic

Access the available versions for the issue and finds the earliest unreleased version scheduled after a certain date

Snippet

def version
issue.getAvailableOptions("versions").each{
  if(!it.isReleased() && it.getReleaseDate() >= issue.get("<Specific date>") && (version?.getReleaseDate() == null || version.getReleaseDate() > it.getReleaseDate())) 
  {
    version = it
  }
}
version?.getName()

Placeholders

PlaceholderDescriptionExample
<Date field name>
Name of the field of type Dateduedate

Examples

The output of this snippet is a String representing the name of a Version which you can use in a Groovy expression, for example, to set the Fix Version/s of an issue to the earliest unreleased version scheduled after the Due date in:

References

Related articles


Related issues