browsertime 17.7.0 → 17.8.0-beta.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 CHANGED
@@ -1,5 +1,8 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## UNRELEASED
4
+ ### Fixed
5
+ * Upgraded to Firefox HAR 0.0.8 [#1937](https://github.com/sitespeedio/browsertime/pull/1937). This can go live when Firefox 112 is out (2023-04-11). Lets do another tests and then switch to default when I've verified all the tests again.
3
6
  ## 17.7.0 - 2022-04-07
4
7
  ### Added
5
8
  * Added Edge/Edgedriver 112.
@@ -55,6 +55,8 @@ export class Firefox {
55
55
  const windowId = await runner.getDriver().getWindowHandle();
56
56
  this.har = new adapters.SeleniumBiDiHarRecorder({
57
57
  browsingContextIds: [windowId],
58
+ debugLogs:
59
+ this.options.verbose >= 2 || this.firefoxConfig.enableBidiHarLog,
58
60
  driver: runner.getDriver()
59
61
  });
60
62
  }
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": "17.7.0",
4
+ "version": "17.8.0-beta.1",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "dependencies": {
@@ -12,7 +12,7 @@
12
12
  "@sitespeed.io/geckodriver": "0.33.0",
13
13
  "@sitespeed.io/throttle": "5.0.0",
14
14
  "@sitespeed.io/tracium": "0.3.3",
15
- "ff-test-bidi-har-export": "0.0.6",
15
+ "ff-test-bidi-har-export": "0.0.8",
16
16
  "btoa": "1.2.1",
17
17
  "chrome-har": "0.13.1",
18
18
  "chrome-remote-interface": "0.32.1",