browsertime 14.19.0 → 14.20.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,22 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 14.20.1 - 2022-02-07
4
+ ### Fixed
5
+ * There's a new setup how we build Docker releases and this release uses the new pipeline.
6
+ ## 14.20.0 - 2022-02-07
7
+ ### Added
8
+ * Docker container for both amd64 and arm64.
9
+
10
+ ## 14.19.2 - 2022-02-05
11
+ ### Fixed
12
+ * Upgraded to Geckodriver 0.30.0 [#1710](https://github.com/sitespeedio/browsertime/pull/1710).
13
+ * Upgraded to Chromedriver that always looks for Chromedriver in PATH for arm64.
14
+ * Fixed getting Geckoprofile on Android when you do not specify Android package [#1712](https://github.com/sitespeedio/browsertime/pull/1712).
15
+ ## 14.19.1 - 2022-02-03
16
+ ### Fixed
17
+ * Remove the old fix for setting CPUThrottling, that works now in Chrome without that fix [#1708](https://github.com/sitespeedio/browsertime/pull/1708).
18
+ * Do not set binary for Firefox when run on Android [#1706](https://github.com/sitespeedio/browsertime/pull/1706).
19
+
3
20
  ## 14.19.0 - 2022-02-02
4
21
 
5
22
  ### Added
@@ -25,14 +25,6 @@ module.exports = function (seleniumOptions, browserOptions, options, baseDir) {
25
25
  seleniumOptions.addArguments('--disable-setuid-sandbox');
26
26
  }
27
27
 
28
- // Running CPU throttling in Chrome desktop is broken. It works in
29
- // headless mode
30
- if (browserOptions.CPUThrottlingRate) {
31
- seleniumOptions.addArguments(
32
- '--disable-features=IsolateOrigins,site-per-process'
33
- );
34
- }
35
-
36
28
  if (options.xvfb && (options.xvfb === true || options.xvfb === 'true')) {
37
29
  seleniumOptions.addArguments('--disable-gpu');
38
30
  }
@@ -3,6 +3,7 @@ const log = require('intel').getLogger('browsertime.firefox');
3
3
  const geckoProfilerDefaults = require('./settings/geckoProfilerDefaults');
4
4
  const { isAndroidConfigured, Android } = require('../android');
5
5
  const path = require('path');
6
+ const get = require('lodash.get');
6
7
  const pathToFolder = require('../support/pathToFolder');
7
8
  const { BrowserError } = require('../support/errors');
8
9
  const delay = ms => new Promise(res => setTimeout(res, ms));
@@ -103,7 +104,11 @@ class GeckoProfiler {
103
104
 
104
105
  let deviceProfileFilename = destinationFilename;
105
106
  if (isAndroidConfigured(options)) {
106
- deviceProfileFilename = `/sdcard/Android/data/${this.firefoxConfig.android.package}/files/geckoProfile-${index}.json`;
107
+ deviceProfileFilename = `/sdcard/Android/data/${get(
108
+ this.firefoxConfig,
109
+ 'android.package',
110
+ 'org.mozilla.firefox'
111
+ )}/files/geckoProfile-${index}.json`;
107
112
  }
108
113
 
109
114
  // Must use String.raw or else the backslashes on Windows will be escapes.
@@ -172,9 +172,14 @@ module.exports.configureBuilder = function (builder, baseDir, options) {
172
172
  return n !== undefined;
173
173
  });
174
174
 
175
- ffOptions.setBinary(
176
- firefoxTypes.length > 0 ? firefoxTypes[0] : firefox.Channel.RELEASE
177
- );
175
+ // Do not set binary when using Android
176
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=1751196
177
+
178
+ if (!options.android) {
179
+ ffOptions.setBinary(
180
+ firefoxTypes.length > 0 ? firefoxTypes[0] : firefox.Channel.RELEASE
181
+ );
182
+ }
178
183
 
179
184
  ffOptions.addArguments('-no-remote');
180
185
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "description": "Browsertime",
3
- "version": "14.19.0",
3
+ "version": "14.20.1",
4
4
  "bin": "./bin/browsertime.js",
5
5
  "dependencies": {
6
6
  "@sitespeed.io/throttle": "3.0.0",
7
7
  "@devicefarmer/adbkit": "2.11.3",
8
8
  "btoa": "1.2.1",
9
- "@sitespeed.io/chromedriver": "98.0.4758-48",
9
+ "@sitespeed.io/chromedriver": "98.0.4758-48b",
10
10
  "chrome-har": "0.12.0",
11
11
  "chrome-remote-interface": "0.31.0",
12
12
  "dayjs": "1.10.7",
@@ -24,7 +24,7 @@
24
24
  "lodash.set": "4.3.2",
25
25
  "selenium-webdriver": "4.1.0",
26
26
  "@sitespeed.io/edgedriver": "95.0.1020-30",
27
- "@sitespeed.io/geckodriver": "0.29.1-3",
27
+ "@sitespeed.io/geckodriver": "0.30.0",
28
28
  "@sitespeed.io/tracium": "0.3.3",
29
29
  "speedline-core": "1.4.3",
30
30
  "@cypress/xvfb": "1.2.4",