You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously the Sort extension for NativeContainers could access memory out of bounds of the container when an invalid IComparer<T> was implemented for T: Comparers must return three states (<0, 0, >0). Sort will now no longer access invalid memory and when running with collection checks enabled (e.g. always on in Editor) or using UNITY_DOTS_DEBUG in player builds, an additional check at the beginning of the sort will validate the comparer is implemented correctly and inform users otherwise.
Added
Added a dependency on the com.unity.test-framework.performance package