sitespeed.io 34.3.4 → 34.3.5

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
+ ## 34.3.5 - 2024-07-02
4
+ ### Fixed
5
+ * The fix for CLS and LCP in 34.3.4 faulty set those to false by default, changing the default behaviour. Fixed in [#4205](https://github.com/sitespeedio/sitespeed.io/pull/4205)
6
+
3
7
  ## 34.3.4 - 2024-06-25
4
8
  ### Fixed
5
9
  * Expose command line parameters to disable CLS and LCP screenshots [#4201](https://github.com/sitespeedio/sitespeed.io/pull/4201).
package/lib/cli/cli.js CHANGED
@@ -1469,7 +1469,7 @@ export async function parseCommandLine() {
1469
1469
  .option('browsertime.screenshotLCP', {
1470
1470
  alias: 'screenshotLCP',
1471
1471
  type: 'boolean',
1472
- default: false,
1472
+ default: true,
1473
1473
  describe:
1474
1474
  'Save one screenshot per iteration that shows the largest contentful paint element (if the browser supports LCP).',
1475
1475
  group: 'Screenshot'
@@ -1477,7 +1477,7 @@ export async function parseCommandLine() {
1477
1477
  .option('browsertime.screenshotLS', {
1478
1478
  alias: 'screenshotLS',
1479
1479
  type: 'boolean',
1480
- default: false,
1480
+ default: true,
1481
1481
  describe:
1482
1482
  'Save one screenshot per iteration that shows the layout shift elements (if the browser supports layout shift).',
1483
1483
  group: 'Screenshot'
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "34.3.4",
3
+ "version": "34.3.5",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "34.3.4",
9
+ "version": "34.3.5",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-s3": "3.564.0",
@@ -15,7 +15,7 @@
15
15
  "@sitespeed.io/plugin": "0.0.6",
16
16
  "@tgwf/co2": "0.14.4",
17
17
  "axe-core": "4.9.1",
18
- "browsertime": "22.5.2",
18
+ "browsertime": "22.5.3",
19
19
  "cli-color": "2.0.4",
20
20
  "coach-core": "8.0.2",
21
21
  "concurrent-queue": "7.0.2",
@@ -3536,9 +3536,9 @@
3536
3536
  }
3537
3537
  },
3538
3538
  "node_modules/browsertime": {
3539
- "version": "22.5.2",
3540
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-22.5.2.tgz",
3541
- "integrity": "sha512-5t5nzLX60FCGOsi5HfNaxe1IbgUoONXyPMUIlG6B1MJJO7s63IQfQUxKz/1dvX+WaYT9JhDvTCC/10QZo9vxsg==",
3539
+ "version": "22.5.3",
3540
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-22.5.3.tgz",
3541
+ "integrity": "sha512-OzrEzc+YWBpvbvMv8ICyEesFwXcVPxTUY0GhoYVPBCNsXI2+9264/drAgCwEp6htXXye9MDybJ5iSu/2CW7y4A==",
3542
3542
  "dependencies": {
3543
3543
  "@cypress/xvfb": "1.2.4",
3544
3544
  "@devicefarmer/adbkit": "3.2.6",
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "sitespeed.io": "./bin/sitespeed.js",
6
6
  "sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
7
7
  },
8
- "version": "34.3.4",
8
+ "version": "34.3.5",
9
9
  "description": "sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.",
10
10
  "keywords": [
11
11
  "performance",
@@ -85,7 +85,7 @@
85
85
  "@tgwf/co2": "0.14.4",
86
86
  "@aws-sdk/client-s3": "3.564.0",
87
87
  "axe-core": "4.9.1",
88
- "browsertime": "22.5.2",
88
+ "browsertime": "22.5.3",
89
89
  "coach-core": "8.0.2",
90
90
  "cli-color": "2.0.4",
91
91
  "concurrent-queue": "7.0.2",