sitespeed.io 27.6.4 → 27.6.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/.github/workflows/building-docker-autobuild.yml +5 -4
- package/.github/workflows/building-docker-release.yml +10 -6
- package/.github/workflows/docker-scan.yml +1 -1
- package/.github/workflows/windows.yml +4 -1
- package/CHANGELOG.md +5 -0
- package/lib/cli/cli.js +5 -0
- package/npm-shrinkwrap.json +9 -9
- package/package.json +2 -2
|
@@ -9,20 +9,21 @@ jobs:
|
|
|
9
9
|
steps:
|
|
10
10
|
-
|
|
11
11
|
name: Set up QEMU
|
|
12
|
-
uses: docker/setup-qemu-action@
|
|
12
|
+
uses: docker/setup-qemu-action@v2
|
|
13
13
|
-
|
|
14
14
|
name: Set up Docker Buildx
|
|
15
|
-
uses: docker/setup-buildx-action@
|
|
15
|
+
uses: docker/setup-buildx-action@v2
|
|
16
16
|
-
|
|
17
17
|
name: Login to DockerHub
|
|
18
|
-
uses: docker/login-action@
|
|
18
|
+
uses: docker/login-action@v2
|
|
19
19
|
with:
|
|
20
20
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
21
21
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
22
22
|
-
|
|
23
23
|
name: Build and push sitespeed.io
|
|
24
|
-
uses: docker/build-push-action@
|
|
24
|
+
uses: docker/build-push-action@v4
|
|
25
25
|
with:
|
|
26
26
|
platforms: linux/amd64
|
|
27
27
|
push: true
|
|
28
|
+
provenance: false
|
|
28
29
|
tags: sitespeedio/sitespeed.io-autobuild:main
|
|
@@ -15,10 +15,10 @@ jobs:
|
|
|
15
15
|
uses: docker/setup-qemu-action@v1
|
|
16
16
|
-
|
|
17
17
|
name: Set up Docker Buildx
|
|
18
|
-
uses: docker/setup-buildx-action@
|
|
18
|
+
uses: docker/setup-buildx-action@v2
|
|
19
19
|
-
|
|
20
20
|
name: Login to DockerHub
|
|
21
|
-
uses: docker/login-action@
|
|
21
|
+
uses: docker/login-action@v2
|
|
22
22
|
with:
|
|
23
23
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
24
24
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
@@ -30,39 +30,43 @@ jobs:
|
|
|
30
30
|
strip_v: true
|
|
31
31
|
-
|
|
32
32
|
name: Build and push sitespeed.io
|
|
33
|
-
uses: docker/build-push-action@
|
|
33
|
+
uses: docker/build-push-action@v4
|
|
34
34
|
with:
|
|
35
35
|
context: .
|
|
36
36
|
platforms: linux/amd64,linux/arm64
|
|
37
37
|
push: true
|
|
38
|
+
provenance: false
|
|
38
39
|
tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}},sitespeedio/sitespeed.io:latest
|
|
39
40
|
-
|
|
40
41
|
name: Build and push sitespeed.io+1
|
|
41
|
-
uses: docker/build-push-action@
|
|
42
|
+
uses: docker/build-push-action@v4
|
|
42
43
|
with:
|
|
43
44
|
context: .
|
|
44
45
|
platforms: linux/amd64,linux/arm64
|
|
45
46
|
file: ./docker/Dockerfile-plus1
|
|
46
47
|
build-args: version=${{steps.tag.outputs.tag}}
|
|
47
48
|
push: true
|
|
49
|
+
provenance: false
|
|
48
50
|
tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-plus1
|
|
49
51
|
-
|
|
50
52
|
name: Build and push sitespeed.io+wpt
|
|
51
|
-
uses: docker/build-push-action@
|
|
53
|
+
uses: docker/build-push-action@v4
|
|
52
54
|
with:
|
|
53
55
|
context: .
|
|
54
56
|
platforms: linux/amd64,linux/arm64
|
|
55
57
|
file: ./docker/Dockerfile-webpagetest
|
|
56
58
|
build-args: version=${{steps.tag.outputs.tag}}
|
|
57
59
|
push: true
|
|
60
|
+
provenance: false
|
|
58
61
|
tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-webpagetest
|
|
59
62
|
-
|
|
60
63
|
name: Build and push sitespeed.io-slim
|
|
61
|
-
uses: docker/build-push-action@
|
|
64
|
+
uses: docker/build-push-action@v4
|
|
62
65
|
with:
|
|
63
66
|
context: .
|
|
64
67
|
platforms: linux/amd64,linux/arm64
|
|
65
68
|
file: ./Dockerfile-slim
|
|
66
69
|
build-args: version=${{steps.tag.outputs.tag}}
|
|
67
70
|
push: true
|
|
71
|
+
provenance: false
|
|
68
72
|
tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-slim
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 27.6.5 - 2023-05-26
|
|
4
|
+
### Fixed
|
|
5
|
+
* Bumped Browsertime with a fix for host-resolver-rules, thank you [Mikhail](https://github.com/atuchin-m) for PR [#1953](https://github.com/sitespeedio/browsertime/pull/1953).
|
|
6
|
+
* Hopefully fixed the broken manifest file for the Docker containers by updating the Docker build actions to latest versions and added provenance: false.
|
|
7
|
+
|
|
3
8
|
## 27.6.4 - 2023-05-20
|
|
4
9
|
### Fixed
|
|
5
10
|
* New fixed version of the ARM container with a working version of Firefox [#3844](https://github.com/sitespeedio/sitespeed.io/pull/3844)
|
package/lib/cli/cli.js
CHANGED
|
@@ -1840,6 +1840,11 @@ export async function parseCommandLine() {
|
|
|
1840
1840
|
type: 'string',
|
|
1841
1841
|
group: 'API'
|
|
1842
1842
|
})
|
|
1843
|
+
.option('api.priority', {
|
|
1844
|
+
type: 'integer',
|
|
1845
|
+
describe: 'The priority of the test. Highest priority is 1.',
|
|
1846
|
+
group: 'API'
|
|
1847
|
+
})
|
|
1843
1848
|
.option('api.json', {
|
|
1844
1849
|
describe: 'Output the result as JSON.',
|
|
1845
1850
|
group: 'API'
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "27.6.
|
|
3
|
+
"version": "27.6.5",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "27.6.
|
|
9
|
+
"version": "27.6.5",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "6.9.5",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@tgwf/co2": "0.12.2",
|
|
16
16
|
"aws-sdk": "2.1327.0",
|
|
17
17
|
"axe-core": "4.7.1",
|
|
18
|
-
"browsertime": "17.10.
|
|
18
|
+
"browsertime": "17.10.2",
|
|
19
19
|
"cli-color": "2.0.3",
|
|
20
20
|
"coach-core": "7.1.3",
|
|
21
21
|
"concurrent-queue": "7.0.2",
|
|
@@ -1896,9 +1896,9 @@
|
|
|
1896
1896
|
}
|
|
1897
1897
|
},
|
|
1898
1898
|
"node_modules/browsertime": {
|
|
1899
|
-
"version": "17.10.
|
|
1900
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-17.10.
|
|
1901
|
-
"integrity": "sha512-
|
|
1899
|
+
"version": "17.10.2",
|
|
1900
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-17.10.2.tgz",
|
|
1901
|
+
"integrity": "sha512-n9/KaYqUE2cAXtH+8gLLepgc2JBODC05qPZxB5yINZnz6Rs6/k/AcMynQsZ/A/q1Q+XNoUdcOOPPYlgtNZK5qg==",
|
|
1902
1902
|
"dependencies": {
|
|
1903
1903
|
"@cypress/xvfb": "1.2.4",
|
|
1904
1904
|
"@devicefarmer/adbkit": "2.11.3",
|
|
@@ -10886,9 +10886,9 @@
|
|
|
10886
10886
|
}
|
|
10887
10887
|
},
|
|
10888
10888
|
"browsertime": {
|
|
10889
|
-
"version": "17.10.
|
|
10890
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-17.10.
|
|
10891
|
-
"integrity": "sha512-
|
|
10889
|
+
"version": "17.10.2",
|
|
10890
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-17.10.2.tgz",
|
|
10891
|
+
"integrity": "sha512-n9/KaYqUE2cAXtH+8gLLepgc2JBODC05qPZxB5yINZnz6Rs6/k/AcMynQsZ/A/q1Q+XNoUdcOOPPYlgtNZK5qg==",
|
|
10892
10892
|
"requires": {
|
|
10893
10893
|
"@cypress/xvfb": "1.2.4",
|
|
10894
10894
|
"@devicefarmer/adbkit": "2.11.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": "27.6.
|
|
8
|
+
"version": "27.6.5",
|
|
9
9
|
"description": "Analyze the web performance of your site",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"performance",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"@tgwf/co2": "0.12.2",
|
|
84
84
|
"aws-sdk": "2.1327.0",
|
|
85
85
|
"axe-core": "4.7.1",
|
|
86
|
-
"browsertime": "17.10.
|
|
86
|
+
"browsertime": "17.10.2",
|
|
87
87
|
"coach-core": "7.1.3",
|
|
88
88
|
"cli-color": "2.0.3",
|
|
89
89
|
"concurrent-queue": "7.0.2",
|