sitespeed.io 25.7.0 → 25.7.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,10 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 25.7.1 -2022-08-10
4
+ ### Fixed
5
+ * The +1 container now uses PSI plugin version 4.1.0 (before 4.0.1).
6
+ * Updated to [Browsertime 16.13.1](https://github.com/sitespeedio/browsertime/releases/tag/v16.13.1) that always get the id from the Android phone when you run android tests.
7
+ * The latest storer plugin sometimes missed writing Android data to the JSON. Fixed in [#3707](https://github.com/sitespeedio/sitespeed.io/pull/3707).
3
8
  ## 25.7.0 -2022-08-08
4
9
  ### Added
5
10
  * Updated the Docker container to use Chrome 104 and Edge 104.
@@ -26,7 +26,9 @@ module.exports = {
26
26
  }
27
27
 
28
28
  case 'browsertime.browser': {
29
- this.browserData = message.data;
29
+ if (!this.browserData) {
30
+ this.browserData = message.data;
31
+ }
30
32
  break;
31
33
  }
32
34
 
@@ -141,6 +143,7 @@ module.exports = {
141
143
  json.android = {};
142
144
  json.android.model = message.data.android.model;
143
145
  json.android.androidVersion = message.data.android.androidVersion;
146
+ json.android.id = message.data.android.id;
144
147
  }
145
148
 
146
149
  json.browser = {};
@@ -170,14 +173,14 @@ module.exports = {
170
173
  json.friendlyHTML += ' using a replay proxy';
171
174
  }
172
175
 
173
- if (!options.mobile && !options.ios && !browserData.android) {
176
+ if (!options.mobile && !options.ios && !options.android) {
174
177
  json.friendlyHTML += ' with viewport ' + options.viewPort;
175
178
  }
176
179
 
177
- if (browserData.android) {
178
- json.friendlyHTML += ` on ${browserData.android.model} Android version ${browserData.android.androidVersion} [${browserData.android.id}].`;
179
- } else if (message.data.ios) {
180
- json.friendlyHTML += ` ${message.data.ios.deviceName} [${message.data.ios.deviceUDID}].`;
180
+ if (json.android) {
181
+ json.friendlyHTML += ` on ${json.android.model} Android version ${json.android.androidVersion} [${json.android.id}].`;
182
+ } else if (json.ios) {
183
+ json.friendlyHTML += ` ${json.ios.deviceName} [${json.ios.deviceUDID}].`;
181
184
  } else {
182
185
  // We are testing on desktop
183
186
  let osInfo = osName();
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "25.7.0",
3
+ "version": "25.7.1",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "25.7.0",
9
+ "version": "25.7.1",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@google-cloud/storage": "5.19.3",
13
13
  "@tgwf/co2": "0.8.0",
14
14
  "aws-sdk": "2.1121.0",
15
15
  "axe-core": "4.4.2",
16
- "browsertime": "16.13.0",
16
+ "browsertime": "16.13.1",
17
17
  "cli-color": "2.0.2",
18
18
  "coach-core": "7.1.2",
19
19
  "concurrent-queue": "7.0.2",
@@ -1684,9 +1684,9 @@
1684
1684
  }
1685
1685
  },
1686
1686
  "node_modules/browsertime": {
1687
- "version": "16.13.0",
1688
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.13.0.tgz",
1689
- "integrity": "sha512-lRYSNPH4bx5wD0uyC04G/svLCHsD5i6Khl6S31dtCni4Qsl0EqZJtWyp0mS/qpuV2wS3qwvwonZkux7N5gvoZg==",
1687
+ "version": "16.13.1",
1688
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.13.1.tgz",
1689
+ "integrity": "sha512-A+qM91Ys+OjI/BKouGAhcgXu3ZTSVk5O4PD7iqzN5TvfDq30/ufFFMUhm/m0f4GNV3tkA7BxYgSd1SzNpQ1DPg==",
1690
1690
  "dependencies": {
1691
1691
  "@cypress/xvfb": "1.2.4",
1692
1692
  "@devicefarmer/adbkit": "2.11.3",
@@ -9836,9 +9836,9 @@
9836
9836
  }
9837
9837
  },
9838
9838
  "browsertime": {
9839
- "version": "16.13.0",
9840
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.13.0.tgz",
9841
- "integrity": "sha512-lRYSNPH4bx5wD0uyC04G/svLCHsD5i6Khl6S31dtCni4Qsl0EqZJtWyp0mS/qpuV2wS3qwvwonZkux7N5gvoZg==",
9839
+ "version": "16.13.1",
9840
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.13.1.tgz",
9841
+ "integrity": "sha512-A+qM91Ys+OjI/BKouGAhcgXu3ZTSVk5O4PD7iqzN5TvfDq30/ufFFMUhm/m0f4GNV3tkA7BxYgSd1SzNpQ1DPg==",
9842
9842
  "requires": {
9843
9843
  "@cypress/xvfb": "1.2.4",
9844
9844
  "@devicefarmer/adbkit": "2.11.3",
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "sitespeed.io": "./bin/sitespeed.js",
5
5
  "sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
6
6
  },
7
- "version": "25.7.0",
7
+ "version": "25.7.1",
8
8
  "description": "Analyze the web performance of your site",
9
9
  "keywords": [
10
10
  "performance",
@@ -80,7 +80,7 @@
80
80
  "@tgwf/co2": "0.8.0",
81
81
  "aws-sdk": "2.1121.0",
82
82
  "axe-core": "4.4.2",
83
- "browsertime": "16.13.0",
83
+ "browsertime": "16.13.1",
84
84
  "coach-core": "7.1.2",
85
85
  "cli-color": "2.0.2",
86
86
  "concurrent-queue": "7.0.2",