browsertime 23.0.0 → 23.1.1
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 +12 -0
- package/lib/firefox/webdriver/builder.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 23.1.1 - 2024-10-08
|
|
4
|
+
### Fixed
|
|
5
|
+
* Updated to har export 0.0.16 for Firefox that fixes the HAR timing problem in [#2189](https://github.com/sitespeedio/browsertime/issues/2189) [#2190](https://github.com/sitespeedio/browsertime/pull/2190).
|
|
6
|
+
|
|
7
|
+
## 23.1.0 - 2024-10-08
|
|
8
|
+
### Added
|
|
9
|
+
* Log if you use a profile template for Firefox [#2186](https://github.com/sitespeedio/browsertime/pull/2186).
|
|
10
|
+
* Update to Firefox 131 and Edge 129 in the Docker container [#2188](https://github.com/sitespeedio/browsertime/pull/2188).
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
* Updated to Chrome-HAR [#2187](https://github.com/sitespeedio/browsertime/pull/2187).
|
|
14
|
+
|
|
3
15
|
## 23.0.0 - 2024-09-23
|
|
4
16
|
|
|
5
17
|
### Breaking
|
|
@@ -52,6 +52,7 @@ export async function configureBuilder(builder, baseDir, options) {
|
|
|
52
52
|
|
|
53
53
|
const profileTemplate = get(firefoxConfig, 'profileTemplate');
|
|
54
54
|
if (profileTemplate) {
|
|
55
|
+
log.info('Using profile %s', get(firefoxConfig, 'profileTemplate'));
|
|
55
56
|
ffOptions.setProfile(get(firefoxConfig, 'profileTemplate'));
|
|
56
57
|
}
|
|
57
58
|
|
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": "23.
|
|
4
|
+
"version": "23.1.1",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"@sitespeed.io/throttle": "5.0.1",
|
|
15
15
|
"@sitespeed.io/tracium": "0.3.3",
|
|
16
16
|
"btoa": "1.2.1",
|
|
17
|
-
"chrome-har": "0.
|
|
17
|
+
"chrome-har": "1.0.0",
|
|
18
18
|
"chrome-remote-interface": "0.33.2",
|
|
19
19
|
"dayjs": "1.11.13",
|
|
20
20
|
"execa": "9.3.1",
|
|
21
21
|
"fast-stats": "0.0.7",
|
|
22
|
-
"ff-test-bidi-har-export": "0.0.
|
|
22
|
+
"ff-test-bidi-har-export": "0.0.16",
|
|
23
23
|
"find-up": "7.0.0",
|
|
24
24
|
"get-port": "7.1.0",
|
|
25
25
|
"hasbin": "1.2.3",
|