I'm okay being told that this isn't important, but it does feel a little annoying for anyone trying to build muscle memory on where to glance when checking for the PSVersion, GitCommitId, or PSEdition.
Call $PSVersionTable from any version of PowerShell Core 6.0
The ordering of the output should remain the same between versions.
The ordering of the output has changed for every alpha:

I'd say either pick an order based on relevance in which case PSVersion and PSEdition should probably be the first two fields and BuildVersion/GitCommitId that last two. Or just make it alphabetical. I'd prefer the former but could live with the latter.
$PSVersionTable is simply a hashtable so the order of the keys is not聽guaranteed. Changing the type of the object would be a breaking change. Since it's just a hashtable, it's displayed using the normal hashtable renderer. It might be reasonable to change the hashtable rendering so聽that the keys are sorted first though this would change the behavior for all hashtables.聽(Changing how an object is rendered is not considered a breaking change.)
If we don't want alphabetical, there are a couple of options:
We already have a "breaking" change.
In Windows PowerShell the '$PSVersionTable' type is System.Management.Automation.PSVersionHashTable, in PowerShell Core is Hashtable.
Most helpful comment
If we don't want alphabetical, there are a couple of options: