react-native-windows 0.74.28 → 0.74.29

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.
@@ -283,7 +283,9 @@ struct JsiAbiRuntime : facebook::jsi::Runtime {
283
283
  ~ValueRef() noexcept;
284
284
  operator facebook::jsi::Value const &() const noexcept;
285
285
 
286
- using StoreType = std::aligned_storage_t<sizeof(DataPointerValue)>;
286
+ struct alignas(std::max_align_t) StoreType {
287
+ std::byte buffer[sizeof(DataPointerValue)];
288
+ };
287
289
  static void InitValueRef(JsiValueRef const &data, facebook::jsi::Value *value, StoreType *store) noexcept;
288
290
 
289
291
  private:
@@ -307,7 +309,9 @@ struct JsiAbiRuntime : facebook::jsi::Runtime {
307
309
  ~PropNameIDRef() noexcept;
308
310
  operator facebook::jsi::PropNameID const &() const noexcept;
309
311
 
310
- using StoreType = std::aligned_storage_t<sizeof(DataPointerValue)>;
312
+ struct alignas(std::max_align_t) StoreType {
313
+ std::byte buffer[sizeof(DataPointerValue)];
314
+ };
311
315
 
312
316
  private:
313
317
  StoreType m_pointerStore{};
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.74.28</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.74.29</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>74</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>28</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>29</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>5ba9938ca2e5f47ca374e84cc22cfdd07b2eb634</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>c15cbb774b3faa73f63778955cc8a4085e39210e</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.28",
3
+ "version": "0.74.29",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",