browsertime 24.4.0 → 24.5.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,17 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 24.5.1 - 2025-03-18
4
+ ### Fixed
5
+ * Bugfix for `--userTimingBlockList` [#2272](https://github.com/sitespeedio/browsertime/pull/2272).
6
+
7
+ ## 24.5.0 - 2025-03-13
8
+ ### Added
9
+ * Updated to Geckodriver 0.36.0 [#2270](https://github.com/sitespeedio/browsertime/pull/2270).
10
+
11
+ ### Fixed
12
+ * Fix running tests on Safari on iOS that has been broken by some refactoring [#2271](https://github.com/sitespeedio/browsertime/pull/2271).
13
+
14
+
3
15
  ## 24.4.0 - 2025-03-11
4
16
  ### Added
5
17
  * Edgedriver 134 [#2269](https://github.com/sitespeedio/browsertime/pull/2269).
@@ -661,7 +661,7 @@ export class Measure {
661
661
  filterBlocklisted(
662
662
  this.result[this.numberOfMeasuredPages].browserScripts.timings
663
663
  .userTimings,
664
- this.options.userTimingAllowList
664
+ this.options.userTimingBlockList
665
665
  );
666
666
  }
667
667
 
@@ -283,7 +283,6 @@ export class Engine {
283
283
  );
284
284
 
285
285
  await storageManager.createDataDir();
286
- await engineDelegate.beforeBrowserStart(name, options);
287
286
  const collector = new Collector(name, storageManager, options);
288
287
 
289
288
  if (isAndroidConfigured(options)) {
@@ -93,9 +93,7 @@ export class Safari {
93
93
  }
94
94
 
95
95
  if (this.safariOptions.ios) {
96
- await this.driverProcess.kill('SIGINT', {
97
- forceKillAfterTimeout: 5000
98
- });
96
+ await this.driverProcess.kill('SIGINT');
99
97
  }
100
98
  }
101
99
 
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": "24.4.0",
4
+ "version": "24.5.1",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",
@@ -9,7 +9,7 @@
9
9
  "@devicefarmer/adbkit": "3.3.8",
10
10
  "@sitespeed.io/chromedriver": "134.0.6998-35",
11
11
  "@sitespeed.io/edgedriver": "134.0.3124-51",
12
- "@sitespeed.io/geckodriver": "0.35.0-1",
12
+ "@sitespeed.io/geckodriver": "0.36.0",
13
13
  "@sitespeed.io/log": "0.2.6",
14
14
  "@sitespeed.io/throttle": "5.0.1",
15
15
  "@sitespeed.io/tracium": "0.3.3",