react-native-windows 0.72.29 → 0.72.30

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.
@@ -278,7 +278,9 @@ void UISchedulerWinRT::Shutdown() noexcept {
278
278
 
279
279
  void UISchedulerWinRT::AwaitTermination() noexcept {
280
280
  Shutdown();
281
- m_terminationEvent.Wait();
281
+ if (m_threadId != std::this_thread::get_id()) {
282
+ m_terminationEvent.Wait();
283
+ }
282
284
  }
283
285
 
284
286
  /*static*/ DispatchQueue UISchedulerWinRT::GetOrCreateUIThreadQueue() noexcept {
@@ -343,7 +345,7 @@ void UISchedulerWinRT::CleanupContext::CheckTermination() noexcept {
343
345
  }
344
346
 
345
347
  //=============================================================================
346
- // DispatchQueueStatic::MakeCurrentThreadUIScheduler implementation
348
+ // DispatchQueueStatic::GetCurrentUIThreadQueue implementation
347
349
  //=============================================================================
348
350
 
349
351
  DispatchQueue DispatchQueueStatic::GetCurrentUIThreadQueue() noexcept {
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.72.29</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.72.30</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>72</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>29</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>30</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>f1cb8a42adcf03658078696832849317f5c65aa1</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>26ed970fceeb6617477a575238c746aadf4a6a12</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
@@ -271,8 +271,6 @@
271
271
  <ClCompile Include="$(MSBuildThisFileDirectory)Networking\DefaultBlobResource.cpp">
272
272
  <Filter>Source Files\Networking</Filter>
273
273
  </ClCompile>
274
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\components\view\HostPlatformViewProps.cpp" />
275
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\components\view\HostPlatformViewEventEmitter.cpp" />
276
274
  <ClCompile Include="$(MSBuildThisFileDirectory)Modules\BlobCollector.cpp">
277
275
  <Filter>Source Files\Modules</Filter>
278
276
  </ClCompile>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.72.29",
3
+ "version": "0.72.30",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",