browsertime 24.5.0 → 24.5.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,5 +1,13 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 24.5.2 - 2025-03-20
4
+ ### Fixed
5
+ * Bugfix for the missing FCP delta with TTFB [#2273](https://github.com/sitespeedio/browsertime/pull/2273).
6
+
7
+ ## 24.5.1 - 2025-03-18
8
+ ### Fixed
9
+ * Bugfix for `--userTimingBlockList` [#2272](https://github.com/sitespeedio/browsertime/pull/2272).
10
+
3
11
  ## 24.5.0 - 2025-03-13
4
12
  ### Added
5
13
  * Updated to Geckodriver 0.36.0 [#2270](https://github.com/sitespeedio/browsertime/pull/2270).
@@ -458,7 +458,7 @@ export class Collector {
458
458
  const deltaToTTFB = {};
459
459
  const fcp = getProperty(
460
460
  data,
461
- "browserScripts.timings.paintTiming['first-contentful-paint']"
461
+ 'browserScripts.timings.paintTiming.first-contentful-paint'
462
462
  );
463
463
  const ttfb = getProperty(data, 'browserScripts.timings.ttfb');
464
464
  const lcp = getProperty(
@@ -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.2",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",