Version picker custom field history using script runner

Ash
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 26, 2017

Hi All,

We are using version picker custom field for Release, we trying to have a new scripted field that captures the history of  Release custom field. 

For example, Release custom field  changed from R.10.0 to R.11.0

New scripted custom field should capture something like this

On "XXX date" R.10.0 has been selected and on "XXX date" R.10.0 has been changed to R.11.0.

Any sample code or any workaround for this. 

 

TIA!! 

1 answer

0 votes
Gaston Valente
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 26, 2017
Ash
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 27, 2017

Hi Gaston,

Thanks for your reply.

Here is what i tried 

import com.atlassian.jira.component.ComponentAccessor
import static com.atlassian.jira.issue.IssueFieldConstants.*

def changedItem = ComponentAccessor.getChangeHistoryManager().getAllChangeItems(issue)?.findAll {it.field == 'Release'}?.last()
"Field ${changedItem?.field} updated by user ${changedItem?.getUserKey()} from ${changedItem?.from} to ${changedItem?.to} "

 

how to add updated and created to this code?.

 

TIA!!

Suggest an answer

Log in or Sign up to answer