browsertime 16.13.1 → 16.13.2
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.md +5 -0
- package/lib/support/har/index.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
## 16.13.2 - 2022-08-14
|
|
5
|
+
### Fixed
|
|
6
|
+
* Disable adding lastCPULongTask to the HAR data since it breaks waterfall view on slow mobile phones with late CPU long tasks [#1828](https://github.com/sitespeedio/browsertime/pull/1828).
|
|
7
|
+
|
|
3
8
|
## 16.13.1 - 2022-08-10
|
|
4
9
|
### Fixed
|
|
5
10
|
* Make sure that Android id is always picked up from the phone if tests run on Android [#1826](https://github.com/sitespeedio/browsertime/pull/1826).
|
package/lib/support/har/index.js
CHANGED
|
@@ -91,9 +91,11 @@ function addExtrasToHAR(
|
|
|
91
91
|
harPageTimings._firstPaint = timings.firstPaint;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
/*
|
|
94
95
|
if (cpu && cpu.longTasks && cpu.longTasks.lastLongTask) {
|
|
95
96
|
harPageTimings._lastCPULongTask = cpu.longTasks.lastLongTask;
|
|
96
97
|
}
|
|
98
|
+
*/
|
|
97
99
|
|
|
98
100
|
if (timings && timings.largestContentfulPaint) {
|
|
99
101
|
harPageTimings._largestContentfulPaint =
|