sitespeed.io 37.2.0 → 37.3.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,6 +1,15 @@
1
1
 
2
2
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
3
3
 
4
+ # 37.3.1 - 2025-03-20
5
+ ### Fixed
6
+ * Updated to [Browsertime 24.5.1](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#2451---2025-03-18) with a fix for using `--browsertime.userTimingBlockList`.
7
+ * Safer check for InfluxDB [#4487](https://github.com/sitespeedio/sitespeed.io/pull/4487) that fixes [#4485](https://github.com/sitespeedio/sitespeed.io/issues/4485).
8
+
9
+ # 37.3.0 - 2025-03-13
10
+ ### Added
11
+ * Updated to [Browsertime 24.5.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#2450---2025-03-13) that updates to Geckodriver 0.36.0 (for Firefox) and fixes a bug for running test on Safari on iOS (reported in [#4479](https://github.com/sitespeedio/sitespeed.io/issues/4479)) fixed in [#4480](https://github.com/sitespeedio/sitespeed.io/pull/4480).
12
+
4
13
  # 37.2.0 - 2025-03-12
5
14
  ### Added
6
15
  * Updated to [Browsertime 24.4.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#2440---2025-03-11) [#4478](https://github.com/sitespeedio/sitespeed.io/pull/4478).
@@ -18,7 +18,7 @@ export function getAnnotationMessage(
18
18
 
19
19
  const screenshotsEnabledForDatasource =
20
20
  options.graphite.annotationScreenshot ||
21
- options.influxdb.annotationScreenshot ||
21
+ (options.influxdb && options.influxdb.annotationScreenshot) ||
22
22
  options.grafana.annotationScreenshot;
23
23
  const harPath =
24
24
  absolutePagePath +
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "37.2.0",
3
+ "version": "37.3.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "37.2.0",
9
+ "version": "37.3.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
@@ -17,7 +17,7 @@
17
17
  "@slack/webhook": "7.0.4",
18
18
  "@tgwf/co2": "0.16.4",
19
19
  "axe-core": "4.10.2",
20
- "browsertime": "24.4.0",
20
+ "browsertime": "24.5.1",
21
21
  "coach-core": "8.1.1",
22
22
  "dayjs": "1.11.11",
23
23
  "fast-crc32c": "2.0.0",
@@ -1809,9 +1809,9 @@
1809
1809
  }
1810
1810
  },
1811
1811
  "node_modules/@sitespeed.io/geckodriver": {
1812
- "version": "0.35.0-1",
1813
- "resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.35.0-1.tgz",
1814
- "integrity": "sha512-xBgcm75G3CPQScgAgq00BbMx3kMBgyvXy2UoK4/KwnSHgSE27mIyjRvS4vefbpEY40vTHC94sIQbF9s8De5KOQ==",
1812
+ "version": "0.36.0",
1813
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.36.0.tgz",
1814
+ "integrity": "sha512-MAPh+kjBxPK1amSSudNeh/eTOE5Zt3tVDyCwkFepNYxfEs9MPe2BRHiDKcgG8SBG8ahvGthX5kyyfitu3SOUfw==",
1815
1815
  "hasInstallScript": true,
1816
1816
  "dependencies": {
1817
1817
  "node-downloader-helper": "2.1.5",
@@ -3231,14 +3231,14 @@
3231
3231
  }
3232
3232
  },
3233
3233
  "node_modules/browsertime": {
3234
- "version": "24.4.0",
3235
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-24.4.0.tgz",
3236
- "integrity": "sha512-/iioWi7QNtR5AQVO6quwu52V4RAgK7v8yNoylQFYWmUoRgf3VYjAKGCtZnwdJy4EXEHeHjpYorZL0t49H0hQsg==",
3234
+ "version": "24.5.1",
3235
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-24.5.1.tgz",
3236
+ "integrity": "sha512-E72fu91nEmY3o3BWZlcIALK2XZ20ObqTHxbqz+l63xvXRPAJL1xfZt8UxcAsxVR+tfqceyYo4Nzru19biodJjA==",
3237
3237
  "dependencies": {
3238
3238
  "@devicefarmer/adbkit": "3.3.8",
3239
3239
  "@sitespeed.io/chromedriver": "134.0.6998-35",
3240
3240
  "@sitespeed.io/edgedriver": "134.0.3124-51",
3241
- "@sitespeed.io/geckodriver": "0.35.0-1",
3241
+ "@sitespeed.io/geckodriver": "0.36.0",
3242
3242
  "@sitespeed.io/log": "0.2.6",
3243
3243
  "@sitespeed.io/throttle": "5.0.1",
3244
3244
  "@sitespeed.io/tracium": "0.3.3",
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": "37.2.0",
8
+ "version": "37.3.1",
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",
@@ -88,7 +88,7 @@
88
88
  "@tgwf/co2": "0.16.4",
89
89
  "@slack/webhook": "7.0.4",
90
90
  "axe-core": "4.10.2",
91
- "browsertime": "24.4.0",
91
+ "browsertime": "24.5.1",
92
92
  "coach-core": "8.1.1",
93
93
  "dayjs": "1.11.11",
94
94
  "fast-crc32c": "2.0.0",