solidify / jira-azuredevops-migrator

Tool to migrate work items from Atlassian Jira to Microsoft Azure DevOps/VSTS/TFS.
MIT License
262 stars 223 forks source link

You cannot add a Parent link between work items #723

Closed RoyalWulf closed 9 months ago

RoyalWulf commented 1 year ago

Describe the problem Importing into Azure Error: [I][16:15:28] Processing 255/802 - wi '42275', jira 'ESERV-539, rev 3'. [E][16:15:29] One or more errors occurred. [E][16:15:29] TF201036: You cannot add a Parent link between work items 42275 and 42277 because a work item can have only one Parent link. [W][16:15:29] ''ESERV-539', rev 3' - not all changes were saved.

ESERV-539 was a Task and changed to a sub-task of (42277) ESERV-551 but this didn't happen in Azure, in Azure 42275 has no parent

So, in Jira, fina state is 407 (Epic) has a link to Story 551 which has a link to sub task 539 In Azure 407has a link to 551 but 551 does not have a link to 539

The error reads like it has two parents, but i can't see that in Jira

To Reproduce Steps to reproduce the behavior: run wi-import

Tool version

Attachments

Please attach the following files:

jira-export-log-230308-161030.txt

Screenshots If applicable, add screenshots to help explain your problem.

Alexander-Hjelm commented 1 year ago

Looks like you have duplicate entries in your link map for Related, Duplicate and Child. Why? Try correcting your link map. See the config samples in the docs for examples.

    "link": [
      {
        "source": "Epic",
        "target": "System.LinkTypes.Hierarchy-Reverse"
    },
    {
        "source": "Parent",
        "target": "System.LinkTypes.Hierarchy-Reverse"
    },
    {
        "source": "Relates",
        "target": "System.LinkTypes.Related"
    },
    {
        "source": "Relates",
        "target": "System.LinkTypes.Related-Reverse"
    },
    {
        "source": "Duplicate",
        "target": "System.LinkTypes.Duplicate-Forward"
    },
    {
        "source": "Duplicate",
        "target": "System.LinkTypes.Duplicate-Reverse"
    },
    {
        "source": "Child",
        "target": "System.LinkTypes.Hierarchy-Forward"
    },
    {
        "source": "Child",
        "target": "System.LinkTypes.Hierarchy-Reverse"
    },
    {
        "source": "Blocks",
        "target": "System.LinkTypes.Dependency"
    }
]
RoyalWulf commented 1 year ago

Now on latest version: 3.0.115

Still get the error config-agile-eServ1 json.txt wi-import-log-230310-145608.txt

Alexander-Hjelm commented 1 year ago

@RoyalWulf Did you try and correct your link map? See my previous comment

RoyalWulf commented 1 year ago

yes, see new config-agile-eServ1 json.txt file i attached above

Alexander-Hjelm commented 1 year ago

The way your config is set up now, it looks like it will complain if an issue has both a Parent and an Epic. So you will have to figure out a link structure that works for your migration, as Work Item in ADO cannot have two parents.

RoyalWulf commented 1 year ago

I don't think the issue (ESERV-539) has an Epic and a parent. It is a sub-task of ESERV-551, so it has a parent, but it does not have an Epic Link, infact Jira says a sub task can not have an Epic Link

Alexander-Hjelm commented 1 year ago

Sounds like it could be a bug then. Could you share the contents of ESERV-539.json? You may obfuscate any sensitive data of course!

RoyalWulf commented 1 year ago

I have asked the business owner if I can send you the details. I can see what has happened. Looking at the history it was a Task (which will have a link to an Epic) then became a sub-task with a link to a parent. Final state is a sub-task. I have 2 examples of this in my current migration.

Will let you know more when my client gets back to me

RoyalWulf commented 1 year ago

ESERV-539 - json.txt

RoyalWulf commented 1 year ago

ESERV-415 - json.txt This is the other example

Alexander-Hjelm commented 1 year ago

For 539:

Looks like the following operations have been made, in historical order:

So it looks like there was a brief timeframe (< 100ms) where the issue had two parents.

@RoyalWulf I assume one of these parent items is an Epic Link and the other is a Parent. Do you know which one is which?

Also, do you know if the links were simply added/removed through the Jira GUI or somehow else?

I will relabel this as a bug.

To mitigate the issue, you could perhaps edit the offending work item json files and swap places between the links so that this:

    {
      "Author": "Romy Forrer",
      "Time": "2022-03-18T14:15:02.4+13:00",
      "Index": 3,
      "Fields": [],
      "Links": [
        {
          "Change": 0,
          "TargetOriginId": "ESERV-551",
          "TargetWiId": 0,
          "WiType": "System.LinkTypes.Hierarchy-Reverse"
        }
      ],
      "Attachments": [],
      "AttachmentReferences": false
    },
    {
      "Author": "Romy Forrer",
      "Time": "2022-03-18T14:15:02.427+13:00",
      "Index": 4,
      "Fields": [],
      "Links": [
        {
          "Change": 1,
          "TargetOriginId": "ESERV-407",
          "TargetWiId": 0,
          "WiType": "System.LinkTypes.Hierarchy-Reverse"
        }
      ],
      "Attachments": [],
      "AttachmentReferences": false
    },

Becomes something like this:

    {
      "Author": "Romy Forrer",
      "Time": "2022-03-18T14:15:02.4+13:00",
      "Index": 3,
      "Fields": [],
      "Links": [
        {
          "Change": 1,
          "TargetOriginId": "ESERV-407",
          "TargetWiId": 0,
          "WiType": "System.LinkTypes.Hierarchy-Reverse"
        }
      ],
      "Attachments": [],
      "AttachmentReferences": false
    },
    {
      "Author": "Romy Forrer",
      "Time": "2022-03-18T14:15:02.427+13:00",
      "Index": 4,
      "Fields": [],
      "Links": [
        {
          "Change": 0,
          "TargetOriginId": "ESERV-551",
          "TargetWiId": 0,
          "WiType": "System.LinkTypes.Hierarchy-Reverse"
        }
      ],
      "Attachments": [],
      "AttachmentReferences": false
    },

Then the links should be added in the proper order.

RoyalWulf commented 1 year ago

ESERV-551 is the parent ESERV-407 is the Epic Your work around worked thank you

Alexander-Hjelm commented 1 year ago

@RoyalWulf perfect. We will keep the bug report open until we have resolved it :)

RoyalWulf commented 1 year ago

Is this bug still not resolved?

Alexander-Hjelm commented 1 year ago

We have not had the possibility of prioritizing this one yet unfortunately :)

RoyalWulf commented 1 year ago

Pity, I have lots of these with the current migration

Alexander-Hjelm commented 1 year ago

Note to self:

The solution is to ensure that the revisions are sorted based on UpdatedDate before they are exported.

I will focus on this one as soon as I have time. Likely during the summer vacations in july.

Alexander-Hjelm commented 1 year ago

JiraExport-bugfix_ensure-revisions-sorted.zip @RoyalWulf , try this build of JiraExport and let me know if it solves your problem!

RoyalWulf commented 1 year ago

Hi, Thank you for this, appreciate you doing this for me, but the zip file is missing WI-import.

Also, when I run the export is says there is a newer version, should I use that instead?

Cheers, John


John Edwards Agile Enablement Lead Digital Services Te Ratonga Tautoko Hangarau T: +64 3 369 3459 (Internal 93459) University of Canterbury | Te Whare Wananga o Waitaha Private Bag 4800, Christchurch 8140, New Zealand


