Reputation: 61
I have to export reports listing some attributes of JIRA issues at a specified date. So my query would be:
project = "XXX" AND fixVersion was "10.14.0.0" ON '2016-12-12 11:00'
And the result set would provide the status (mandatory) and other attributes (such as assignee) at the specified date.
For the moment, the result set provides me with the status at the current date, and not at the specified date.
How can I achieve that?
Any help really appreciated
Upvotes: 1
Views: 1594
Reputation: 4921
It's not possible by default: JIRA always returns current/most recent values of the fields.
Though, there are workarounds:
changelog
items. Analyzing each change, you can find out value of interested field for the given date. Here is an example.Here are some related questions in Atlassian community:
Upvotes: 4