browsertime 26.3.1 → 26.3.2

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,9 +1,13 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
- ## 26.3.1 - 2026-01-11
3
+ ## 26.3.2 - 2026-01-24
4
4
  ### Fixed
5
- * Reverting back to bidi-har 0.0.18. There where error/failures either in bidi har or in combination with browsertime in the latest release [#2360](https://github.com/sitespeedio/browsertime/pull/2360)
5
+ * Hello the new and fixed bidi-har 0.0.22 that fixes the response body [#2361](https://github.com/sitespeedio/browsertime/pull/2361).
6
+
6
7
 
8
+ ## 26.3.1 - 2026-01-11
9
+ ### Fixed
10
+ * Reverting back to bidi-har 0.0.18. There where error/failures either in bidi har or in combination with browsertime in the latest release [#2360](https://github.com/sitespeedio/browsertime/pull/2360).
7
11
 
8
12
  ## 26.3.0 - 2026-01-09
9
13
 
@@ -65,9 +65,9 @@ export class Firefox {
65
65
  if (!this.options.skipHar) {
66
66
  this.har = new adapters.SeleniumBiDiHarRecorder({
67
67
  browsingContextIds: [this.windowId],
68
+ skipBodyData: this.includeResponseBodies === 'all' ? false : true,
68
69
  debugLogs:
69
70
  this.options.verbose >= 2 || this.firefoxConfig.enableBidiHarLog,
70
- maxBodySize: this.includeResponseBodies === 'all' ? 10_485_760 : 1,
71
71
  driver: runner.getDriver(),
72
72
  headerValueFormatter: this.options.cleanSensitiveHeaders
73
73
  ? cleanSensitiveHeaders
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": "26.3.1",
4
+ "version": "26.3.2",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",
@@ -17,7 +17,7 @@
17
17
  "chrome-remote-interface": "0.33.3",
18
18
  "execa": "9.6.0",
19
19
  "fast-stats": "0.0.7",
20
- "ff-test-bidi-har-export": "0.0.18",
20
+ "ff-test-bidi-har-export": "0.0.22",
21
21
  "lodash.merge": "4.6.2",
22
22
  "selenium-webdriver": "4.39.0",
23
23
  "yargs": "18.0.0"