browsertime 21.6.0 → 21.6.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
+ ## 21.6.1 - 2024-03-22
4
+ ### Fixed
5
+ * Fix runnimg Safari TP. Thank you [KS](https://github.com/92kns) for PR [#2115](https://github.com/sitespeedio/browsertime/pull/2115).
6
+
3
7
  ## 21.6.0 - 2024-03-20
4
8
  ### Added
5
9
  * Chrome 123, Firefox 124 and Edge 122 in the Docker container [#2110](https://github.com/sitespeedio/browsertime/pull/2110).
@@ -44,6 +44,7 @@ export async function configureBuilder(builder, baseDir, options) {
44
44
  if (safariOptions.useTechnologyPreview) {
45
45
  let o = new Options();
46
46
  o = o.setTechnologyPreview(true);
47
+ o.setBrowserName('Safari Technology Preview');
47
48
  builder.setSafariOptions(o);
48
49
  }
49
50
  }
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": "21.6.0",
4
+ "version": "21.6.1",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",