Stability of sort()

Is the sort function stable by default, i.e preserving entries that are equal under the comparison function? If not, can I still expect the outcome of sort to be independent of the Julia version, say, 1.7 vs 1.8, for reproducibility purposes?

See Sorting and Related Functions · The Julia Language.

OK, so essentially yes.