sitespeed.io 25.8.2 → 25.8.3
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
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 25.8.3 - 2022-08-28
|
|
4
|
+
### Fixed
|
|
5
|
+
* Ooops, it turns out 25.8.2 didn't fix the preWarm issue, it's fixed in [3715](
|
|
6
|
+
https://github.com/sitespeedio/sitespeed.io/pull/3715).
|
|
3
7
|
## 25.8.2 - 2022-08-26
|
|
4
8
|
### Fixed
|
|
5
9
|
* Updated Browsertime to 16.14.2 that fixes `--browsertime.preWarmServer` on Android and iOS.
|
|
@@ -36,19 +36,22 @@ async function preWarmServer(urls, options, scriptOrMultiple) {
|
|
|
36
36
|
const safariDeviceName = get(options, 'safari.deviceName');
|
|
37
37
|
const safariDeviceUDID = get(options, 'safari.deviceUDID ');
|
|
38
38
|
|
|
39
|
+
if (options.android && options.browser === 'chrome') {
|
|
40
|
+
set(preWarmOptions, 'chrome.android.package', 'com.android.chrome');
|
|
41
|
+
}
|
|
39
42
|
if (chromeDevice) {
|
|
40
|
-
set(
|
|
43
|
+
set(preWarmOptions, 'chrome.android.deviceSerial', chromeDevice);
|
|
41
44
|
} else if (firefoxDevice) {
|
|
42
|
-
set(
|
|
45
|
+
set(preWarmOptions, 'firefox.android.deviceSerial', firefoxDevice);
|
|
43
46
|
}
|
|
44
47
|
|
|
45
48
|
if (safariIos) {
|
|
46
|
-
set(
|
|
49
|
+
set(preWarmOptions, 'safari.ios', true);
|
|
47
50
|
if (safariDeviceName) {
|
|
48
|
-
set(
|
|
51
|
+
set(preWarmOptions, 'safari.deviceName', safariDeviceName);
|
|
49
52
|
}
|
|
50
53
|
if (safariDeviceUDID) {
|
|
51
|
-
set(
|
|
54
|
+
set(preWarmOptions, 'safari.deviceUDID', safariDeviceUDID);
|
|
52
55
|
}
|
|
53
56
|
}
|
|
54
57
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "25.8.
|
|
3
|
+
"version": "25.8.3",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "25.8.
|
|
9
|
+
"version": "25.8.3",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "5.19.3",
|
package/package.json
CHANGED