sitespeed.io 24.6.0 → 24.7.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,10 +1,16 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 24.7.0 - 2022-05-11
4
+ ### Added
5
+ Updated to [Browsertime 16.4.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#1640---2022-05-11) fixes a bug for LCP in the video and also output when LCP happens in the video.
6
+
7
+ ### Fixed
8
+ * Make sure we got CLS from Browsertime when we try to render it [#3650](https://github.com/sitespeedio/sitespeed.io/pull/3650).
3
9
  ## 24.6.0 - 2022-05-10
4
10
  ### Added
5
11
  * Updated to [Browsertime 16.3.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#1630---2022-05-07) that collects Largest Contentful Paint from the browser (if the browser suppoorts the LCP API).
6
12
 
7
- * Show total download time per domain [#3648[](https://github.com/sitespeedio/sitespeed.io/pull/3648).
13
+ * Show total download time per domain [#3648](https://github.com/sitespeedio/sitespeed.io/pull/3648).
8
14
  ## 24.5.1 - 2022-05-06
9
15
  ### Fixed
10
16
  * Reverted to Ubuntu 20 in the Docker container. Ubuntu 22 gave Firefox problems on ARM and we also seen other problems with NodeJS in that container.
@@ -142,10 +142,11 @@ if browsertime
142
142
  td
143
143
  a(href='#largestContentfulPaint') Largest Contentful Paint (LCP)
144
144
  td.number #{h.time.ms(Math.max(timings.largestContentfulPaint.loadTime,timings.largestContentfulPaint.renderTime, timings.largestContentfulPaint.loadTime,timings.largestContentfulPaint.loadTime))}
145
- tr
146
- td
147
- a(href='#cumulativeLayoutShift') Cumulative Layout Shift (CLS)
148
- td.number #{browsertime.pageinfo.cumulativeLayoutShift.toFixed(2)}
145
+ if (browsertime.pageinfo && browsertime.pageinfo.cumulativeLayoutShift)
146
+ tr
147
+ td
148
+ a(href='#cumulativeLayoutShift') Cumulative Layout Shift (CLS)
149
+ td.number #{browsertime.pageinfo.cumulativeLayoutShift.toFixed(2)}
149
150
  if browsertime.timings.firstInput !== undefined
150
151
  tr
151
152
  td
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "24.6.0",
3
+ "version": "24.7.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "24.6.0",
9
+ "version": "24.7.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.1",
16
- "browsertime": "16.3.0",
16
+ "browsertime": "16.4.0",
17
17
  "cli-color": "2.0.2",
18
18
  "coach-core": "7.1.2",
19
19
  "concurrent-queue": "7.0.2",
@@ -1681,9 +1681,9 @@
1681
1681
  }
1682
1682
  },
1683
1683
  "node_modules/browsertime": {
1684
- "version": "16.3.0",
1685
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.3.0.tgz",
1686
- "integrity": "sha512-T0zhFU9MR/hrMdSzpXetg8cAZ2WC13AUmofUknGemNbKRjeBfB1lIOBk5TrhoN2E2dPBt18WsR/ThQgEoAXmxA==",
1684
+ "version": "16.4.0",
1685
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.4.0.tgz",
1686
+ "integrity": "sha512-rbkN9KVJZLHICrWV0V9RNw/MBeta+zDGOI0sYJYQC/Usp+JOII1UJJt4qNHp54ixjAP8yxIQOJMTfAyDqnJTBw==",
1687
1687
  "dependencies": {
1688
1688
  "@cypress/xvfb": "1.2.4",
1689
1689
  "@devicefarmer/adbkit": "2.11.3",
@@ -9761,9 +9761,9 @@
9761
9761
  }
9762
9762
  },
9763
9763
  "browsertime": {
9764
- "version": "16.3.0",
9765
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.3.0.tgz",
9766
- "integrity": "sha512-T0zhFU9MR/hrMdSzpXetg8cAZ2WC13AUmofUknGemNbKRjeBfB1lIOBk5TrhoN2E2dPBt18WsR/ThQgEoAXmxA==",
9764
+ "version": "16.4.0",
9765
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-16.4.0.tgz",
9766
+ "integrity": "sha512-rbkN9KVJZLHICrWV0V9RNw/MBeta+zDGOI0sYJYQC/Usp+JOII1UJJt4qNHp54ixjAP8yxIQOJMTfAyDqnJTBw==",
9767
9767
  "requires": {
9768
9768
  "@cypress/xvfb": "1.2.4",
9769
9769
  "@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": "24.6.0",
7
+ "version": "24.7.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.1",
83
- "browsertime": "16.3.0",
83
+ "browsertime": "16.4.0",
84
84
  "coach-core": "7.1.2",
85
85
  "cli-color": "2.0.2",
86
86
  "concurrent-queue": "7.0.2",