fieldHistory()

This function returns a number list with all the values that a numeric or date-time field has ever had in the past for current issue.

Values appear in the list in ascending ordered by setting time, i.e., older value has index 1, and most recent value has index count(numberList) . Uninitialized field statuses are not represented.


Bash
fieldHistory(numberField) #Output: Number list


Examples

Parser expression

Description

fieldHistory({issue.dueDate})

This example returns:

A list of all due dates that every have been set in the current issue.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

numberField

text

Any given numeric field code.

Output

This function returns a number list


Variant for text fields.


Bash
fieldHistory(textField) #Output: Text list


Examples

Parser expression

Description

fieldHistory(%{issue.summary})

This example returns:

A list of all summaries that every have been set in the current issue.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

textField

text

Any given text field code.

Output

This function returns a text list


📚 Use cases and examples