browsertime 17.13.0 → 17.14.0
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 +10 -0
- package/lib/core/engine/collector.js +1 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 17.14.0 - 2022-07-24
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
* Edge and Edgedriver 115 [#1973](https://github.com/sitespeedio/browsertime/pull/1973).
|
|
7
|
+
|
|
8
|
+
## 17.13.1 - 2022-07-22
|
|
9
|
+
|
|
10
|
+
### Tech
|
|
11
|
+
* Internal fix how the render blocking result is added [#1972](https://github.com/sitespeedio/browsertime/pull/1972).
|
|
12
|
+
|
|
3
13
|
|
|
4
14
|
## 17.13.0 - 2022-07-21
|
|
5
15
|
### Fixed
|
|
@@ -51,6 +51,7 @@ function getNewResult(url, options) {
|
|
|
51
51
|
fullyLoaded: [],
|
|
52
52
|
mainDocumentTimings: [],
|
|
53
53
|
errors: [],
|
|
54
|
+
renderBlocking: [],
|
|
54
55
|
server: { processesAtStart: [] }
|
|
55
56
|
};
|
|
56
57
|
}
|
|
@@ -400,9 +401,6 @@ export class Collector {
|
|
|
400
401
|
}
|
|
401
402
|
|
|
402
403
|
if (data.renderBlocking) {
|
|
403
|
-
if (!results.renderBlocking) {
|
|
404
|
-
results.renderBlocking = [];
|
|
405
|
-
}
|
|
406
404
|
results.renderBlocking.push(data.renderBlocking);
|
|
407
405
|
|
|
408
406
|
statistics.addDeep({
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.14.0",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@cypress/xvfb": "1.2.4",
|
|
9
9
|
"@devicefarmer/adbkit": "2.11.3",
|
|
10
10
|
"@sitespeed.io/chromedriver": "115.0.5790-98b",
|
|
11
|
-
"@sitespeed.io/edgedriver": "
|
|
11
|
+
"@sitespeed.io/edgedriver": "115.0.1901-183",
|
|
12
12
|
"@sitespeed.io/geckodriver": "0.33.0",
|
|
13
13
|
"@sitespeed.io/throttle": "5.0.0",
|
|
14
14
|
"@sitespeed.io/tracium": "0.3.3",
|