react-native-windows 0.66.24 → 0.66.25
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/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": "Mon, 11 Jul 2022 15:10:43 GMT",
|
|
6
|
+
"tag": "react-native-windows_v0.66.25",
|
|
7
|
+
"version": "0.66.25",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "[0.66] CG updates for 6/28/22",
|
|
12
|
+
"author": "jthysell@microsoft.com",
|
|
13
|
+
"commit": "68052c481af47c29eca1b559000277ce47dec98e",
|
|
14
|
+
"package": "react-native-windows"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 23 Jun 2022 18:49:07 GMT",
|
|
6
21
|
"tag": "react-native-windows_v0.66.24",
|
|
7
22
|
"version": "0.66.24",
|
|
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 Mon, 11 Jul 2022 15:10:43 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.66.
|
|
7
|
+
## 0.66.25
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Mon, 11 Jul 2022 15:10:43 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Fix ExecuteJsi on instance shutdown (vmorozov@microsoft.com)
|
|
13
|
+
- [0.66] CG updates for 6/28/22 (jthysell@microsoft.com)
|
|
15
14
|
|
|
15
|
+
## 0.66.24
|
|
16
|
+
|
|
17
|
+
Thu, 23 Jun 2022 18:49:07 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Stop compiling yoga.cpp with /fp:strict. Doing so caused layout issues if Yoga code ran with the processor's rounding mode set to round down, due to NAN being defined in math.h as: ``` (float)(INFINITY * 0.0f) ``` Which macro-expands to: ``` (float)(((float)(1e+300 * 1e+300)) * 0.0f) ``` Which evaluates as follows: ``` (float)(((float)(inf.double)) * 0.0f) (float)(FLT_MAX * 0.0f) // Casting an infinite double to a float yields // FLT_MAX! (float)0.0f ``` (hpratt@microsoft.com)
|
|
22
|
+
- Fix ExecuteJsi on instance shutdown (vmorozov@microsoft.com)
|
|
23
|
+
|
|
16
24
|
## 0.66.23
|
|
17
25
|
|
|
18
26
|
Fri, 17 Jun 2022 17:40:57 GMT
|