sitespeed.io 38.0.0 → 38.1.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,6 +1,13 @@
1
1
 
2
2
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
3
3
 
4
+ ## 38.1.0 - 2025-07-28
5
+ ### Added
6
+ * Firefox 141 in the Docker container [#4538](https://github.com/sitespeedio/sitespeed.io/pull/4538).
7
+
8
+ ### Fixed
9
+ * Bumped form-data dependency for security warnings [#4539](https://github.com/sitespeedio/sitespeed.io/pull/4539).
10
+
4
11
  ## 38.0.0 - 2025-06-30
5
12
  ### Breaking
6
13
  * Support only NodeJS 20 or later for sitespeed.io [#4532](https://github.com/sitespeedio/sitespeed.io/pull/4532).
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM sitespeedio/webbrowsers:chrome-138.0-firefox-140.0-edge-138.0
1
+ FROM sitespeedio/webbrowsers:chrome-138.0-firefox-141.0-edge-138.0
2
2
 
3
3
  ARG TARGETPLATFORM=linux/amd64
4
4
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "38.0.0",
3
+ "version": "38.1.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "38.0.0",
9
+ "version": "38.1.0",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
@@ -3248,14 +3248,15 @@
3248
3248
  }
3249
3249
  },
3250
3250
  "node_modules/axios/node_modules/form-data": {
3251
- "version": "4.0.2",
3252
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz",
3253
- "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==",
3251
+ "version": "4.0.4",
3252
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
3253
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
3254
3254
  "license": "MIT",
3255
3255
  "dependencies": {
3256
3256
  "asynckit": "^0.4.0",
3257
3257
  "combined-stream": "^1.0.8",
3258
3258
  "es-set-tostringtag": "^2.1.0",
3259
+ "hasown": "^2.0.2",
3259
3260
  "mime-types": "^2.1.12"
3260
3261
  },
3261
3262
  "engines": {
@@ -5180,13 +5181,16 @@
5180
5181
  }
5181
5182
  },
5182
5183
  "node_modules/form-data": {
5183
- "version": "2.5.2",
5184
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.2.tgz",
5185
- "integrity": "sha512-GgwY0PS7DbXqajuGf4OYlsrIu3zgxD6Vvql43IBhm6MahqA5SK/7mwhtNj2AdH2z35YR34ujJ7BN+3fFC3jP5Q==",
5184
+ "version": "2.5.5",
5185
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.5.tgz",
5186
+ "integrity": "sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A==",
5187
+ "license": "MIT",
5186
5188
  "dependencies": {
5187
5189
  "asynckit": "^0.4.0",
5188
- "combined-stream": "^1.0.6",
5189
- "mime-types": "^2.1.12",
5190
+ "combined-stream": "^1.0.8",
5191
+ "es-set-tostringtag": "^2.1.0",
5192
+ "hasown": "^2.0.2",
5193
+ "mime-types": "^2.1.35",
5190
5194
  "safe-buffer": "^5.2.1"
5191
5195
  },
5192
5196
  "engines": {
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": "38.0.0",
8
+ "version": "38.1.0",
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",
@@ -106,6 +106,8 @@
106
106
  },
107
107
  "overrides": {
108
108
  "minimist": "^1.2.6",
109
- "whatwg-url": "^14.0.0"
109
+ "whatwg-url": "^14.0.0",
110
+ "form-data@2.5.2": "2.5.5",
111
+ "form-data@4.0.2": "4.0.4"
110
112
  }
111
113
  }