browsertime 25.3.1 → 25.4.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 +4 -0
- package/lib/support/cli.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 25.4.0 - 2025-11-02
|
|
4
|
+
### Added
|
|
5
|
+
* Chrome and Chromedriver 142 [#2335](https://github.com/sitespeedio/browsertime/pull/2335).
|
|
6
|
+
|
|
3
7
|
## 25.3.1 - 2025-10-24
|
|
4
8
|
### Fixed
|
|
5
9
|
* Better handling of closing XVFB [#2332](https://github.com/sitespeedio/browsertime/pull/2332).
|
package/lib/support/cli.js
CHANGED
|
@@ -858,7 +858,7 @@ export function parseCommandLine() {
|
|
|
858
858
|
})
|
|
859
859
|
.option('edge.edgedriverPath', {
|
|
860
860
|
describe:
|
|
861
|
-
'Path to custom msedgedriver version (need to match your
|
|
861
|
+
'Path to custom msedgedriver version (need to match your Edge version).',
|
|
862
862
|
group: 'edge'
|
|
863
863
|
})
|
|
864
864
|
.option('edge.binaryPath', {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.4.0",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@devicefarmer/adbkit": "3.3.8",
|
|
10
|
-
"@sitespeed.io/chromedriver": "
|
|
10
|
+
"@sitespeed.io/chromedriver": "142.0.7444-59",
|
|
11
11
|
"@sitespeed.io/edgedriver": "141.0.3537-71",
|
|
12
12
|
"@sitespeed.io/geckodriver": "0.36.0",
|
|
13
13
|
"@sitespeed.io/log": "1.0.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"fast-stats": "0.0.7",
|
|
20
20
|
"ff-test-bidi-har-export": "0.0.18",
|
|
21
21
|
"lodash.merge": "4.6.2",
|
|
22
|
-
"selenium-webdriver": "4.
|
|
22
|
+
"selenium-webdriver": "4.38.0",
|
|
23
23
|
"yargs": "18.0.0"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|