browsertime 14.10.1 → 14.10.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,8 +1,14 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+
4
+ ## 14.10.2 - 2021-11-20
5
+ ### Fixed
6
+ * Disabled the version check for Edge/Edgedriver in Edgedriver [#1678](https://github.com/sitespeedio/browsertime/pull/1678).
7
+
3
8
  ## 14.10.1 - 2021-11-19
4
9
  ### Fixed
5
10
  * Disabled the automatic Chrome/Chromedriver version check in Chromedriver [#1676](https://github.com/sitespeedio/browsertime/pull/1676).
11
+ * Loop until we find a frame with a good viewport or until we run out of retries for Visual Metrics. Thank you [Gregory Mierzwinski](https://github.com/gmierz) for PR [#1668](https://github.com/sitespeedio/browsertime/pull/1668).
6
12
 
7
13
  ## 14.10.0 - 2021-11-16
8
14
  ### Added
@@ -25,6 +25,10 @@ module.exports.configureBuilder = function (builder, baseDir, options) {
25
25
  }
26
26
 
27
27
  const serviceBuilder = new edge.ServiceBuilder(edgedriverPath);
28
+
29
+ // Remove the check that matches the Edgedriver version with Edge version.
30
+ serviceBuilder.addArguments('--disable-build-check');
31
+
28
32
  if (
29
33
  options.verbose >= 2 ||
30
34
  chromeConfig.enableChromeDriverLog ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "description": "Browsertime",
3
- "version": "14.10.1",
3
+ "version": "14.10.2",
4
4
  "bin": "./bin/browsertime.js",
5
5
  "dependencies": {
6
6
  "@sitespeed.io/throttle": "3.0.0",