browsertime 22.8.0 → 22.9.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,12 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 22.9.0 - 2024-08-26
4
+ ### Added
5
+ * Geckodriver 0.35.0 [#2170](https://github.com/sitespeedio/browsertime/pull/2170)
6
+ ### Fixed
7
+ * Stopping gnirehtet throwed errors [#2172](https://github.com/sitespeedio/browsertime/pull/2171).
8
+ * Updated to Throttle 5.0.1 that have nicer ifb0 handling [#2172](https://github.com/sitespeedio/browsertime/pull/2172)
9
+
3
10
  ## 22.8.0 - 2024-07-30
4
11
  ### Added
5
12
  * Edgedriver 126 [#2166](https://github.com/sitespeedio/browsertime/pull/2166)
@@ -59,9 +59,7 @@ export class Gnirehtet {
59
59
  await execa('gnirehtet', scriptArguments);
60
60
  await delay(2000);
61
61
  // This should stop both desktop and client.
62
- await this.gnirehtet.kill('SIGINT', {
63
- forceKillAfterTimeout: 2000
64
- });
62
+ await this.gnirehtet.kill('SIGINT');
65
63
  return delay(2000);
66
64
  }
67
65
  }
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": "22.8.0",
4
+ "version": "22.9.0",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",
@@ -10,8 +10,8 @@
10
10
  "@devicefarmer/adbkit": "3.2.6",
11
11
  "@sitespeed.io/chromedriver": "127.0.6533-72",
12
12
  "@sitespeed.io/edgedriver": "126.0.2592-102",
13
- "@sitespeed.io/geckodriver": "0.34.0",
14
- "@sitespeed.io/throttle": "5.0.0",
13
+ "@sitespeed.io/geckodriver": "0.35.0",
14
+ "@sitespeed.io/throttle": "5.0.1",
15
15
  "@sitespeed.io/tracium": "0.3.3",
16
16
  "btoa": "1.2.1",
17
17
  "chrome-har": "0.13.5",