react-native-windows 0.0.0-canary.550 → 0.0.0-canary.552

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,7 +10,7 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.0.0-canary.550</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.0.0-canary.552</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>0</ReactNativeWindowsMinor>
16
16
  <ReactNativeWindowsPatch>0</ReactNativeWindowsPatch>
@@ -56,6 +56,7 @@
56
56
  <file src="$nugetroot$\inc\Shared\Modules\I18nModule.h" target="inc"/>
57
57
  <file src="$nugetroot$\inc\Shared\NativeModuleProvider.h" target="inc"/>
58
58
  <file src="$nugetroot$\inc\Shared\Networking\IWebSocketResource.h" target="inc"/>
59
+ <file src="$nugetroot$\inc\Shared\Networking\OriginPolicy.h" target="inc"/>
59
60
  <file src="$nugetroot$\inc\Shared\RuntimeOptions.h" target="inc"/>
60
61
  <file src="$nugetroot$\inc\Shared\Tracing.h" target="inc"/>
61
62
 
@@ -9,7 +9,7 @@ enum class OriginPolicy : size_t {
9
9
  None = 0,
10
10
  SameOrigin = 1,
11
11
  SimpleCrossOriginResourceSharing = 2,
12
- CrossOriginResourceSharing = 3, // TODO: Rename as FullCrossOriginResourceSharing?
12
+ CrossOriginResourceSharing = 3,
13
13
  };
14
14
 
15
15
  } // namespace Microsoft::React::Networking
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.0.0-canary.550",
3
+ "version": "0.0.0-canary.552",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,9 +30,9 @@ namespace {{ namespace }}
30
30
  public App()
31
31
  {
32
32
  #if BUNDLE
33
- JavaScriptBundleFile = "index.windows";
34
- InstanceSettings.UseWebDebugger = false;
35
- InstanceSettings.UseFastRefresh = false;
33
+ JavaScriptBundleFile = "index.windows";
34
+ InstanceSettings.UseWebDebugger = false;
35
+ InstanceSettings.UseFastRefresh = false;
36
36
  #else
37
37
  JavaScriptBundleFile = "index";
38
38
  InstanceSettings.UseWebDebugger = true;