react-native-windows 0.66.22 → 0.66.23
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.
- package/CHANGELOG.json +16 -1
- package/CHANGELOG.md +13 -5
- package/Microsoft.ReactNative.Cxx/JSValueWriter.h +1 -1
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "react-native-windows",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Fri, 17 Jun 2022 17:40:41 GMT",
|
|
6
|
+
"tag": "react-native-windows_v0.66.23",
|
|
7
|
+
"version": "0.66.23",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Fix use of [[maybe_unused]] attribute",
|
|
12
|
+
"author": "vmorozov@microsoft.com",
|
|
13
|
+
"commit": "4530d5e97508d8586ddce4eaa325c1fd5a0a49ee",
|
|
14
|
+
"package": "react-native-windows"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 09 Jun 2022 04:18:35 GMT",
|
|
6
21
|
"tag": "react-native-windows_v0.66.22",
|
|
7
22
|
"version": "0.66.22",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
# Change Log - react-native-windows
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 17 Jun 2022 17:40:41 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.66.
|
|
7
|
+
## 0.66.23
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Fri, 17 Jun 2022 17:40:41 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Change the definition of YGUndefined from NAN to __builtin_nanf("0") (30809111+acoates-ms@users.noreply.github.com)
|
|
13
|
+
- Fix use of [[maybe_unused]] attribute (vmorozov@microsoft.com)
|
|
15
14
|
|
|
15
|
+
## 0.66.22
|
|
16
|
+
|
|
17
|
+
Thu, 09 Jun 2022 04:18:35 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Enable Blob module with runtime option (julio.rocha@microsoft.com)
|
|
22
|
+
- Change the definition of YGUndefined from NAN to __builtin_nanf("0") (30809111+acoates-ms@users.noreply.github.com)
|
|
23
|
+
|
|
16
24
|
## 0.66.21
|
|
17
25
|
|
|
18
26
|
Mon, 30 May 2022 15:09:34 GMT
|
|
@@ -287,7 +287,7 @@ inline JSValueArgWriter MakeJSValueWriter(T &&argWriter) noexcept {
|
|
|
287
287
|
|
|
288
288
|
template <class... TArgs>
|
|
289
289
|
inline JSValueArgWriter MakeJSValueWriter(TArgs &&... args) noexcept {
|
|
290
|
-
return [&args...](
|
|
290
|
+
return [&args...]([[maybe_unused]] IJSValueWriter const &writer) noexcept { (WriteValue(writer, args), ...); };
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
} // namespace winrt::Microsoft::ReactNative
|