No need, I already figured out the issue and have a fix ready. I was waiting to release it because when I tried applying the same fix to its sister mod, Micro Machines, the data pipes wouldn't connect properly after rotating the machine or re-selecting the recipe.
I believe this is related to the collision data of the new pipes being infinitely smaller than the collision data of standard pipes (which connect properly to micro machines in the same situations), but increasing the collision so that they connect makes them no longer walkable, which I imagine was the purpose of reducing the collision data to begin with. It's also possible that there's a bug exclusive to micro machines that is preventing the data pipe connection, I can't be certain.
Of course, the micro machine issue technically has no bearing on the mini machine update (since that one worked just fine with the minor fix), so I guess I'll just release this one and live with the mismatched compatibility (and minor version numbers) for the time being. Fixed in v9.2.7
And if you're just genuinely curious on the inner workings of this mod, the data pipe related fixes were added around lines 33-48 in func.lua, within the function Data:fixPipeConnections() (the pipe changes aren't actually done programmatically, since the pipes need to be in exact positions, and it's not a simple matter of scaling down the numbers, since the pipe is off-center on a 2x2 entity, compared to a 3x3 entity, the new pipe positions all have to be added manually)