react-native-windows 0.66.15 → 0.66.16
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/Mso/dispatchQueue/dispatchQueue.h +6 -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, 04 Apr 2022 15:12:52 GMT",
|
|
6
|
+
"tag": "react-native-windows_v0.66.16",
|
|
7
|
+
"version": "0.66.16",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "MustBeNoExceptVoidFunctor should depend on the template type parameter to avoid being evaluated too early (#9609)",
|
|
12
|
+
"author": "asklar@microsoft.com",
|
|
13
|
+
"commit": "aab0df703cec0f9e69b185d13a59d976fa62a873",
|
|
14
|
+
"package": "react-native-windows"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Mon, 14 Mar 2022 15:13:42 GMT",
|
|
6
21
|
"tag": "react-native-windows_v0.66.15",
|
|
7
22
|
"version": "0.66.15",
|
|
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, 04 Apr 2022 15:12:52 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.66.
|
|
7
|
+
## 0.66.16
|
|
8
8
|
|
|
9
|
-
Mon,
|
|
9
|
+
Mon, 04 Apr 2022 15:12:52 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- MustBeNoExceptVoidFunctor should depend on the template type parameter to avoid being evaluated too early (#9609) (asklar@microsoft.com)
|
|
14
14
|
|
|
15
|
+
## 0.66.15
|
|
16
|
+
|
|
17
|
+
Mon, 14 Mar 2022 15:13:42 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Safe re-entrancy for EnsureHermesLoaded (tudor.mihai@microsoft.com)
|
|
22
|
+
|
|
15
23
|
## 0.66.14
|
|
16
24
|
|
|
17
25
|
Mon, 28 Feb 2022 16:14:18 GMT
|
|
@@ -723,9 +723,14 @@ inline DispatchTaskImpl<TInvoke, TOnCancel>::~DispatchTaskImpl() noexcept {
|
|
|
723
723
|
}
|
|
724
724
|
}
|
|
725
725
|
|
|
726
|
+
namespace details {
|
|
727
|
+
template <typename>
|
|
728
|
+
constexpr bool always_false = false;
|
|
729
|
+
}
|
|
730
|
+
|
|
726
731
|
template <typename T>
|
|
727
732
|
inline void MustBeNoExceptVoidFunctor() {
|
|
728
|
-
static_assert(
|
|
733
|
+
static_assert(details::always_false<T>, __FUNCTION__ ": not a noexcept callable functor returning void");
|
|
729
734
|
}
|
|
730
735
|
|
|
731
736
|
template <typename TInvoke, typename TOnCancel>
|