I was able to reproduce this issue in several ways and think I got a good hypothesis about what is going on.
MC-134205_4.zip
is a world that reproduces the issue of a chest randomly losing its items.
You can open the world in 1.12.2 first to confirm that the chest is filled.
Then open it in 1.13. Only half of the chest should be filled now.
(I used Java 1.8.0_171 64bit, that might matter, as I suspect hash map ordering to play a role here, which changed from Java 1.7 to Java 1.8)
When closing and opening the world again in 1.13 the chest might become invisible until you open it.
MC-134205_3.zip
reproduces the issue in a way that may give a better idea how it is caused.
All chests in this world are full with stone.
Load the world in 1.13 for the first time.
Depending on where the chests are, compared to the player, some of them randomly become empty.
To get a feeling on how to reproduce this, you can turn on the command block and then fly around behind the chests.
The command will replace empty chest with glass, so each time it happens a glass block is placed.
So it gives nice visual feedback whenever the issue is happening.
Once I had figured out how to move to make it happen, I put items in one of the glitched chests.
https://www.youtube.com/watch?v=adPGdp4x85E&t=3m25s
As you can see, the chest doesn't just become empty, but it seems to switch with an other chests.
So judging from this data, my guess what is going on is, that the recent changes to chests lead to sometimes two tile entities being created on upgrading.
Depending on which one of them updates first, that one is shown to the player.
I recall tile entities being ordered by a hash map, so that could explain the position depended empty chests.
The issue seems to only happen when opening an old map in 1.13 for the first time, but in some cases this means a complete loss of the items in a chest (see MC-134205_3.zip
).
I hope this helps to fully track down and fix the issue.
While this issue isn't as severe as the initial tests indicated, I still think it's something worthy of a 1.13.1.
Thank you for the analysis; though it would be better if you added this to
MC-134115, as this ticket is resolved.