react-native-windows 0.71.27 → 0.71.28

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.
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.71.27</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.71.28</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>71</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>27</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>28</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>5cd9b23f58d5b82abb2ab41a35444ede00afd6da</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>d543e65183786f8d7c01643b6d8c6202baaac145</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
@@ -570,17 +570,20 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
570
570
  },
571
571
  nativeQueue));
572
572
 
573
- modules.push_back(std::make_unique<CxxNativeModule>(
574
- m_innerInstance,
575
- Microsoft::React::GetBlobModuleName(),
576
- [transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
577
- nativeQueue));
573
+ // Use in case the host app provides its a non-Blob-compatilbe HTTP module.
574
+ if (!Microsoft::React::GetRuntimeOptionBool("Blob.DisableModule")) {
575
+ modules.push_back(std::make_unique<CxxNativeModule>(
576
+ m_innerInstance,
577
+ Microsoft::React::GetBlobModuleName(),
578
+ [transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
579
+ nativeQueue));
578
580
 
579
- modules.push_back(std::make_unique<CxxNativeModule>(
580
- m_innerInstance,
581
- Microsoft::React::GetFileReaderModuleName(),
582
- [transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
583
- nativeQueue));
581
+ modules.push_back(std::make_unique<CxxNativeModule>(
582
+ m_innerInstance,
583
+ Microsoft::React::GetFileReaderModuleName(),
584
+ [transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
585
+ nativeQueue));
586
+ }
584
587
 
585
588
  modules.push_back(std::make_unique<CxxNativeModule>(
586
589
  m_innerInstance,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.71.27",
3
+ "version": "0.71.28",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",