browsertime 14.18.1 → 14.19.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 +8 -0
- package/lib/core/engine/index.js +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 14.19.0 - 2022-02-02
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
* Chrome and Chromedriver 98 [#1704](https://github.com/sitespeedio/browsertime/pull/1704).
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
* Fix so we get the Firefox version on Android [#1704](https://github.com/sitespeedio/browsertime/pull/1704).
|
|
10
|
+
|
|
3
11
|
## 14.18.1 - 2022-01-24
|
|
4
12
|
### Fixed
|
|
5
13
|
* If loading a URL failed and we retry and we logged that as an info message, but you as a user only need to know if it fails after X retries. The log message now logs at debug level [#1701](https://github.com/sitespeedio/browsertime/pull/1701).
|
package/lib/core/engine/index.js
CHANGED
|
@@ -345,7 +345,19 @@ class Engine {
|
|
|
345
345
|
// Just swallow
|
|
346
346
|
}
|
|
347
347
|
}
|
|
348
|
+
} // We don't have a HAR for Firefox on Android
|
|
349
|
+
else if (options.browser === 'firefox' && options.android) {
|
|
350
|
+
for (let result of totalResult) {
|
|
351
|
+
result.info.browser.name = 'Firefox';
|
|
352
|
+
try {
|
|
353
|
+
const vString = result.info.browser.userAgent.split('Firefox/')[1];
|
|
354
|
+
result.info.browser.version = vString;
|
|
355
|
+
} catch (e) {
|
|
356
|
+
// Just swallow
|
|
357
|
+
}
|
|
358
|
+
}
|
|
348
359
|
}
|
|
360
|
+
|
|
349
361
|
util.logResultLogLine(totalResult);
|
|
350
362
|
|
|
351
363
|
if (failures.length > 0) {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"description": "Browsertime",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.19.0",
|
|
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": "
|
|
9
|
+
"@sitespeed.io/chromedriver": "98.0.4758-48",
|
|
10
10
|
"chrome-har": "0.12.0",
|
|
11
11
|
"chrome-remote-interface": "0.31.0",
|
|
12
12
|
"dayjs": "1.10.7",
|