browsertime 19.1.0 → 19.2.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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 19.2.0 - 2023-12-11
|
|
4
|
+
### Added
|
|
5
|
+
* Updated to Chrome and Edge 120 in the Docker container [#2031](https://github.com/sitespeedio/browsertime/pull/2031).
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
* Updated to Selenium 4.16.0 [#2026](https://github.com/sitespeedio/browsertime/pull/2026).
|
|
9
|
+
* Updated dev dependencies and find-up [#2029](https://github.com/sitespeedio/browsertime/pull/2029).
|
|
10
|
+
* Recommend NodeJS 18 or later in the package.json [#2030](https://github.com/sitespeedio/browsertime/pull/2030). Browsertime 16.0.0 removed support for NodeJS 16.
|
|
11
|
+
|
|
3
12
|
## 19.1.0 - 2023-11-27
|
|
4
13
|
|
|
5
14
|
### Added
|
|
@@ -47,6 +47,8 @@ export class ChromeTrace {
|
|
|
47
47
|
|
|
48
48
|
result.renderBlocking = render.renderBlocking;
|
|
49
49
|
|
|
50
|
+
// The trace do not know about the HAR file so we cannot backfill
|
|
51
|
+
/*
|
|
50
52
|
if (!this.options.skipHar) {
|
|
51
53
|
for (let harRequest of this.hars[this.index - 1].log.entries) {
|
|
52
54
|
if (render.renderBlockingInfo[harRequest.request.url]) {
|
|
@@ -54,7 +56,8 @@ export class ChromeTrace {
|
|
|
54
56
|
render.renderBlockingInfo[harRequest.request.url];
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
|
-
|
|
59
|
+
|
|
60
|
+
}*/
|
|
58
61
|
}
|
|
59
62
|
} else {
|
|
60
63
|
throw new Error('Trace only works in Chrome');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "19.
|
|
4
|
+
"version": "19.2.0",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dayjs": "1.11.10",
|
|
20
20
|
"execa": "8.0.1",
|
|
21
21
|
"fast-stats": "0.0.6",
|
|
22
|
-
"find-up": "
|
|
22
|
+
"find-up": "7.0.0",
|
|
23
23
|
"get-port": "7.0.0",
|
|
24
24
|
"hasbin": "1.2.3",
|
|
25
25
|
"intel": "1.2.0",
|
|
@@ -29,24 +29,24 @@
|
|
|
29
29
|
"lodash.merge": "4.6.2",
|
|
30
30
|
"lodash.pick": "4.4.0",
|
|
31
31
|
"lodash.set": "4.3.2",
|
|
32
|
-
"selenium-webdriver": "4.
|
|
32
|
+
"selenium-webdriver": "4.16.0",
|
|
33
33
|
"yargs": "17.7.2"
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|
|
36
36
|
"jimp": "0.22.10"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"ava": "
|
|
40
|
-
"eslint": "8.
|
|
41
|
-
"eslint-config-prettier": "9.
|
|
39
|
+
"ava": "6.0.1",
|
|
40
|
+
"eslint": "8.55.0",
|
|
41
|
+
"eslint-config-prettier": "9.1.0",
|
|
42
42
|
"eslint-plugin-prettier": "5.0.1",
|
|
43
43
|
"eslint-plugin-unicorn": "49.0.0",
|
|
44
|
-
"prettier": "3.
|
|
44
|
+
"prettier": "3.1.1",
|
|
45
45
|
"serve-handler": "6.1.5",
|
|
46
46
|
"serve": "14.2.1"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": ">=
|
|
49
|
+
"node": ">=18.0.0"
|
|
50
50
|
},
|
|
51
51
|
"files": [
|
|
52
52
|
"CHANGELOG.md",
|