sitespeed.io 25.8.3 → 25.9.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,11 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 25.9.0 - 2022-08-30
4
+ ### Added
5
+ * Updated to Browsertime 16.15.0 that include your Android phones connected wifi name in the result. That is now showed in the runtime settings page.
6
+
7
+ * Show relative standard deviation on the compare runs page [#3716](https://github.com/sitespeedio/sitespeed.io/pull/3716).
8
+
3
9
  ## 25.8.3 - 2022-08-28
4
10
  ### Fixed
5
11
  * Ooops, it turns out 25.8.2 didn't fix the preWarm issue, it's fixed in [3715](
@@ -68,6 +68,10 @@ block content
68
68
  tr
69
69
  td Android version
70
70
  td #{android.androidVersion}
71
+ if android.wifi
72
+ tr
73
+ td Wifi
74
+ td #{android.wifi}
71
75
  if android.batteryTemperature
72
76
  tr
73
77
  td Battery temperature
@@ -33,6 +33,7 @@ block content
33
33
  th Median
34
34
  th Mean
35
35
  th stddev
36
+ th rsd
36
37
  each tool in Object.keys(metrics)
37
38
  - let category = ''
38
39
  each metricType in Object.keys(metrics[tool])
@@ -40,7 +41,7 @@ block content
40
41
  - if (noCategory.indexOf(metricType) === -1) {
41
42
  - category = metricType
42
43
  tr
43
- th(colspan=runPages.length + 4) #{categoryNames[metricType] ? categoryNames[metricType] : metricType}
44
+ th(colspan=runPages.length + 5) #{categoryNames[metricType] ? categoryNames[metricType] : metricType}
44
45
  - } else {
45
46
  - category = metricType
46
47
  - }
@@ -60,3 +61,5 @@ block content
60
61
  td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.median', ''))}
61
62
  td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.mean', ''))}
62
63
  td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.stddev', ''))}
64
+ - rsd = get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.rsd', '')
65
+ td #{rsd !== '' ? Number(rsd).toFixed(2) + ' %' : 'N/A'}
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "25.8.3",
3
+ "version": "25.9.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "25.8.3",
9
+ "version": "25.9.0",
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.14.2",
16
+ "browsertime": "16.15.0",
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.14.2",
1688
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.14.2.tgz",
1689
- "integrity": "sha512-l1ozl9Or5nicwSpt+UZidSM0gKIhEUP3W36sTZ1RJ2W72P1jaqpLIG7rXUdA1KdtYa5KHyHQ9XRk0++cHC179Q==",
1687
+ "version": "16.15.0",
1688
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.15.0.tgz",
1689
+ "integrity": "sha512-ETatE7KZySj5Qd+CfRZXF7pSrM5phjTK6M/eepAUyZGXJBkMdbjADk/BkbYKMpK78olfT95nhjXqcLiqZVb0BA==",
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.14.2",
9840
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.14.2.tgz",
9841
- "integrity": "sha512-l1ozl9Or5nicwSpt+UZidSM0gKIhEUP3W36sTZ1RJ2W72P1jaqpLIG7rXUdA1KdtYa5KHyHQ9XRk0++cHC179Q==",
9839
+ "version": "16.15.0",
9840
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.15.0.tgz",
9841
+ "integrity": "sha512-ETatE7KZySj5Qd+CfRZXF7pSrM5phjTK6M/eepAUyZGXJBkMdbjADk/BkbYKMpK78olfT95nhjXqcLiqZVb0BA==",
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.8.3",
7
+ "version": "25.9.0",
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.14.2",
83
+ "browsertime": "16.15.0",
84
84
  "coach-core": "7.1.2",
85
85
  "cli-color": "2.0.2",
86
86
  "concurrent-queue": "7.0.2",