react-native-windows 0.72.36 → 0.72.37

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.
@@ -48,8 +48,8 @@ string EncodeBase64(string_view text) noexcept {
48
48
  std::copy(encode_base64(bytes.cbegin()), encode_base64(bytes.cend()), ostream_iterator<char>(oss));
49
49
 
50
50
  // https://unix.stackexchange.com/questions/631501
51
- auto padLength = (4 - (oss.tellp() % 4)) % 4;
52
- for (auto i = 0; i < padLength; ++i) {
51
+ size_t padLength = (4 - (oss.tellp() % 4)) % 4;
52
+ for (size_t i = 0; i < padLength; ++i) {
53
53
  oss << '=';
54
54
  }
55
55
 
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.72.36</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.72.37</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>72</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>36</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>37</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>71d2b809576c9205bd817a394dd37441a90f35d2</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>b96c844d571c5af6238cfc3b1e103c51bd677968</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.72.36",
3
+ "version": "0.72.37",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",