browsertime 22.8.0 → 22.10.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 +14 -0
- package/lib/android/gnirehtet.js +1 -3
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 22.10.0 - 2024-09-03
|
|
4
|
+
### Added
|
|
5
|
+
* Chromedriver 128 [#2175](https://github.com/sitespeedio/browsertime/pull/2175)
|
|
6
|
+
* Chrome 128, Firefox 129, Edge 127 [#2173](https://github.com/sitespeedio/browsertime/pull/2173)
|
|
7
|
+
### Fixed
|
|
8
|
+
* Updated dependencies: usb-profiling, fast-stats, webdriver, execa, dayjs [#2174](https://github.com/sitespeedio/browsertime/pull/2174).
|
|
9
|
+
|
|
10
|
+
## 22.9.0 - 2024-08-26
|
|
11
|
+
### Added
|
|
12
|
+
* Geckodriver 0.35.0 [#2170](https://github.com/sitespeedio/browsertime/pull/2170)
|
|
13
|
+
### Fixed
|
|
14
|
+
* Stopping gnirehtet throwed errors [#2172](https://github.com/sitespeedio/browsertime/pull/2171).
|
|
15
|
+
* Updated to Throttle 5.0.1 that have nicer ifb0 handling [#2172](https://github.com/sitespeedio/browsertime/pull/2172)
|
|
16
|
+
|
|
3
17
|
## 22.8.0 - 2024-07-30
|
|
4
18
|
### Added
|
|
5
19
|
* Edgedriver 126 [#2166](https://github.com/sitespeedio/browsertime/pull/2166)
|
package/lib/android/gnirehtet.js
CHANGED
|
@@ -59,9 +59,7 @@ export class Gnirehtet {
|
|
|
59
59
|
await execa('gnirehtet', scriptArguments);
|
|
60
60
|
await delay(2000);
|
|
61
61
|
// This should stop both desktop and client.
|
|
62
|
-
await this.gnirehtet.kill('SIGINT'
|
|
63
|
-
forceKillAfterTimeout: 2000
|
|
64
|
-
});
|
|
62
|
+
await this.gnirehtet.kill('SIGINT');
|
|
65
63
|
return delay(2000);
|
|
66
64
|
}
|
|
67
65
|
}
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "22.
|
|
4
|
+
"version": "22.10.0",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@cypress/xvfb": "1.2.4",
|
|
10
10
|
"@devicefarmer/adbkit": "3.2.6",
|
|
11
|
-
"@sitespeed.io/chromedriver": "
|
|
11
|
+
"@sitespeed.io/chromedriver": "128.0.6613-86",
|
|
12
12
|
"@sitespeed.io/edgedriver": "126.0.2592-102",
|
|
13
|
-
"@sitespeed.io/geckodriver": "0.
|
|
14
|
-
"@sitespeed.io/throttle": "5.0.
|
|
13
|
+
"@sitespeed.io/geckodriver": "0.35.0",
|
|
14
|
+
"@sitespeed.io/throttle": "5.0.1",
|
|
15
15
|
"@sitespeed.io/tracium": "0.3.3",
|
|
16
16
|
"btoa": "1.2.1",
|
|
17
17
|
"chrome-har": "0.13.5",
|
|
18
18
|
"chrome-remote-interface": "0.33.2",
|
|
19
|
-
"dayjs": "1.11.
|
|
20
|
-
"execa": "9.3.
|
|
21
|
-
"fast-stats": "0.0.
|
|
19
|
+
"dayjs": "1.11.13",
|
|
20
|
+
"execa": "9.3.1",
|
|
21
|
+
"fast-stats": "0.0.7",
|
|
22
22
|
"ff-test-bidi-har-export": "0.0.13",
|
|
23
23
|
"find-up": "7.0.0",
|
|
24
24
|
"get-port": "7.1.0",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"lodash.merge": "4.6.2",
|
|
31
31
|
"lodash.pick": "4.4.0",
|
|
32
32
|
"lodash.set": "4.3.2",
|
|
33
|
-
"selenium-webdriver": "4.
|
|
34
|
-
"usb-power-profiling": "
|
|
33
|
+
"selenium-webdriver": "4.24.0",
|
|
34
|
+
"usb-power-profiling": "1.4.0",
|
|
35
35
|
"yargs": "17.7.2"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
38
|
"jimp": "0.22.12"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/selenium-webdriver": "4.1.
|
|
41
|
+
"@types/selenium-webdriver": "4.1.25",
|
|
42
42
|
"ava": "6.1.3",
|
|
43
43
|
"clean-jsdoc-theme": "4.3.0",
|
|
44
44
|
"eslint": "9.8.0",
|