react-native-windows 0.74.58 → 0.74.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,7 @@
4
4
  #include "ReactHost.h"
5
5
  #include <Future/FutureWait.h>
6
6
  #include <ReactPropertyBag.h>
7
+ #include <react/featureflags/ReactNativeFeatureFlags.h>
7
8
  #include <winrt/Windows.Foundation.h>
8
9
 
9
10
  namespace Mso::React {
@@ -284,7 +285,10 @@ bool ReactOptions::EnableDefaultCrashHandler() const noexcept {
284
285
  ReactHost::ReactHost(Mso::DispatchQueue const &queue) noexcept
285
286
  : Super{EnsureSerialQueue(queue)},
286
287
  m_options{Queue(), m_mutex},
287
- m_notifyWhenClosed{ReactHostRegistry::Register(*this), Queue(), m_mutex} {}
288
+ m_notifyWhenClosed{ReactHostRegistry::Register(*this), Queue(), m_mutex} {
289
+ static std::once_flag initFeatureFlagsOnce;
290
+ std::call_once(initFeatureFlagsOnce, []() noexcept { facebook::react::ReactNativeFeatureFlags::commonTestFlag(); });
291
+ }
288
292
 
289
293
  ReactHost::~ReactHost() noexcept {}
290
294
 
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.74.58</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.74.59</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>74</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>58</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>59</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>a10e9ddf836af3d978649582cc1748ccdc10d2fb</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>17abfe82955afec1da2e9032cbd50368394d21ec</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.74.58",
3
+ "version": "0.74.59",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",