How to properly use Migrations.XML with a ZeroTouch nodes package?

Hi there,

I’ve got an issue with providing a proper Migrations.XML for my ZeroTouch nodes. What I’ve done is moving a node from one Category (Patterns.Lists) to another (Utilities.List), keeping the name of the node. I’m now providing the XML like this:

<?xml version="1.0"?>
<migrations>
  <priorNameHint>
    <oldName>KiskaDynamoZTNodes.Patterns.Lists.CondenseList</oldName>
    <newName>KiskaDynamoZTNodes.Utilities.List.CondenseList</newName>
  </priorNameHint>
  <priorNameHint>
    <oldName>Autodesk.DesignScript.Geometry.KiskaDynamoZTNodes.Patterns.Lists.CondenseList</oldName>
    <newName>Autodesk.DesignScript.Geometry.KiskaDynamoZTNodes.Utilities.List.CondenseList</newName>
  </priorNameHint>
</migrations>

The filename is KiskaDynamoZTNodes.Migrations.xml, and it is located in the same folder as the KiskaDynamoZTNodes.dll

As far as I can tell, I have followed the instructions on https://github.com/DynamoDS/Dynamo/wiki/Zero-Touch-Plugin-Development#migrations and my XML is a modified copy of the ProtoGeometry one. But the updated node is not detected when I open a node tree that contained the old one.