browsertime 23.0.0 → 23.1.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,13 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 23.1.0 - 2024-10-08
4
+ ### Added
5
+ * Log if you use a profile template for Firefox [#2186](https://github.com/sitespeedio/browsertime/pull/2186).
6
+ * Update to Firefox 131 and Edge 129 in the Docker container [#2188](https://github.com/sitespeedio/browsertime/pull/2188).
7
+
8
+ ### Fixed
9
+ * Updated to Chrome-HAR [#2187](https://github.com/sitespeedio/browsertime/pull/2187).
10
+
3
11
  ## 23.0.0 - 2024-09-23
4
12
 
5
13
  ### 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.0.0",
4
+ "version": "23.1.0",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",
@@ -14,7 +14,7 @@
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.13.5",
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",