react-native-windows 0.65.11 → 0.65.12
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 +12 -4
- package/Microsoft.ReactNative.Cxx/NativeModules.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": "Mon,
|
|
5
|
+
"date": "Mon, 07 Feb 2022 16:12:12 GMT",
|
|
6
|
+
"tag": "react-native-windows_v0.65.12",
|
|
7
|
+
"version": "0.65.12",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Replace __APPLE__ with __clang__ where applicable (#9461)",
|
|
12
|
+
"author": "julio.rocha@microsoft.com",
|
|
13
|
+
"commit": "a6dfccfb6cb32bbfd0ab9fa565f18b1b88890ac4",
|
|
14
|
+
"package": "react-native-windows"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Mon, 31 Jan 2022 16:12:18 GMT",
|
|
6
21
|
"tag": "react-native-windows_v0.65.11",
|
|
7
22
|
"version": "0.65.11",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
# Change Log - react-native-windows
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 07 Feb 2022 16:12:12 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.65.
|
|
7
|
+
## 0.65.12
|
|
8
8
|
|
|
9
|
-
Mon,
|
|
9
|
+
Mon, 07 Feb 2022 16:12:12 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Replace __APPLE__ with __clang__ where applicable (#9461) (julio.rocha@microsoft.com)
|
|
14
14
|
|
|
15
|
+
## 0.65.11
|
|
16
|
+
|
|
17
|
+
Mon, 31 Jan 2022 16:12:18 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- [0.65] Avoid capturing raw this pointer in WebSocket module (julio.rocha@microsoft.com)
|
|
22
|
+
|
|
15
23
|
## 0.65.10
|
|
16
24
|
|
|
17
25
|
Mon, 17 Jan 2022 16:11:34 GMT
|
|
@@ -280,7 +280,7 @@ constexpr void ValidateCoroutineArg() noexcept {
|
|
|
280
280
|
static_assert(
|
|
281
281
|
!std::is_reference_v<TArg> && !std::is_pointer_v<TArg>,
|
|
282
282
|
"Coroutine parameter must be passed by value for safe access"
|
|
283
|
-
#ifndef
|
|
283
|
+
#ifndef __clang__
|
|
284
284
|
": " __FUNCSIG__
|
|
285
285
|
#endif
|
|
286
286
|
);
|