I've below code to read fix version name:
from jira import JIRA
jira_options = {'server': 'URL'}
jira = JIRA(basic_auth=('username', 'pwd'), options = {'server': 'username'})
fix_version = getparsedstring(issue.fields.fixVersions) #since fix Versions is not readable version name, using getparsedstring custom function to get readable string
Objective is to get release date of the version from issue, as I will be reading all issues of project through iterations.
As per answer given in this question, below would retrieve release date:
i = jira.version(v.id, expand="ReleaseDate")
i.releaseDate
How do I get release date using issue details through JIRA library?
Note: I do not want to read it through REST API
Thanks in advance!