New and Improved 3.13 Beta. Highlights: Shareable filters and dashboards and lots of other goodies. Any feedback can be raised as JIRA issues in the JIRA project.
Issue Details (XML | Word | Printable)

Key: JRA-6073
Type: Improvement Improvement
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Pavel Moukhataev
Votes: 1
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
JIRA

Include change history into the XML view of an issue

Created: 01/Mar/05 03:48 AM   Updated: 04/Jul/06 08:38 AM
Component/s: None
Affects Version/s: None
Fix Version/s: None

Time Tracking:
Not Specified

Issue Links:
Reference
 

Participants: Pavel Moukhataev and Scott Farquhar [Atlassian]
Since last comment: 3 years, 25 weeks, 5 days ago
Labels:


 Description  « Hide
Currently task XML view generates XML that doesn't contain some useful information: task assign information.

Can you add this information to XML.



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Scott Farquhar [Atlassian] added a comment - 01/Mar/05 07:32 AM
The XML for an issue contains the assignee:

Eg for this issue:

<assignee>Unassigned</assignee>

What information are you after?


Pavel Moukhataev added a comment - 02/Mar/05 12:16 AM
"<assignee>Unassigned</assignee>" is only current assignee information.

I am asking for assign history.

Why do I need this information:
In our company we use JIRA (enterprise) to track all issues (bugs, production problems, development tasks, e.t.c.). And according to our company's JIRA workflow after resolving and closing task we assign all tasks to reporter.

In this case it is impossible to find all tasks that were resolved and closed by someone during last week for example (because there is no option in JIRA filters). Or to find all issues that someone is working on, if issue is assigned to anybody else. Since in our company we have weekly based reports this feature is very useful for us.

I am going to create some tool that will use XML, provided by JIRA and will give me full information for weekly report (all in one):

  • What issues was closed
  • What issues we are working on
  • What issues was initiated
  • What issues we worked on currently assigned to another person.

Pavel Moukhataev added a comment - 02/Mar/05 12:43 AM
So in short I need assign history (it is visible through web interface but absent in XML). Something like this:
<changeHistory>
<change type="issue.action.changehistory" username="pmoukhataev" timePerformed="Thu, 24 Feb 2005 16:02:32 +0300 (MSK)">
<changeDetails id="10000" field="assignee" fieldtype="jira" oldstring="Pavel Moukhataev" oldvalue="pmoukhataev" newstring="User One" newvalue="user1" />
</change>
<change type="issue.action.changehistory" username="pmoukhataev" timePerformed="Thu, 24 Feb 2005 16:02:39 +0300 (MSK)">
<changeDetails id="10001" field="assignee" fieldtype="jira" oldstring="User One" oldvalue="user1" newstring="User Two" newvalue="user2" />
</change>
...
</changeHistory>