Sprint custom field changes are not tracked in issue history

Edgar Garcia September 15, 2014

Hi, today I got an "Incident" from a user where the fix version was changed from Sprint 9 to Sprint 11, but the issue History is not reflecting Who made that change and when. Given this is really controlled by GreenHopper, is there a way to know who did this movement? or a reason why the issue history is not recording that transaction?  we are using  JIRA 6.0 and JIRA Agile 6.3.13.1

1 answer

0 votes
Pablo Beltran
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.
June 24, 2015

Such changes are recorded by JIRA and they are pretty easy to get with the JQL for JIRA plugin:

select
     c.created, c.username
from
     issuechanges c
where
     and c.field = 'Sprint'
     and c.fromvalue = 'Sprint 9'
	 and c.tovalue = 'Sprint 11'

 

 

Suggest an answer

Log in or Sign up to answer