Our new Appfire Documentation Space is now live!

Take a look here! If you have any questions please email support@appfire.com

Find the next unreleased version

Abstract

This code snippet fetches the next unreleased version available for the current issue

Logic

Access the available versions for the issue and filter the next unreleased version by the version date

Snippet

{% set vers = {} %}
{% for v in issue | projectInfo | field("versions") %}
  {% if not v.released and (not vers.releaseDate or vers.releaseDate >= v.releaseDate) %}
    {% set vers = v %}
  {% endif %}
{% endfor %}
{{vers.name}}

Placeholders

N/A

Examples

The output of this code is a String representing a Version which you could use in a template, for example, to set a Version picker field in:

  • one of the Set Field Value post-functions
  • one of the Transition issue post-functions on the transition screen, if any
  • the Create issue post-function under Set fields of new issue section

References