From: Alexander Hjelm @.> Sent: Wednesday, July 5, 2023 1:38 AM To: solidify/jira-azuredevops-migrator @.> Cc: John Edwards @.>; Mention @.> Subject: Re: [solidify/jira-azuredevops-migrator] You cannot add a Parent link between work items (Issue #723)

JiraExport-bugfix_ensure-revisions-sorted.ziphttps://github.com/solidify/jira-azuredevops-migrator/files/11949847/JiraExport-bugfix_ensure-revisions-sorted.zip @RoyalWulfhttps://github.com/RoyalWulf , try this build of JiraExport and let me know if it solves your problem!

— Reply to this email directly, view it on GitHubhttps://github.com/solidify/jira-azuredevops-migrator/issues/723#issuecomment-1620268374, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AYWCEKOI4SHSAG7IXBD5NMTXOQMBZANCNFSM6AAAAAAVTJFALA. You are receiving this because you were mentioned.Message ID: @.**@.>>

This email may be confidential and subject to legal privilege, it may not reflect the views of the University of Canterbury, and it is not guaranteed to be virus free. If you are not an intended recipient, please notify the sender immediately and erase all copies of the message and any attachments.

Alexander-Hjelm commented 1 year ago

Simply run this one instead of you own JiraExport. You can use your own WIImport

RoyalWulf commented 1 year ago

Hi, This produced no differences, see attached. US-22204vFixed is using JiraExport from this fixed version US-22204v136 is using JiraExport v136 version

US-22623vFixed is using JiraExport from this fixed version US-22623v136 is using JiraExport v136 version

A compare shows they are the same.

I used v136 to import and log attached

Cheers, John


John Edwards Agile Enablement Lead Digital Services Te Ratonga Tautoko Hangarau T: +64 3 369 3459 (Internal 93459) University of Canterbury | Te Whare Wananga o Waitaha Private Bag 4800, Christchurch 8140, New Zealand


From: Alexander Hjelm @.> Sent: Friday, July 7, 2023 6:47 PM To: solidify/jira-azuredevops-migrator @.> Cc: John Edwards @.>; Mention @.> Subject: Re: [solidify/jira-azuredevops-migrator] You cannot add a Parent link between work items (Issue #723)

Simply run this one instead of you own JiraExport. You can use your own WIImport

— Reply to this email directly, view it on GitHubhttps://github.com/solidify/jira-azuredevops-migrator/issues/723#issuecomment-1624837371, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AYWCEKIXHRA32ADH343IKFLXO6WEVANCNFSM6AAAAAAVTJFALA. You are receiving this because you were mentioned.Message ID: @.**@.>>

This email may be confidential and subject to legal privilege, it may not reflect the views of the University of Canterbury, and it is not guaranteed to be virus free. If you are not an intended recipient, please notify the sender immediately and erase all copies of the message and any attachments.

{ "Type": "Epic", "OriginId": "US-22204", "WiId": -1, "Revisions": [ { "Author": "Nina Evans", "Time": "2022-08-16T10:53:21.294+12:00", "Index": 0, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-22204] Task Manager Misc" }, { "ReferenceName": "System.Description", "Value": "

Starting off as a bucket

" }, { "ReferenceName": "Microsoft.VSTS.Common.Priority", "Value": "3" }, { "ReferenceName": "System.Tags", "Value": "ACOE;AOOJ;Bucket" }, { "ReferenceName": "System.State", "Value": "New" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-16T10:58:27.67+12:00", "Index": 1, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-14705", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-16T11:02:22.688+12:00", "Index": 2, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-12182", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-16T13:55:12.301+12:00", "Index": 3, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-21340", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-30T15:59:20.701+12:00", "Index": 4, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7098", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-07T14:22:16.202+12:00", "Index": 5, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "ND Sep 2022" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-08T15:21:51.593+12:00", "Index": 6, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-09-08T15:25:20.587+12:00", "Index": 7, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-09-08T15:36:32.665+12:00", "Index": 8, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-14T11:35:28.246+12:00", "Index": 9, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-14T11:35:30.615+12:00", "Index": 10, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-14T11:35:36.442+12:00", "Index": 11, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "riley.aitken", "Time": "2022-10-14T15:02:44.33+13:00", "Index": 12, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T12:00:51.858+13:00", "Index": 13, "Fields": [ { "ReferenceName": "System.AssignedTo", "Value": "Steven Allan" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T13:24:43.677+13:00", "Index": 14, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T13:24:45.987+13:00", "Index": 15, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T13:24:47.912+13:00", "Index": 16, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-11-02T14:05:58.019+13:00", "Index": 17, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-11603", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-11-02T14:42:11.453+13:00", "Index": 18, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "ND Nov 2022" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-11-18T11:37:57.615+13:00", "Index": 19, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-11-22T16:27:25.298+13:00", "Index": 20, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-11-23T16:15:33.031+13:00", "Index": 21, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7335", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-11-23T16:16:18.115+13:00", "Index": 22, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7336", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "riley.aitken", "Time": "2022-11-30T10:45:45.852+13:00", "Index": 23, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-12-21T12:40:49.411+13:00", "Index": 24, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-22204] ourUC Task Manager Enhancements" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-12-21T12:40:57.62+13:00", "Index": 25, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-12-21T12:41:02.439+13:00", "Index": 26, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-01-27T14:05:47.006+13:00", "Index": 27, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-01-27T15:12:54.169+13:00", "Index": 28, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-02-08T15:16:10.609+13:00", "Index": 29, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-02-09T12:59:12.25+13:00", "Index": 30, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-02-09T12:59:18.601+13:00", "Index": 31, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-09T15:10:01.619+13:00", "Index": 32, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-02-09T15:58:13.892+13:00", "Index": 33, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Bucket" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-10T10:55:16.994+13:00", "Index": 34, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-21T16:00:41.54+13:00", "Index": 35, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-21T16:00:45.372+13:00", "Index": 36, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-21T16:00:55.411+13:00", "Index": 37, "Fields": [ { "ReferenceName": "Custom.StartQuarter", "Value": "Q1 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "riley.aitken", "Time": "2023-03-09T14:44:29.469+13:00", "Index": 38, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-03-22T08:16:38.274+13:00", "Index": 39, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-04-17T09:07:51.817+12:00", "Index": 40, "Fields": [ { "ReferenceName": "System.History", "Value": "

Still in progress from Q1 2023 - Update to be Q2 2023

" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-04-17T09:07:53.719+12:00", "Index": 41, "Fields": [ { "ReferenceName": "Custom.StartQuarter", "Value": "Q2 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-04-17T09:56:07.222+12:00", "Index": 42, "Fields": [ { "ReferenceName": "System.History", "Value": "

<a href=\"https://ucdigitalsms.atlassian.net/browse/US-25731\" title=\"smart-link\" class=\"external-link\" rel=\"nofollow noreferrer\">https://ucdigitalsms.atlassian.net/browse/US-25731 added to the epic, and ready for dev planning. Once complete, this will go towards completing some of the requests in <a href=\"https://ucdigitalsms.atlassian.net/browse/US-12182\" title=\"smart-link\" class=\"external-link\" rel=\"nofollow noreferrer\">https://ucdigitalsms.atlassian.net/browse/US-12182.

\n\n

I’ve built a Task Manager intake list containing outstanding formal feature requests, other feature requests that come out of communications/emails/observation, and other task and maintenance suggestions. This would be great to present when we are able to have the “future of Task Manager” session. The <a href=\"https://ucliveac.sharepoint.com/:x:/r/sites/StudentManagement/Shared%20Documents/Task%20Manager/Backlog.xlsx?d=w74e3c8f384a74f6498c48308a90e9210&amp;csf=1&amp;web=1&amp;e=EZmAyW\" class=\"external-link\" rel=\"nofollow noreferrer\">backlog document lives here in Teams.

" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-03T13:37:04.676+12:00", "Index": 43, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7817", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-03T14:53:42.75+12:00", "Index": 44, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-05-24T13:03:06.351+12:00", "Index": 45, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-05-24T15:59:19.067+12:00", "Index": 46, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-25T16:01:34.221+12:00", "Index": 47, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T10:40:59.489+12:00", "Index": 48, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T10:41:29.582+12:00", "Index": 49, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T10:41:37.083+12:00", "Index": 50, "Fields": [ { "ReferenceName": "Custom.BusinessRequestPathway", "Value": "Business Value" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:09:58.339+12:00", "Index": 51, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:10:27.702+12:00", "Index": 52, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:24:05.964+12:00", "Index": 53, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:32:07.729+12:00", "Index": 54, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:32:28.406+12:00", "Index": 55, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-17514", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:36:25.955+12:00", "Index": 56, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7818", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:44:06.695+12:00", "Index": 57, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-19512", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T13:18:53.394+12:00", "Index": 58, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T13:21:28.969+12:00", "Index": 59, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-15047", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:47:43.582+12:00", "Index": 60, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:51:51.512+12:00", "Index": 61, "Fields": [ { "ReferenceName": "Custom.DeliveryQuarter", "Value": "Q2 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:52:41.529+12:00", "Index": 62, "Fields": [ { "ReferenceName": "System.AssignedTo", "Value": "Jane Sullivan" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:52:47.238+12:00", "Index": 63, "Fields": [ { "ReferenceName": "Custom.DeliveryQuarter", "Value": "Q3 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T13:22:08.156+12:00", "Index": 64, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-31T08:27:30.838+12:00", "Index": 65, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-06-01T09:25:43.844+12:00", "Index": 66, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T08:59:21.414+12:00", "Index": 67, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:18:36.454+12:00", "Index": 68, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:19:28.781+12:00", "Index": 69, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:21:11.003+12:00", "Index": 70, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:22:33.123+12:00", "Index": 71, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:12:37.116+12:00", "Index": 72, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:32:44.425+12:00", "Index": 73, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:34:31.227+12:00", "Index": 74, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:36:06.705+12:00", "Index": 75, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:30:56.16+12:00", "Index": 76, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:01.091+12:00", "Index": 77, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:34.524+12:00", "Index": 78, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:34.574+12:00", "Index": 79, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:34.615+12:00", "Index": 80, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T10:55:37.251+12:00", "Index": 81, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T10:55:59.9+12:00", "Index": 82, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T10:56:07.58+12:00", "Index": 83, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T13:52:20.971+12:00", "Index": 84, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-21340", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T13:52:27.349+12:00", "Index": 85, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T13:52:32.557+12:00", "Index": 86, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T08:55:20.142+12:00", "Index": 87, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-20013", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T08:58:07.064+12:00", "Index": 88, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:02:37.149+12:00", "Index": 89, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:09:00.924+12:00", "Index": 90, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:18:36.475+12:00", "Index": 91, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:20:51.077+12:00", "Index": 92, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:32:38.196+12:00", "Index": 93, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-15T12:51:08.45+12:00", "Index": 94, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-15T15:41:41.402+12:00", "Index": 95, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-18T17:36:27.806+12:00", "Index": 96, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-18T17:51:29.326+12:00", "Index": 97, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-18T19:23:29.835+12:00", "Index": 98, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-18T19:29:05.272+12:00", "Index": 99, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-18T19:39:00.256+12:00", "Index": 100, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-07-03T16:12:43.51+12:00", "Index": 101, "Fields": [ { "ReferenceName": "System.Tags", "Value": "ADO_TEST;Bucket" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-07-05T09:00:38.892+12:00", "Index": 102, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false } ] } { "Type": "Epic", "OriginId": "US-22204", "WiId": -1, "Revisions": [ { "Author": "Nina Evans", "Time": "2022-08-16T10:53:21.294+12:00", "Index": 0, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-22204] Task Manager Misc" }, { "ReferenceName": "System.Description", "Value": "

Starting off as a bucket

" }, { "ReferenceName": "Microsoft.VSTS.Common.Priority", "Value": "3" }, { "ReferenceName": "System.Tags", "Value": "ACOE;AOOJ;Bucket" }, { "ReferenceName": "System.State", "Value": "New" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-16T10:58:27.67+12:00", "Index": 1, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-14705", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-16T11:02:22.688+12:00", "Index": 2, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-12182", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-16T13:55:12.301+12:00", "Index": 3, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-21340", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-08-30T15:59:20.701+12:00", "Index": 4, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7098", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-07T14:22:16.202+12:00", "Index": 5, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "ND Sep 2022" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-08T15:21:51.593+12:00", "Index": 6, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-09-08T15:25:20.587+12:00", "Index": 7, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-09-08T15:36:32.665+12:00", "Index": 8, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-14T11:35:28.246+12:00", "Index": 9, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-14T11:35:30.615+12:00", "Index": 10, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-09-14T11:35:36.442+12:00", "Index": 11, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "riley.aitken", "Time": "2022-10-14T15:02:44.33+13:00", "Index": 12, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T12:00:51.858+13:00", "Index": 13, "Fields": [ { "ReferenceName": "System.AssignedTo", "Value": "Steven Allan" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T13:24:43.677+13:00", "Index": 14, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T13:24:45.987+13:00", "Index": 15, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-26T13:24:47.912+13:00", "Index": 16, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-11-02T14:05:58.019+13:00", "Index": 17, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-11603", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-11-02T14:42:11.453+13:00", "Index": 18, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "ND Nov 2022" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-11-18T11:37:57.615+13:00", "Index": 19, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-11-22T16:27:25.298+13:00", "Index": 20, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-11-23T16:15:33.031+13:00", "Index": 21, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7335", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-11-23T16:16:18.115+13:00", "Index": 22, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7336", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "riley.aitken", "Time": "2022-11-30T10:45:45.852+13:00", "Index": 23, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-12-21T12:40:49.411+13:00", "Index": 24, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-22204] ourUC Task Manager Enhancements" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-12-21T12:40:57.62+13:00", "Index": 25, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-12-21T12:41:02.439+13:00", "Index": 26, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-01-27T14:05:47.006+13:00", "Index": 27, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-01-27T15:12:54.169+13:00", "Index": 28, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-02-08T15:16:10.609+13:00", "Index": 29, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-02-09T12:59:12.25+13:00", "Index": 30, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-02-09T12:59:18.601+13:00", "Index": 31, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-09T15:10:01.619+13:00", "Index": 32, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-02-09T15:58:13.892+13:00", "Index": 33, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Bucket" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-10T10:55:16.994+13:00", "Index": 34, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-21T16:00:41.54+13:00", "Index": 35, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-21T16:00:45.372+13:00", "Index": 36, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-21T16:00:55.411+13:00", "Index": 37, "Fields": [ { "ReferenceName": "Custom.StartQuarter", "Value": "Q1 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "riley.aitken", "Time": "2023-03-09T14:44:29.469+13:00", "Index": 38, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-03-22T08:16:38.274+13:00", "Index": 39, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-04-17T09:07:51.817+12:00", "Index": 40, "Fields": [ { "ReferenceName": "System.History", "Value": "

Still in progress from Q1 2023 - Update to be Q2 2023

" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-04-17T09:07:53.719+12:00", "Index": 41, "Fields": [ { "ReferenceName": "Custom.StartQuarter", "Value": "Q2 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-04-17T09:56:07.222+12:00", "Index": 42, "Fields": [ { "ReferenceName": "System.History", "Value": "

<a href=\"https://ucdigitalsms.atlassian.net/browse/US-25731\" title=\"smart-link\" class=\"external-link\" rel=\"nofollow noreferrer\">https://ucdigitalsms.atlassian.net/browse/US-25731 added to the epic, and ready for dev planning. Once complete, this will go towards completing some of the requests in <a href=\"https://ucdigitalsms.atlassian.net/browse/US-12182\" title=\"smart-link\" class=\"external-link\" rel=\"nofollow noreferrer\">https://ucdigitalsms.atlassian.net/browse/US-12182.

\n\n

I’ve built a Task Manager intake list containing outstanding formal feature requests, other feature requests that come out of communications/emails/observation, and other task and maintenance suggestions. This would be great to present when we are able to have the “future of Task Manager” session. The <a href=\"https://ucliveac.sharepoint.com/:x:/r/sites/StudentManagement/Shared%20Documents/Task%20Manager/Backlog.xlsx?d=w74e3c8f384a74f6498c48308a90e9210&amp;csf=1&amp;web=1&amp;e=EZmAyW\" class=\"external-link\" rel=\"nofollow noreferrer\">backlog document lives here in Teams.

" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-03T13:37:04.676+12:00", "Index": 43, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7817", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-03T14:53:42.75+12:00", "Index": 44, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-05-24T13:03:06.351+12:00", "Index": 45, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Steven Allan", "Time": "2023-05-24T15:59:19.067+12:00", "Index": 46, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-25T16:01:34.221+12:00", "Index": 47, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T10:40:59.489+12:00", "Index": 48, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T10:41:29.582+12:00", "Index": 49, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T10:41:37.083+12:00", "Index": 50, "Fields": [ { "ReferenceName": "Custom.BusinessRequestPathway", "Value": "Business Value" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:09:58.339+12:00", "Index": 51, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:10:27.702+12:00", "Index": 52, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:24:05.964+12:00", "Index": 53, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:32:07.729+12:00", "Index": 54, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:32:28.406+12:00", "Index": 55, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-17514", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:36:25.955+12:00", "Index": 56, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-7818", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T12:44:06.695+12:00", "Index": 57, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-19512", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T13:18:53.394+12:00", "Index": 58, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-26T13:21:28.969+12:00", "Index": 59, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-15047", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:47:43.582+12:00", "Index": 60, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:51:51.512+12:00", "Index": 61, "Fields": [ { "ReferenceName": "Custom.DeliveryQuarter", "Value": "Q2 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:52:41.529+12:00", "Index": 62, "Fields": [ { "ReferenceName": "System.AssignedTo", "Value": "Jane Sullivan" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T11:52:47.238+12:00", "Index": 63, "Fields": [ { "ReferenceName": "Custom.DeliveryQuarter", "Value": "Q3 2023" } ], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-30T13:22:08.156+12:00", "Index": 64, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-05-31T08:27:30.838+12:00", "Index": 65, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-06-01T09:25:43.844+12:00", "Index": 66, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T08:59:21.414+12:00", "Index": 67, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:18:36.454+12:00", "Index": 68, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:19:28.781+12:00", "Index": 69, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:21:11.003+12:00", "Index": 70, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T09:22:33.123+12:00", "Index": 71, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:12:37.116+12:00", "Index": 72, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:32:44.425+12:00", "Index": 73, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:34:31.227+12:00", "Index": 74, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-07T10:36:06.705+12:00", "Index": 75, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:30:56.16+12:00", "Index": 76, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:01.091+12:00", "Index": 77, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:34.524+12:00", "Index": 78, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:34.574+12:00", "Index": 79, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-09T12:31:34.615+12:00", "Index": 80, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T10:55:37.251+12:00", "Index": 81, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T10:55:59.9+12:00", "Index": 82, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T10:56:07.58+12:00", "Index": 83, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T13:52:20.971+12:00", "Index": 84, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-21340", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T13:52:27.349+12:00", "Index": 85, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-13T13:52:32.557+12:00", "Index": 86, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T08:55:20.142+12:00", "Index": 87, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-20013", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T08:58:07.064+12:00", "Index": 88, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:02:37.149+12:00", "Index": 89, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:09:00.924+12:00", "Index": 90, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:18:36.475+12:00", "Index": 91, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:20:51.077+12:00", "Index": 92, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-14T09:32:38.196+12:00", "Index": 93, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-15T12:51:08.45+12:00", "Index": 94, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-06-15T15:41:41.402+12:00", "Index": 95, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-06-18T17:36:27.806+12:00", "Index": 96, "Fields": [], "Links": [], "Attachments": [], "AttachmentReferences": false

Alexander-Hjelm commented 1 year ago

I managed to reproduce the following exception:

[I][09:10:52] Processing 45/150 - wi '210219', jira 'AGILEDEMO-15, rev 5'.
[E][09:10:53] One or more errors occurred.
[E][09:10:53] TF201036: You cannot add a Child link between work items 210219 and 210218 because a work item can have only one Parent link.

I will take a look at what is happening as soon as possible. I have a few other issues that need my attention first though :)

Cookietogo97 commented 1 year ago

@Alexander-Hjelm I tried the fix you implemented but I still have the same error as the user that reported the bug. [I][22:08:16] Processing 26770/27579 - wi '13454', jira 'KPL-1678, rev 12'. [W][22:08:16] '[Removed] KPL-1678/13454->DPPM-10/-1 [System.LinkTypes.Hierarchy-Reverse]' - target work item for Jira 'DPPM-10' is not yet created in Azure DevOps/TFS. [E][22:08:16] Mindestens ein Fehler ist aufgetreten. [E][22:08:16] TF201036: You cannot add a Parent link between work items 13454 and 13959 because a work item can have only one Parent link. [W][22:08:16] ''KPL-1678', rev 12' - not all changes were saved.

This is the revision where the issue first occurs: { "Author": "", "Time": "2023-08-17T11:36:35.11+02:00", "Index": 12, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "DPPM-10", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" }, { "Change": 0, "TargetOriginId": "KPL-2220", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" } ], "Attachments": [], "AttachmentReferences": false }

Is it possible, that the error is caused by DPPM-10 not existing and therefore not really getting removed?

Cookietogo97 commented 1 year ago

I should add that DPPM-10 does exist but the key was changed. By the time the error occurs it should be KPL-2081, but for some reason it is always called DPPM-10 in the revisions. I think that is the reason for the "not yet created" warning.

Alexander-Hjelm commented 1 year ago

@Cookietogo97 that could indeed be an issue. I have not yet had the time to look at this issue, but try and free up some time to work on a patch ASAP :)

Alexander-Hjelm commented 11 months ago

Found a fix for my case, raised a PR fix here: https://github.com/solidify/jira-azuredevops-migrator/pull/871

Alexander-Hjelm commented 11 months ago

Anyone experiencing the issue, please try this build and let me know the results! Debug.zip

Alexander-Hjelm commented 11 months ago

@RoyalWulf , @Cookietogo97, if either of you are still available and still experiencing the issue, give the above release a try and let me know if that solved it for you. At least for me the tool is now running correctly without any trace of the error.

I will merge the PR and close this issue if there is no reply within a reasonable time

RoyalWulf commented 11 months ago

i can test it friday and let you know Most of my stuff is migrated over into Azure prod and team living with issues

Does this fix my other issues?

cheers


John Edwards

Agile Enablement Lead

Digital Services

Te Ratonga Tautoko Hangarau

T: +64 3 369 3459 (Internal 93459)

University of Canterbury | Te Whare Wananga o Waitaha

Private Bag 4800, Christchurch 8140, New Zealand



From: Alexander Hjelm @.> Sent: Wednesday, 4 October 2023 9:34 pm To: solidify/jira-azuredevops-migrator @.> Cc: John Edwards @.>; Mention @.> Subject: Re: [solidify/jira-azuredevops-migrator] You cannot add a Parent link between work items (Issue #723)

@RoyalWulfhttps://github.com/RoyalWulf , @Cookietogo97https://github.com/Cookietogo97, if either of you are still available and still experiencing the issue, give the above release a try and let me know if that solved it for you. At least for me the tool is now running correctly without any trace of the error.

I will merge the PR and close this issue if there is no reply within a reasonable time

— Reply to this email directly, view it on GitHubhttps://github.com/solidify/jira-azuredevops-migrator/issues/723#issuecomment-1746396490, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AYWCEKMYMOQQFQX5G6X4YGTX5UNQJAVCNFSM6AAAAAAVTJFALCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONBWGM4TMNBZGA. You are receiving this because you were mentioned.Message ID: @.***>

This email may be confidential and subject to legal privilege, it may not reflect the views of the University of Canterbury, and it is not guaranteed to be virus free. If you are not an intended recipient, please notify the sender immediately and erase all copies of the message and any attachments.

Alexander-Hjelm commented 11 months ago

Perfect, thx!

This fix only addresses the errors of the following sort:

You cannot add a Parent link between work items XXX and YYY because a work item can have only one Parent link.

Any other issues related to this ticket? I will try and go over the other open Bugs in the repo ASAP

RoyalWulf commented 11 months ago

@Alexander-Hjelm This has not fixed my errors wi-import-log-231006-143914.txt

What other files do you want to look at?

Alexander-Hjelm commented 11 months ago

Ok!

Look in the .json files for issues 79928 and 79929 and any other related issues that were involved in the link parent link/epic child link swaps. Do you see anything strange, like a link being removed before it is created, or anything simliar?

Alexander-Hjelm commented 11 months ago

Otherwise send me the .json files for issues 79928 and 79929, plus any other issues that were ever related to either 79928 or

  1. You can try to reduce the number of issues to the smallest possible that still triggers the errors.
RoyalWulf commented 11 months ago

Hi, These are the json I ran with

cheers


John Edwards Agile Enablement Lead Digital Services Te Ratonga Tautoko Hangarau T: +64 3 369 3459 (Internal 93459) University of Canterbury | Te Whare Wananga o Waitaha Private Bag 4800, Christchurch 8140, New Zealand


From: Alexander Hjelm @.> Sent: Friday, October 6, 2023 7:23 PM To: solidify/jira-azuredevops-migrator @.> Cc: John Edwards @.>; Mention @.> Subject: Re: [solidify/jira-azuredevops-migrator] You cannot add a Parent link between work items (Issue #723)

Otherwise send me the .json files for issues 79928 and 79929, plus any other issues that were ever related to either 79928 or 79929.

— Reply to this email directly, view it on GitHubhttps://github.com/solidify/jira-azuredevops-migrator/issues/723#issuecomment-1750046319, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AYWCEKPEV7LKD24MZXQABWLX56PVZAVCNFSM6AAAAAAVTJFALCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONJQGA2DMMZRHE. You are receiving this because you were mentioned.Message ID: @.**@.>>

This email may be confidential and subject to legal privilege, it may not reflect the views of the University of Canterbury, and it is not guaranteed to be virus free. If you are not an intended recipient, please notify the sender immediately and erase all copies of the message and any attachments.

{ "Type": "Feature", "OriginId": "US-6916", "WiId": -1, "Revisions": [ { "Author": "Peter Cragg", "Time": "2019-11-21T13:53:36.275+13:00", "Index": 0, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-6916] consider whether to display prizes/scholarships on transcripts" }, { "ReferenceName": "System.Description", "Value": "

as a future enhancement, consider whether to display prizes/scholarships on transcripts

\n\n

See <a href=\"https://assist.canterbury.ac.nz/assystweb/application.do#event%2FDisplayEvent.do%3Fdispatch%3DgetEvent%26checkJukeBoxSettings%3Dtrue%26eventId%3D5049637%26resultSet%3D\" class=\"external-link\" rel=\"nofollow noreferrer\">https://assist.canterbury.ac.nz/assystweb/application.do#event%2FDisplayEvent.do%3Fdispatch%3DgetEvent%26checkJukeBoxSettings%3Dtrue%26eventId%3D5049637%26resultSet%3D for background of original Assyst request.

" }, { "ReferenceName": "Microsoft.VSTS.Common.Priority", "Value": "3" }, { "ReferenceName": "Custom.Squad", "Value": "Project 2" }, { "ReferenceName": "System.State", "Value": "Ready" } ], "Links": [ { "Change": 0, "TargetOriginId": "US-5525", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2019-11-21T13:54:54.272+13:00", "Index": 1, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2019-11-21T13:55:38.338+13:00", "Index": 2, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-5541", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2019-11-21T13:55:43.097+13:00", "Index": 3, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:266b32ed-c4c4-4e58-a6ce-2160cf8ed8a6", "Time": "2019-11-30T07:10:05.811+13:00", "Index": 4, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-01-14T15:30:49.745+13:00", "Index": 5, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "US-5541", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" }, { "Change": 0, "TargetOriginId": "US-7033", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-01-14T15:34:32.258+13:00", "Index": 6, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "US-7033", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" }, { "Change": 0, "TargetOriginId": "US-3316", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-03-02T07:49:13.354+13:00", "Index": 7, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2021-01-18T09:43:35.193+13:00", "Index": 8, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2021-01-18T09:43:39.094+13:00", "Index": 9, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2021-01-18T09:49:45.989+13:00", "Index": 10, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2021-02-12T11:28:05.745+13:00", "Index": 11, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "US-3316", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" }, { "Change": 0, "TargetOriginId": "US-5525", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Reverse" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2022-10-07T10:19:25.007+13:00", "Index": 12, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2023-04-18T16:40:42.431+12:00", "Index": 13, "Fields": [ { "ReferenceName": "System.History", "Value": "

Retiring this, as did not successfully make it through the enhancements backlog.

" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2023-04-18T16:41:12.785+12:00", "Index": 14, "Fields": [ { "ReferenceName": "System.State", "Value": "Ready" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Peter Cragg", "Time": "2023-04-18T16:41:34.332+12:00", "Index": 15, "Fields": [ { "ReferenceName": "System.State", "Value": "Removed" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-06-08T15:58:39.847+12:00", "Index": 16, "Fields": [ { "ReferenceName": "Custom.Squad", "Value": "Project" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-06-12T15:44:56.03+12:00", "Index": 17, "Fields": [ { "ReferenceName": "Custom.Squad", "Value": "Project 2" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-07-20T17:01:29.154+12:00", "Index": 18, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Spike" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false } ] } { "Type": "Epic", "OriginId": "US-7033", "WiId": -1, "Revisions": [ { "Author": "5a52966f8c564150e8dd7438", "Time": "2019-12-04T16:47:27.152+13:00", "Index": 0, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-7033] Internal Transcript: Transcript Clean-up v2" }, { "ReferenceName": "System.Description", "Value": "

List of items to update:

\n\n<ul class=\"alternate\" type=\"square\">\n\t
  • Display study summary from earliest to latest year 
  • \n\t
  • When results are sanctioned, show the points against the correct column (credited or not credited) based on the results
  • \n\t
  • Expand statuses displayed in the STATUS column of the course results
  • \n\n\n\n

    Add the following:

    \n<ul class=\"alternate\" type=\"square\">\n\t
  • Display the student's current fee category 
  • \n\t
  • Display student's gender 
  • \n\n\n" }, { "ReferenceName": "Microsoft.VSTS.Common.Priority", "Value": "3" }, { "ReferenceName": "Custom.WorkCategory", "Value": "SMS Build" }, { "ReferenceName": "Custom.Squad", "Value": "The Decommissioners" }, { "ReferenceName": "System.State", "Value": "New" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:266b32ed-c4c4-4e58-a6ce-2160cf8ed8a6", "Time": "2019-12-04T16:47:34.561+13:00", "Index": 1, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2019-12-04T16:48:09.254+13:00", "Index": 2, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2019-12-20T12:24:12.708+13:00", "Index": 3, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-01-14T15:30:50.682+13:00", "Index": 4, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-6916", "TargetWiId": 0, "WiType": "System.LinkTypes.Hierarchy-Forward" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-01-14T15:34:32.244+13:00", "Index": 5, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-03-04T10:13:48.453+13:00", "Index": 6, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:d813cd06-1989-4291-82be-09dceeb99a7d", "Time": "2020-03-04T13:54:49.704+13:00", "Index": 7, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-26T15:22:08.152+13:00", "Index": 8, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-27T15:49:56.59+13:00", "Index": 9, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v22.0" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-30T11:40:50.933+13:00", "Index": 10, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-30T11:41:47.8+13:00", "Index": 11, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-30T11:41:56.588+13:00", "Index": 12, "Fields": [ { "ReferenceName": "Custom.BA", "Value": "elizabeth leal-eager" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-30T11:43:16.24+13:00", "Index": 13, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-04-14T13:41:11.833+12:00", "Index": 14, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-04-14T13:41:12.841+12:00", "Index": 15, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-04-16T09:31:41.029+12:00", "Index": 16, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v23.0" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-04-29T07:42:13.184+12:00", "Index": 17, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-04-29T08:27:56.898+12:00", "Index": 18, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-05-01T11:28:58.465+12:00", "Index": 19, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v25.0 Aug 2020" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-06-10T14:54:53.102+12:00", "Index": 20, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "Backlog" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-09-15T11:29:01.169+12:00", "Index": 21, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-05T13:29:16.492+13:00", "Index": 22, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-10012", "TargetWiId": 0, "WiType": "System.LinkTypes.Related" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-05T13:29:19.545+13:00", "Index": 23, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2021-02-10T16:43:30.268+13:00", "Index": 24, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2021-02-18T15:44:33.355+13:00", "Index": 25, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2021-02-22T11:15:26.526+13:00", "Index": 26, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2021-02-22T11:15:45.55+13:00", "Index": 27, "Fields": [ { "ReferenceName": "System.Tags", "Value": "2021" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-02-22T11:28:44.005+13:00", "Index": 28, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Q2/2021" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-03-26T10:33:56.149+13:00", "Index": 29, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Q4/2021" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-04-01T14:19:16.911+13:00", "Index": 30, "Fields": [ { "ReferenceName": "System.Tags", "Value": "2024" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-04-01T14:19:18.794+13:00", "Index": 31, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "US-10012", "TargetWiId": 0, "WiType": "System.LinkTypes.Related" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-04-01T14:19:35.196+13:00", "Index": 32, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2022-12-21T13:22:32.737+13:00", "Index": 33, "Fields": [ { "ReferenceName": "Custom.WorkCategory", "Value": "Product" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-13T14:29:32.272+13:00", "Index": 34, "Fields": [ { "ReferenceName": "Custom.WorkCategory", "Value": "SMS Build" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-02-13T15:00:16.335+13:00", "Index": 35, "Fields": [ { "ReferenceName": "Custom.BA", "Value": null } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-03-08T14:50:25.022+13:00", "Index": 36, "Fields": [ { "ReferenceName": "System.Tags", "Value": "" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2023-03-08T14:50:36.86+13:00", "Index": 37, "Fields": [ { "ReferenceName": "Custom.WorkCategory", "Value": "SF Project" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-04-26T16:24:06.061+12:00", "Index": 38, "Fields": [ { "ReferenceName": "Custom.Squad", "Value": "Project" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2023-06-21T20:36:26.385+12:00", "Index": 39, "Fields": [ { "ReferenceName": "Custom.WorkCategory", "Value": "SMS Build" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-07-28T10:04:30.709+12:00", "Index": 40, "Fields": [ { "ReferenceName": "System.Tags", "Value": "TechLead_Will" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Jane Sullivan", "Time": "2023-08-04T11:00:12.064+12:00", "Index": 41, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Size_XS;TechLead_Will" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false } ] } { "Type": "Epic", "OriginId": "US-3316", "WiId": -1, "Revisions": [ { "Author": "Nina Evans", "Time": "2018-09-21T09:55:57.608+12:00", "Index": 0, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-3316] Student Transcript" }, { "ReferenceName": "System.Description", "Value": "

    Off UCSW - Improve Experience

    " }, { "ReferenceName": "Microsoft.VSTS.Common.Priority", "Value": "3" }, { "ReferenceName": "System.State", "Value": "New" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2018-09-21T09:57:03.219+12:00", "Index": 1, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v11.0" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2018-09-21T09:57:16.084+12:00", "Index": 2, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2018-12-04T13:51:06.439+13:00", "Index": 3, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-3316] Student Transcript migrated from UCSW to myUC" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2018-12-04T13:51:10.846+13:00", "Index": 4, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-01-14T14:01:17.158+13:00", "Index": 5, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-01-14T14:01:24.114+13:00", "Index": 6, "Fields": [ { "ReferenceName": "System.Tags", "Value": "ContImp" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-01-14T14:45:42.779+13:00", "Index": 7, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-02-04T16:35:12.452+13:00", "Index": 8, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-02-08T10:09:06.486+13:00", "Index": 9, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-02-21T15:11:39.07+13:00", "Index": 10, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-02-21T15:11:54.29+13:00", "Index": 11, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Sandy Purvis", "Time": "2019-04-10T14:38:25.705+12:00", "Index": 12, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Sandy Purvis", "Time": "2019-04-10T15:00:08.311+12:00", "Index": 13, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:5dfda107-6349-438a-a333-01eca762ef32", "Time": "2019-04-18T08:37:51.008+12:00", "Index": 14, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-04-18T13:36:28.025+12:00", "Index": 15, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-04-30T11:13:28.382+12:00", "Index": 16, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-05-02T16:28:13.006+12:00", "Index": 17, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-05-09T10:15:49.401+12:00", "Index": 18, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-12-09T13:58:44.321+13:00", "Index": 19, "Fields": [ { "ReferenceName": "System.Tags", "Value": "" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-12-17T10:17:56.89+13:00", "Index": 20, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-12-17T10:24:33.319+13:00", "Index": 21, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-01-14T15:34:32.218+13:00", "Index": 22, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-12T12:53:15.658+13:00", "Index": 23, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-12T12:53:19.018+13:00", "Index": 24, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-26T15:34:04.344+13:00", "Index": 25, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-06-16T16:21:46.535+12:00", "Index": 26, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "Backlog" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5abbf93ccd7b962a56f6d322", "Time": "2020-07-22T08:23:00.746+12:00", "Index": 27, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5abbf93ccd7b962a56f6d322", "Time": "2020-07-22T08:23:11.746+12:00", "Index": 28, "Fields": [ { "ReferenceName": "Custom.BA", "Value": "elizabeth leal-eager" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-05T13:27:11.314+13:00", "Index": 29, "Fields": [], "Links": [ { "Change": 0, "TargetOriginId": "US-10011", "TargetWiId": 0, "WiType": "System.LinkTypes.Related" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-05T13:27:17.309+13:00", "Index": 30, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-12-01T13:19:38.673+13:00", "Index": 31, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v32.0 Mar 2021" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-12-01T13:19:43.515+13:00", "Index": 32, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-12-01T13:19:46.077+13:00", "Index": 33, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-12-01T13:19:52.763+13:00", "Index": 34, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-12-01T13:33:16.178+13:00", "Index": 35, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-02-04T13:16:11.948+13:00", "Index": 36, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-3316] Stub: Student Transcript migrated from UCSW to myUC" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-02-04T13:16:16.835+13:00", "Index": 37, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-02-04T13:16:48.48+13:00", "Index": 38, "Fields": [ { "ReferenceName": "System.Tags", "Value": "Q2/2021" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-02-04T13:17:03.422+13:00", "Index": 39, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2021-02-12T11:28:05.644+13:00", "Index": 40, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2021-02-12T11:28:24.742+13:00", "Index": 41, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2021-02-12T11:28:28.205+13:00", "Index": 42, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "US-10011", "TargetWiId": 0, "WiType": "System.LinkTypes.Related" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2021-02-12T11:28:38.46+13:00", "Index": 43, "Fields": [ { "ReferenceName": "System.State", "Value": "Removed" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2021-06-24T14:16:30.642+12:00", "Index": 44, "Fields": [ { "ReferenceName": "System.Tags", "Value": "" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-06-24T14:34:50.943+12:00", "Index": 45, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2021-06-24T14:35:03.44+12:00", "Index": 46, "Fields": [ { "ReferenceName": "Custom.BA", "Value": null } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false } ] } { "Type": "Epic", "OriginId": "US-5525", "WiId": -1, "Revisions": [ { "Author": "Nina Evans", "Time": "2019-06-24T15:54:17.857+12:00", "Index": 0, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-5525] Qualification results service - Data requirement for Transcript" }, { "ReferenceName": "System.Description", "Value": "

    Budget item: Internal transcript 2021

    \n\n

    This epic is the design for getting the following data into SF world and onto the internal (and possibly student facing) transcript

    \n\n
      \n\t
    1. Qualification completion and graduation/conference available in ourUC and displayed in the internal transcript.
    2. \n\t
    3. Scholarships awarded
    4. \n\t
    5. Placements (engineering old ones)
    6. \n
    \n" }, { "ReferenceName": "Microsoft.VSTS.Common.Priority", "Value": "3" }, { "ReferenceName": "Custom.WorkCategory", "Value": "SMS Build" }, { "ReferenceName": "Custom.Squad", "Value": "The Decommissioners" }, { "ReferenceName": "System.State", "Value": "New" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2019-11-19T16:05:07.712+13:00", "Index": 1, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-12-18T12:31:34.564+13:00", "Index": 2, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2019-12-18T13:34:50.288+13:00", "Index": 3, "Fields": [], "Links": [ { "Change": 1, "TargetOriginId": "US-5280", "TargetWiId": 0, "WiType": "System.LinkTypes.Related" } ], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2019-12-20T13:01:20.433+13:00", "Index": 4, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2019-12-20T13:01:39.611+13:00", "Index": 5, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-01-13T12:04:41.997+13:00", "Index": 6, "Fields": [ { "ReferenceName": "Custom.BA", "Value": "elizabeth leal-eager" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-01-13T14:32:21.577+13:00", "Index": 7, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-01-16T11:24:33.339+13:00", "Index": 8, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2020-01-16T11:29:33.502+13:00", "Index": 9, "Fields": [ { "ReferenceName": "System.History", "Value": "

    Sweet! Thanks Lisa…

    \n\n

    I’ve started the confluence page for this last year… would like to discuss with you about it to see if we’re ready to BUTTS this.. will send you a meeting invite for Monday <img class=\"emoticon\" src=\"/images/icons/emoticons/smile.png\" height=\"16\" width=\"16\" align=\"absmiddle\" alt=\"\" border=\"0\"/>

    \n\n

    Ngā mihi,
    \nBeth

    " } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2020-01-16T11:29:35.045+13:00", "Index": 10, "Fields": [], "Links": [], "Attachments": [ { "Change": 0, "FileName": "image001.jpg", "Comment": "Imported from Jira", "AttOriginId": "13799", "FilePath": "C:\Temp\JiraExport\UCSMS\Attachments\13799\image001.jpg" }, { "Change": 0, "FileName": "image002.png", "Comment": "Imported from Jira", "AttOriginId": "13800", "FilePath": "C:\Temp\JiraExport\UCSMS\Attachments\13800\image002.png" }, { "Change": 0, "FileName": "image003.png", "Comment": "Imported from Jira", "AttOriginId": "13801", "FilePath": "C:\Temp\JiraExport\UCSMS\Attachments\13801\image003.png" }, { "Change": 0, "FileName": "image004.png", "Comment": "Imported from Jira", "AttOriginId": "13802", "FilePath": "C:\Temp\JiraExport\UCSMS\Attachments\13802\image004.png" }, { "Change": 0, "FileName": "image005.jpg", "Comment": "Imported from Jira", "AttOriginId": "13803", "FilePath": "C:\Temp\JiraExport\UCSMS\Attachments\13803\image005.jpg" } ], "Commit": null, "AttachmentReferences": true }, { "Author": "Nina Evans", "Time": "2020-01-21T10:18:05.849+13:00", "Index": 11, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-01-21T13:26:56.865+13:00", "Index": 12, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v22.0" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-01-21T15:30:43.82+13:00", "Index": 13, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-02-26T10:43:53.885+13:00", "Index": 14, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-03-05T14:54:07.767+13:00", "Index": 15, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-03-25T12:28:34.765+13:00", "Index": 16, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v23.0" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-04-29T16:41:00.606+12:00", "Index": 17, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v25.0 Aug 2020" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-06-16T16:20:37.49+12:00", "Index": 18, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v27.0 Oct 2020" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-06-16T16:48:45.478+12:00", "Index": 19, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-08-03T10:07:29.259+12:00", "Index": 20, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "v28.0 Nov 2020" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-08-04T08:31:25.962+12:00", "Index": 21, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-5525] Qualification results data for Transcript" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-08-04T09:16:33.66+12:00", "Index": 22, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-09-15T11:10:03.713+12:00", "Index": 23, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-10-14T11:29:42.824+13:00", "Index": 24, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-10-15T13:01:41.277+13:00", "Index": 25, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2020-10-15T13:30:20.062+13:00", "Index": 26, "Fields": [ { "ReferenceName": "System.State", "Value": "Active" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "5a52966f8c564150e8dd7438", "Time": "2020-10-15T13:31:41.27+13:00", "Index": 27, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-10-21T13:07:31.137+13:00", "Index": 28, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-10-21T13:11:22.649+13:00", "Index": 29, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-10-21T13:12:36.248+13:00", "Index": 30, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-10-21T13:12:38.461+13:00", "Index": 31, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nico Stenfert Kroese", "Time": "2020-10-29T10:14:00.352+13:00", "Index": 32, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nico Stenfert Kroese", "Time": "2020-10-29T12:18:09.763+13:00", "Index": 33, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-02T10:26:06.108+13:00", "Index": 34, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-02T11:04:23.605+13:00", "Index": 35, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:486628c4-1a0a-43f2-8163-b6d2178377e5", "Time": "2020-11-02T13:23:45.922+13:00", "Index": 36, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:486628c4-1a0a-43f2-8163-b6d2178377e5", "Time": "2020-11-02T13:25:00.971+13:00", "Index": 37, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:486628c4-1a0a-43f2-8163-b6d2178377e5", "Time": "2020-11-02T13:25:11.76+13:00", "Index": 38, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:486628c4-1a0a-43f2-8163-b6d2178377e5", "Time": "2020-11-02T13:25:26.114+13:00", "Index": 39, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "557058:486628c4-1a0a-43f2-8163-b6d2178377e5", "Time": "2020-11-02T13:26:19.327+13:00", "Index": 40, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-04T11:20:27.113+13:00", "Index": 41, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nina Evans", "Time": "2020-11-04T11:20:30.356+13:00", "Index": 42, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-04T11:36:04.605+13:00", "Index": 43, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "ND Nov 2020" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-04T11:36:25.532+13:00", "Index": 44, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": null } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Nico Stenfert Kroese", "Time": "2020-11-04T12:45:07.155+13:00", "Index": 45, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:18:18.232+13:00", "Index": 46, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:18:59.111+13:00", "Index": 47, "Fields": [ { "ReferenceName": "System.Title", "Value": "[US-5525] Design - Qualification results data for Transcript" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:19:49.909+13:00", "Index": 48, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:20:31.414+13:00", "Index": 49, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:21:12.77+13:00", "Index": 50, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:22:10.708+13:00", "Index": 51, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:22:39.095+13:00", "Index": 52, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:23:00.778+13:00", "Index": 53, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:24:41.511+13:00", "Index": 54, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:24:48.893+13:00", "Index": 55, "Fields": [ { "ReferenceName": "Custom.FixVersions", "Value": "ND Dec 2020" } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-06T11:27:14.574+13:00", "Index": 56, "Fields": [ { "ReferenceName": "System.History", "Value": "

    Turned this into a design epic. Have moved development into separate epic <a href=\"https://ucdigitalsms.atlassian.net/browse/US-11373\" title=\"smart-link\" class=\"external-link\" rel=\"nofollow noreferrer\">https://ucdigitalsms.atlassian.net/browse/US-11373 and scheduled in 2021. Likely to be rolled out in a series of epics

    " } ], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-11-06T15:20:27.929+13:00", "Index": 57, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-09T10:52:24.874+13:00", "Index": 58, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-09T10:52:36.629+13:00", "Index": 59, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-09T10:52:47.841+13:00", "Index": 60, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Lisa Voorwinde", "Time": "2020-11-09T10:53:44.063+13:00", "Index": 61, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-11-11T10:06:59.434+13:00", "Index": 62, "Fields": [], "Links": [], "Attachments": [], "Commit": null, "AttachmentReferences": false }, { "Author": "Debs Lightfoot", "Time": "2020-11-11T10:07:08.12+13:00", "Index": 63, "Fields": [], "Links": [], "Attachments": []

    Alexander-Hjelm commented 11 months ago

    @RoyalWulf Is it still ESERV-539 and ESERV-415? Are there any other issues linked with either of these? If so, then please share those as well! Or have you confirmed that the problem occurs when importing both of the two above issues in isolation from any other data?

    In my experience, the error seems to occur when there are 3 or more issues in a migration, and an Epic Child link is swapped from one target issue to another. Jira doesn't quite know what to do with the dates, and reports them in the wrong order.

    RoyalWulf commented 11 months ago

    this is a different project SMS, the ones i sent you are the ones i used to create the error they are a subset of 3000 or so jira issues for that project


    John Edwards

    Agile Enablement Lead

    Digital Services

    Te Ratonga Tautoko Hangarau

    T: +64 3 369 3459 (Internal 93459)

    University of Canterbury | Te Whare Wananga o Waitaha

    Private Bag 4800, Christchurch 8140, New Zealand



    From: Alexander Hjelm @.> Sent: Monday, 9 October 2023 6:54 pm To: solidify/jira-azuredevops-migrator @.> Cc: John Edwards @.>; Mention @.> Subject: Re: [solidify/jira-azuredevops-migrator] You cannot add a Parent link between work items (Issue #723)

    @RoyalWulfhttps://github.com/RoyalWulf Is it still ESERV-539 and ESERV-415? Are there any other issues linked with either of these? If so, then please share those as well! Or have you confirmed that the problem occurs when importing both of the two above issues in isolation from any other data?

    In my experience, the error seems to occur when there are 3 or more issues in a migration, and an Epic Child link is swapped from one target issue to another. Jira doesn't quite know what to do with the dates, and reports them in the wrong order.

    — Reply to this email directly, view it on GitHubhttps://github.com/solidify/jira-azuredevops-migrator/issues/723#issuecomment-1752383540, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AYWCEKITWUCS3RARCZROA3DX6OGRHAVCNFSM6AAAAAAVTJFALCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONJSGM4DGNJUGA. You are receiving this because you were mentioned.Message ID: @.***>

    This email may be confidential and subject to legal privilege, it may not reflect the views of the University of Canterbury, and it is not guaranteed to be virus free. If you are not an intended recipient, please notify the sender immediately and erase all copies of the message and any attachments.

    RoyalWulf commented 11 months ago

    i agree and also if a child changes type to a parent type and then its parent changes


    John Edwards

    Agile Enablement Lead

    Digital Services

    Te Ratonga Tautoko Hangarau

    T: +64 3 369 3459 (Internal 93459)

    University of Canterbury | Te Whare Wananga o Waitaha

    Private Bag 4800, Christchurch 8140, New Zealand



    From: Alexander Hjelm @.> Sent: Monday, 9 October 2023 6:54 pm To: solidify/jira-azuredevops-migrator @.> Cc: John Edwards @.>; Mention @.> Subject: Re: [solidify/jira-azuredevops-migrator] You cannot add a Parent link between work items (Issue #723)

    @RoyalWulfhttps://github.com/RoyalWulf Is it still ESERV-539 and ESERV-415? Are there any other issues linked with either of these? If so, then please share those as well! Or have you confirmed that the problem occurs when importing both of the two above issues in isolation from any other data?

    In my experience, the error seems to occur when there are 3 or more issues in a migration, and an Epic Child link is swapped from one target issue to another. Jira doesn't quite know what to do with the dates, and reports them in the wrong order.

    — Reply to this email directly, view it on GitHubhttps://github.com/solidify/jira-azuredevops-migrator/issues/723#issuecomment-1752383540, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AYWCEKITWUCS3RARCZROA3DX6OGRHAVCNFSM6AAAAAAVTJFALCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONJSGM4DGNJUGA. You are receiving this because you were mentioned.Message ID: @.***>

    This email may be confidential and subject to legal privilege, it may not reflect the views of the University of Canterbury, and it is not guaranteed to be virus free. If you are not an intended recipient, please notify the sender immediately and erase all copies of the message and any attachments.

    Alexander-Hjelm commented 11 months ago

    Ok, I hadn't considered that scenario actually. I will try and replicate that in our test enrivonment as soon as possible. In the meantime I will probably merge #871 since it fixes an issue that we are experiencing at another customer's migration

    Alexander-Hjelm commented 11 months ago

    Merged #871. Reopened after automatic close since the issue still persists.

    Alexander-Hjelm commented 9 months ago

    Closed issue with the completion of #917. Please reopen this issue and @ me if the problem persists.