I don’t understand what these words mean. Does it mean that what was stable memory will become heap memory and therefore heap will be growable up to ~1TiB?
What he means is that he switched his project from heap to stable as it’s just a descision you have as a developer;
heap has the benefit of being faster and cheaper compared to stable, but has limitations related to storage, plus requires custom logic for persisting between upgrades via pre-/post upgrade
Stable is slower, more cycle consuming but doesnt have the storage limitation and remains persistent during upgrades.
I personally use stable storage for larger data, for simple variables that i could just set on init, pre-post upgrade i just heap.