sitespeed.io 35.2.0 → 35.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/.github/workflows/building-docker-release.yml +10 -3
- package/CHANGELOG.md +10 -0
- package/CODE_OF_CONDUCT.md +7 -0
- package/Dockerfile +1 -1
- package/lib/plugins/compare/helper.js +3 -1
- package/npm-shrinkwrap.json +28 -28
- package/package.json +2 -2
|
@@ -44,7 +44,10 @@ jobs:
|
|
|
44
44
|
platforms: linux/amd64,linux/arm64
|
|
45
45
|
push: true
|
|
46
46
|
provenance: false
|
|
47
|
-
tags:
|
|
47
|
+
tags: |
|
|
48
|
+
sitespeedio/sitespeed.io:${{ steps.extract_version.outputs.SITESPEED_VERSION }}
|
|
49
|
+
sitespeedio/sitespeed.io:${{ steps.extract_version.outputs.SITESPEED_MAJOR_VERSION }}
|
|
50
|
+
sitespeedio/sitespeed.io:latest
|
|
48
51
|
-
|
|
49
52
|
name: Build and push sitespeed.io+1
|
|
50
53
|
uses: docker/build-push-action@v5
|
|
@@ -55,7 +58,9 @@ jobs:
|
|
|
55
58
|
build-args: version=${{ steps.extract_version.outputs.SITESPEED_VERSION }}
|
|
56
59
|
push: true
|
|
57
60
|
provenance: false
|
|
58
|
-
tags:
|
|
61
|
+
tags: |
|
|
62
|
+
sitespeedio/sitespeed.io:${{ steps.extract_version.outputs.SITESPEED_VERSION }}-plus1
|
|
63
|
+
sitespeedio/sitespeed.io:${{ steps.extract_version.outputs.SITESPEED_MAJOR_VERSION }}-plus1
|
|
59
64
|
-
|
|
60
65
|
name: Build and push sitespeed.io-slim
|
|
61
66
|
uses: docker/build-push-action@v5
|
|
@@ -66,4 +71,6 @@ jobs:
|
|
|
66
71
|
build-args: version=${{ steps.extract_version.outputs.SITESPEED_VERSION }}
|
|
67
72
|
push: true
|
|
68
73
|
provenance: false
|
|
69
|
-
tags:
|
|
74
|
+
tags: |
|
|
75
|
+
sitespeedio/sitespeed.io:${{ steps.extract_version.outputs.SITESPEED_VERSION }}-slim
|
|
76
|
+
sitespeedio/sitespeed.io:${{ steps.extract_version.outputs.SITESPEED_MAJOR_VERSION }}-slim
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 35.3.1 - 2024-11-04
|
|
4
|
+
### Fixed
|
|
5
|
+
* Fix compare plugin when you run visual metrics contentful and perceptual metrics [#4308](https://github.com/sitespeedio/sitespeed.io/pull/4308).
|
|
6
|
+
|
|
7
|
+
## 35.3.0 - 2024-10-20
|
|
8
|
+
### Added
|
|
9
|
+
* Update to Chrome 130 in the Docker container [#4299](https://github.com/sitespeedio/sitespeed.io/pull/4299).
|
|
10
|
+
* Updated to Browsertime [23.2.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#2320---2024-10-20) that has a fix for installting Geckodriver on ARM containers [#4303](https://github.com/sitespeedio/sitespeed.io/pull/4303).
|
|
11
|
+
* Updated Chromium from 107 to 130 in the ARM Docker container. This was possible by using the Chromium built by Microsoft (M$) in Playwright [#4304](https://github.com/sitespeedio/sitespeed.io/pull/4304).
|
|
12
|
+
|
|
3
13
|
## 35.2.0 - 2024-10-14
|
|
4
14
|
### Added
|
|
5
15
|
From this release we release a new Docker container with the major version tag! This means that there will be a 35.2.0 and a 35 tag from this release. We follow [semantic versioning](https://semver.org) so you can safely stay and update the major version tag.
|
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -28,6 +28,13 @@ We encourage everyone to participate and are committed to building a community f
|
|
|
28
28
|
Although this list cannot be exhaustive, we explicitly honor diversity in age, gender, gender identity or expression, culture, ethnicity, language, national origin, political beliefs, profession, race, religion, sexual orientation, socioeconomic status, and technical ability. We will not tolerate discrimination based on any of the protected
|
|
29
29
|
characteristics above, including participants with disabilities.
|
|
30
30
|
|
|
31
|
+
### No Unsolicited Advertising or Job Postings
|
|
32
|
+
We strive to maintain a collaborative and focused community. As such, advertising for companies/products or posting job advertisements without prior approval is strictly prohibited.
|
|
33
|
+
|
|
34
|
+
If you engage in unsolicited advertising or recruitment activities, your account will be deleted without warning.
|
|
35
|
+
|
|
36
|
+
If you're unsure whether your content falls under this policy, please reach out to an admin before posting.
|
|
37
|
+
|
|
31
38
|
### Reporting Issues
|
|
32
39
|
|
|
33
40
|
If you experience or witness unacceptable behavior—or have any other concerns—please report it by contacting us via [peter@soulgalore.com)](mailto:peter@soulgalore.com). All reports will be handled with discretion. In your report please include:
|
package/Dockerfile
CHANGED
|
@@ -200,7 +200,9 @@ function getVisualMetrics(data) {
|
|
|
200
200
|
'videoRecordingStart',
|
|
201
201
|
'VisualComplete85',
|
|
202
202
|
'VisualComplete95',
|
|
203
|
-
'VisualComplete99'
|
|
203
|
+
'VisualComplete99',
|
|
204
|
+
'PerceptualSpeedIndexProgress',
|
|
205
|
+
'ContentfulSpeedIndexProgress'
|
|
204
206
|
]);
|
|
205
207
|
|
|
206
208
|
const visualMetrics = {};
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.3.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "35.
|
|
9
|
+
"version": "35.3.1",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "3.609.0",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@sitespeed.io/plugin": "0.0.6",
|
|
16
16
|
"@tgwf/co2": "0.16.0",
|
|
17
17
|
"axe-core": "4.10.0",
|
|
18
|
-
"browsertime": "23.
|
|
18
|
+
"browsertime": "23.2.0",
|
|
19
19
|
"cli-color": "2.0.4",
|
|
20
20
|
"coach-core": "8.0.2",
|
|
21
21
|
"concurrent-queue": "7.0.2",
|
|
@@ -2151,26 +2151,15 @@
|
|
|
2151
2151
|
}
|
|
2152
2152
|
},
|
|
2153
2153
|
"node_modules/@sitespeed.io/chromedriver": {
|
|
2154
|
-
"version": "
|
|
2155
|
-
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-
|
|
2156
|
-
"integrity": "sha512-
|
|
2154
|
+
"version": "130.0.6723-58",
|
|
2155
|
+
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-130.0.6723-58.tgz",
|
|
2156
|
+
"integrity": "sha512-seDm0+DyqjSqZoGy0kMUHCxaV4tdXugwrO9I/2ah8V4saPixjqcUprlN9tJ0iCUwnRNYT/3WITq6Cxsvl/wxwQ==",
|
|
2157
2157
|
"hasInstallScript": true,
|
|
2158
2158
|
"dependencies": {
|
|
2159
2159
|
"node-downloader-helper": "2.1.9",
|
|
2160
2160
|
"node-stream-zip": "1.15.0"
|
|
2161
2161
|
}
|
|
2162
2162
|
},
|
|
2163
|
-
"node_modules/@sitespeed.io/chromedriver/node_modules/node-downloader-helper": {
|
|
2164
|
-
"version": "2.1.9",
|
|
2165
|
-
"resolved": "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-2.1.9.tgz",
|
|
2166
|
-
"integrity": "sha512-FSvAol2Z8UP191sZtsUZwHIN0eGoGue3uEXGdWIH5228e9KH1YHXT7fN8Oa33UGf+FbqGTQg3sJfrRGzmVCaJA==",
|
|
2167
|
-
"bin": {
|
|
2168
|
-
"ndh": "bin/ndh"
|
|
2169
|
-
},
|
|
2170
|
-
"engines": {
|
|
2171
|
-
"node": ">=14.18"
|
|
2172
|
-
}
|
|
2173
|
-
},
|
|
2174
2163
|
"node_modules/@sitespeed.io/edgedriver": {
|
|
2175
2164
|
"version": "126.0.2592-102",
|
|
2176
2165
|
"resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-126.0.2592-102.tgz",
|
|
@@ -2193,9 +2182,9 @@
|
|
|
2193
2182
|
}
|
|
2194
2183
|
},
|
|
2195
2184
|
"node_modules/@sitespeed.io/geckodriver": {
|
|
2196
|
-
"version": "0.35.0",
|
|
2197
|
-
"resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.35.0.tgz",
|
|
2198
|
-
"integrity": "sha512-
|
|
2185
|
+
"version": "0.35.0-1",
|
|
2186
|
+
"resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.35.0-1.tgz",
|
|
2187
|
+
"integrity": "sha512-xBgcm75G3CPQScgAgq00BbMx3kMBgyvXy2UoK4/KwnSHgSE27mIyjRvS4vefbpEY40vTHC94sIQbF9s8De5KOQ==",
|
|
2199
2188
|
"hasInstallScript": true,
|
|
2200
2189
|
"dependencies": {
|
|
2201
2190
|
"node-downloader-helper": "2.1.5",
|
|
@@ -2203,6 +2192,17 @@
|
|
|
2203
2192
|
"tar": "6.1.13"
|
|
2204
2193
|
}
|
|
2205
2194
|
},
|
|
2195
|
+
"node_modules/@sitespeed.io/geckodriver/node_modules/node-downloader-helper": {
|
|
2196
|
+
"version": "2.1.5",
|
|
2197
|
+
"resolved": "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-2.1.5.tgz",
|
|
2198
|
+
"integrity": "sha512-sLedzfv8C4VMAvTdDQcjLFAl3gydNeBXh2bLcCzvZRmd4EK0rkoTxJ8tkxnriUSJO/n13skJzH7l6CzCdBwYGg==",
|
|
2199
|
+
"bin": {
|
|
2200
|
+
"ndh": "bin/ndh"
|
|
2201
|
+
},
|
|
2202
|
+
"engines": {
|
|
2203
|
+
"node": ">=14.18"
|
|
2204
|
+
}
|
|
2205
|
+
},
|
|
2206
2206
|
"node_modules/@sitespeed.io/plugin": {
|
|
2207
2207
|
"version": "0.0.6",
|
|
2208
2208
|
"resolved": "https://registry.npmjs.org/@sitespeed.io/plugin/-/plugin-0.0.6.tgz",
|
|
@@ -3630,15 +3630,15 @@
|
|
|
3630
3630
|
}
|
|
3631
3631
|
},
|
|
3632
3632
|
"node_modules/browsertime": {
|
|
3633
|
-
"version": "23.
|
|
3634
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-23.
|
|
3635
|
-
"integrity": "sha512-
|
|
3633
|
+
"version": "23.2.0",
|
|
3634
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-23.2.0.tgz",
|
|
3635
|
+
"integrity": "sha512-BqxvrDWePm2mWE2sU0cSHRJGVKCSF0lhnFSYpEjgxA/jUNiLF9SSOrHiiefsRMGpQk+muJZ4fZ/RkhX2rC8Rsg==",
|
|
3636
3636
|
"dependencies": {
|
|
3637
3637
|
"@cypress/xvfb": "1.2.4",
|
|
3638
3638
|
"@devicefarmer/adbkit": "3.2.6",
|
|
3639
|
-
"@sitespeed.io/chromedriver": "
|
|
3639
|
+
"@sitespeed.io/chromedriver": "130.0.6723-58",
|
|
3640
3640
|
"@sitespeed.io/edgedriver": "126.0.2592-102",
|
|
3641
|
-
"@sitespeed.io/geckodriver": "0.35.0",
|
|
3641
|
+
"@sitespeed.io/geckodriver": "0.35.0-1",
|
|
3642
3642
|
"@sitespeed.io/throttle": "5.0.1",
|
|
3643
3643
|
"@sitespeed.io/tracium": "0.3.3",
|
|
3644
3644
|
"btoa": "1.2.1",
|
|
@@ -8286,9 +8286,9 @@
|
|
|
8286
8286
|
"optional": true
|
|
8287
8287
|
},
|
|
8288
8288
|
"node_modules/node-downloader-helper": {
|
|
8289
|
-
"version": "2.1.
|
|
8290
|
-
"resolved": "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-2.1.
|
|
8291
|
-
"integrity": "sha512-
|
|
8289
|
+
"version": "2.1.9",
|
|
8290
|
+
"resolved": "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-2.1.9.tgz",
|
|
8291
|
+
"integrity": "sha512-FSvAol2Z8UP191sZtsUZwHIN0eGoGue3uEXGdWIH5228e9KH1YHXT7fN8Oa33UGf+FbqGTQg3sJfrRGzmVCaJA==",
|
|
8292
8292
|
"bin": {
|
|
8293
8293
|
"ndh": "bin/ndh"
|
|
8294
8294
|
},
|
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": "35.
|
|
8
|
+
"version": "35.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",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@tgwf/co2": "0.16.0",
|
|
86
86
|
"@aws-sdk/client-s3": "3.609.0",
|
|
87
87
|
"axe-core": "4.10.0",
|
|
88
|
-
"browsertime": "23.
|
|
88
|
+
"browsertime": "23.2.0",
|
|
89
89
|
"coach-core": "8.0.2",
|
|
90
90
|
"cli-color": "2.0.4",
|
|
91
91
|
"concurrent-queue": "7.0.2",
|