react-native-windows 0.72.4 → 0.72.5

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.72.4</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.72.5</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>72</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>4</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>5</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>2f12d588d6c668fa5b6de64232454d5fc31e5a82</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>6b90857aa8bfcba0b1a5f771c31b089c8dde9a5a</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
@@ -554,17 +554,20 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
554
554
  },
555
555
  nativeQueue));
556
556
 
557
- modules.push_back(std::make_unique<CxxNativeModule>(
558
- m_innerInstance,
559
- Microsoft::React::GetBlobModuleName(),
560
- [transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
561
- nativeQueue));
557
+ // Use in case the host app provides its a non-Blob-compatilbe HTTP module.
558
+ if (!Microsoft::React::GetRuntimeOptionBool("Blob.DisableModule")) {
559
+ modules.push_back(std::make_unique<CxxNativeModule>(
560
+ m_innerInstance,
561
+ Microsoft::React::GetBlobModuleName(),
562
+ [transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
563
+ nativeQueue));
562
564
 
563
- modules.push_back(std::make_unique<CxxNativeModule>(
564
- m_innerInstance,
565
- Microsoft::React::GetFileReaderModuleName(),
566
- [transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
567
- nativeQueue));
565
+ modules.push_back(std::make_unique<CxxNativeModule>(
566
+ m_innerInstance,
567
+ Microsoft::React::GetFileReaderModuleName(),
568
+ [transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
569
+ nativeQueue));
570
+ }
568
571
 
569
572
  modules.push_back(std::make_unique<CxxNativeModule>(
570
573
  m_innerInstance,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.72.4",
3
+ "version": "0.72.5",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",