I would like to history of custom field values.
Below code could give me raw data of the current field value:
from jira import JIRA
jira_options = {'server': 'url'}
jira = JIRA(basic_auth=('user_name', 'password'), options = {'server': 'url'})
issue = jira.issue('id', expand='changelog')
customfield_name = issue.fields.customfield_10000
But, I would like to get previous values too.
Question posted on atlassian explains ChangeHistoryManager
would help to achieve this task. How can the same be done on Python?