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.
|
|
13
|
+
<ReactNativeWindowsVersion>0.72.5</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>72</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>5</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>6b90857aa8bfcba0b1a5f771c31b089c8dde9a5a</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/Shared/OInstance.cpp
CHANGED
|
@@ -554,17 +554,20 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
|
|
|
554
554
|
},
|
|
555
555
|
nativeQueue));
|
|
556
556
|
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
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
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
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,
|