browsertime 24.3.0 → 24.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 +13 -1
- package/browserscripts/timings/serverTimings.js +10 -14
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
-
## 24.
|
|
3
|
+
## 24.4.0 - 2025-03-11
|
|
4
|
+
### Added
|
|
5
|
+
* Edgedriver 134 [#2269](https://github.com/sitespeedio/browsertime/pull/2269).
|
|
6
|
+
* Chromedriver 134, updated chrome-remote-interfaces and webdriver [#2266](https://github.com/sitespeedio/browsertime/pull/2266)
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
* Fix how to get server timings (from main request) as reported on Slack [#2268](https://github.com/sitespeedio/browsertime/pull/2268).
|
|
10
|
+
|
|
11
|
+
## 24.3.0 - 2025-03-03
|
|
12
|
+
### Added
|
|
13
|
+
* Add support for manually setting the log level using `--logLevel` [#2264](https://github.com/sitespeedio/browsertime/pull/2264).2264
|
|
14
|
+
|
|
15
|
+
## 24.2.0 - 2025-02-05
|
|
4
16
|
### Added
|
|
5
17
|
* Updated Chromedriver and Chromne to 133 and Firefox to 135 [#2261](https://github.com/sitespeedio/browsertime/pull/2261) and [#2262](https://github.com/sitespeedio/browsertime/pull/2262).
|
|
6
18
|
|
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
(function () {
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
});
|
|
13
|
-
}
|
|
14
|
-
return serverTimings;
|
|
15
|
-
} else return undefined;
|
|
2
|
+
let t = window.performance.getEntriesByType('navigation')[0];
|
|
3
|
+
const serverTimings = [];
|
|
4
|
+
for (let timing of t.serverTiming) {
|
|
5
|
+
serverTimings.push({
|
|
6
|
+
name: timing.name,
|
|
7
|
+
duration: timing.duration,
|
|
8
|
+
description: timing.description
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
return serverTimings;
|
|
16
12
|
})();
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "24.
|
|
4
|
+
"version": "24.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": "
|
|
11
|
-
"@sitespeed.io/edgedriver": "
|
|
10
|
+
"@sitespeed.io/chromedriver": "134.0.6998-35",
|
|
11
|
+
"@sitespeed.io/edgedriver": "134.0.3124-51",
|
|
12
12
|
"@sitespeed.io/geckodriver": "0.35.0-1",
|
|
13
13
|
"@sitespeed.io/log": "0.2.6",
|
|
14
14
|
"@sitespeed.io/throttle": "5.0.1",
|
|
15
15
|
"@sitespeed.io/tracium": "0.3.3",
|
|
16
16
|
"chrome-har": "1.0.1",
|
|
17
|
-
"chrome-remote-interface": "0.33.
|
|
17
|
+
"chrome-remote-interface": "0.33.3",
|
|
18
18
|
"execa": "9.5.2",
|
|
19
19
|
"fast-stats": "0.0.7",
|
|
20
20
|
"ff-test-bidi-har-export": "0.0.17",
|
|
21
21
|
"lodash.merge": "4.6.2",
|
|
22
|
-
"selenium-webdriver": "4.
|
|
22
|
+
"selenium-webdriver": "4.29.0",
|
|
23
23
|
"yargs": "17.7.2"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|