browsertime 14.2.1 → 14.3.0

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
+ ## 14.3.0 - 2021-09-16
4
+ ### Added
5
+ * Update to Edgedriver 93. Update to Edge 93 in the Docker container [#1641](https://github.com/sitespeedio/browsertime/pull/1641).
6
+ * Updated to a new fresh WebPageReplay version in the Docker container [#1635](https://github.com/sitespeedio/browsertime/pull/1635)
7
+
8
+ ### Fixed
9
+ * Enabling verbose logging (-vv and higher) with Chrome, broke tests. Fixed in [#1640](https://github.com/sitespeedio/browsertime/pull/1640).
10
+
3
11
  ## 14.2.1 - 2021-09-06
4
12
 
5
13
  ### Fixed
package/lib/.DS_Store CHANGED
Binary file
Binary file
@@ -166,7 +166,7 @@ class Chromium {
166
166
  }
167
167
 
168
168
  if (this.options.verbose >= 2 || this.chrome.enableChromeDriverLog) {
169
- return this.storageManager.gzip(
169
+ await this.storageManager.gzip(
170
170
  `${this.baseDir}/chromedriver.log`,
171
171
  `${this.baseDir}/chromedriver-${index}.log.gz`,
172
172
  true
Binary file
Binary file
Binary file
Binary file
@@ -6,7 +6,7 @@ const fs = require('fs');
6
6
  const unlink = util.promisify(fs.unlink);
7
7
  const convert = require('./convertToMp4');
8
8
  const moduleRootPath = path.resolve(__dirname, '..', '..', '..', '..');
9
- const QVH = path.resolve(moduleRootPath, 'vendor', 'mac', 'qvh');
9
+ const QVH = path.resolve(moduleRootPath, 'vendor', 'mac', 'x86', 'qvh');
10
10
  const delay = ms => new Promise(res => setTimeout(res, ms));
11
11
 
12
12
  module.exports = class IOSRecorder {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "description": "Browsertime",
3
- "version": "14.2.1",
3
+ "version": "14.3.0",
4
4
  "bin": "./bin/browsertime.js",
5
5
  "dependencies": {
6
6
  "@sitespeed.io/throttle": "3.0.0",
@@ -23,7 +23,7 @@
23
23
  "lodash.pick": "4.4.0",
24
24
  "lodash.set": "4.3.2",
25
25
  "selenium-webdriver": "4.0.0-rc-1",
26
- "@sitespeed.io/edgedriver": "92.0.902-62",
26
+ "@sitespeed.io/edgedriver": "93.0.910-5",
27
27
  "@sitespeed.io/geckodriver": "0.29.1-2",
28
28
  "@sitespeed.io/tracium": "0.3.3",
29
29
  "speedline-core": "1.4.3",
package/vendor/.DS_Store CHANGED
Binary file
Binary file
Binary file
File without changes