browsertime 24.5.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,9 @@
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
+
3
7
  ## 24.5.0 - 2025-03-13
4
8
  ### Added
5
9
  * Updated to Geckodriver 0.36.0 [#2270](https://github.com/sitespeedio/browsertime/pull/2270).
@@ -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
 
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.5.0",
4
+ "version": "24.5.1",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",