browsertime 17.5.0-beta1 → 17.5.0-beta2

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
+ ## 17.5.0 - UNRELEASED
4
+
5
+ ### Added
6
+ * There's a new better way to get the HAR from [Firefox using WebDriver BiDi network events](https://github.com/firefox-devtools/bidi-har-export). Thank you [Julian Descottes](https://github.com/juliandescottes) and others at Mozilla that made this happen! With the new version we hope to see less overhead getting the HAR + it works on Firefox on Android [#1918](https://github.com/sitespeedio/browsertime/pull/1918).
7
+ ### Fixed
8
+ * Fixed the interaction to next paint error message that started to appear in latest Chrome [#1924](https://github.com/sitespeedio/browsertime/pull/1924).
9
+
3
10
  ## 17.4.0 - 2022-03-29
4
11
  ### Added
5
12
  * Log the CPU benchmark metric to the console. This is useful (at least for me) when debugging instances with a lot of instability. [#1920](https://github.com/sitespeedio/browsertime/pull/1920).
@@ -95,7 +95,7 @@
95
95
  const interaction = {
96
96
  id: entry.interactionId,
97
97
  latency: entry.duration,
98
- entries: [entry]
98
+ name: entry.name
99
99
  };
100
100
  longestInteractionMap[interaction.id] = interaction;
101
101
  longestInteractionList.push(interaction);
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.5.0-beta1",
4
+ "version": "17.5.0-beta2",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "dependencies": {