Skip to content

React Native Windows 0.66.24

Compare
Choose a tag to compare
@rnbot rnbot released this 23 Jun 18:49
· 2866 commits to main since this release

This is patch release of react-native-windows, fixing bugs or adding non-breaking enhancements. To see a summary of changes in this major release, see release notes for React Native Windows 0.66.0.

New changes

  • f13c49a Stop compiling yoga.cpp with /fp:strict. Doing so caused layout issues if Yoga code ran with the processor's rounding mode set to round down, due to NAN being defined in math.h as: (float)(INFINITY * 0.0f) Which macro-expands to: (float)(((float)(1e+300 * 1e+300)) * 0.0f) Which evaluates as follows: (float)(((float)(inf.double)) * 0.0f) (float)(FLT_MAX * 0.0f) // Casting an infinite double to a float yields // FLT_MAX! (float)0.0f (hpratt@microsoft.com)
  • eb27648 Fix ExecuteJsi on instance shutdown (vmorozov@microsoft.com)