sitespeed.io 20.4.1 → 20.6.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 +21 -1
- package/Dockerfile +2 -2
- package/Dockerfile-slim +1 -1
- package/lib/plugins/analysisstorer/index.js +4 -1
- package/npm-shrinkwrap.json +49 -49
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
|
+
## 20.6.1 - 2021-11-20
|
|
3
|
+
* Updated to [Browsertime 14.10.1](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#14101---2021-11-19) that disables the Chrome/Chromedriver version check by default.
|
|
2
4
|
|
|
5
|
+
## 20.6.0 - 2021-11-17
|
|
6
|
+
|
|
7
|
+
Note: Do your test fails with Firefox 94? See [Browsertime #1671](https://github.com/sitespeedio/browsertime/issues/1671). Until that is fixed in Firefox, it seems most use cases is fixed by adding a settle time (the browser rest for a while before we start the test). Try with `--browsertime.settleTime 10000` to add a 10 seconds wait time before the test starts.
|
|
8
|
+
### Added
|
|
9
|
+
* Updated to [Browsertime 14.10.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#14100---2021-11-16) with Chromedriver 96 and Chrome 96 in the Docker container.
|
|
10
|
+
|
|
11
|
+
## 20.5.0 - 2021-11-09
|
|
12
|
+
### Added
|
|
13
|
+
* Updated to [Browsertime 14.9.0](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#1490---2021-11-07) with updated Chrome HAR generator.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
* Ignore Influxdb and Grafana setup messages when you use the analysisstorer plugin [#3508](https://github.com/sitespeedio/sitespeed.io/pull/3508).
|
|
17
|
+
## 20.4.2 - 2021-11-07
|
|
18
|
+
### Fixed
|
|
19
|
+
* Updated to AXE core 4.3.5 [#3501](https://github.com/sitespeedio/sitespeed.io/pull/3501).
|
|
20
|
+
* Use latest npm in the Docker container [#3502](https://github.com/sitespeedio/sitespeed.io/pull/3502).
|
|
21
|
+
* Fixed the bug that caused so that you couldn't use the analyisstorer plugin together with Graphite [#3506](https://github.com/sitespeedio/sitespeed.io/pull/3506).
|
|
22
|
+
* Updated to yargs 17.2.1
|
|
3
23
|
## 20.4.1 - 2021-10-29
|
|
4
24
|
### Fixed
|
|
5
|
-
* Reverted the change with npm in the
|
|
25
|
+
* Reverted the change with npm in the Docker container since it broke both webpagetest and the +1 container installation
|
|
6
26
|
## 20.4.0 - 2021-10-29
|
|
7
27
|
|
|
8
28
|
### Added
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM sitespeedio/webbrowsers:chrome-
|
|
1
|
+
FROM sitespeedio/webbrowsers:chrome-96.0-firefox-93.0-edge-95.0-dev
|
|
2
2
|
|
|
3
3
|
ENV SITESPEED_IO_BROWSERTIME__XVFB true
|
|
4
4
|
ENV SITESPEED_IO_BROWSERTIME__DOCKER true
|
|
@@ -25,7 +25,7 @@ RUN mkdir -p /usr/src/app
|
|
|
25
25
|
WORKDIR /usr/src/app
|
|
26
26
|
|
|
27
27
|
COPY package.* /usr/src/app/
|
|
28
|
-
RUN npm install --production && npm cache clean --force
|
|
28
|
+
RUN npm install -g npm@latest && npm install --production && npm cache clean --force
|
|
29
29
|
COPY . /usr/src/app
|
|
30
30
|
|
|
31
31
|
COPY docker/scripts/start.sh /start.sh
|
package/Dockerfile-slim
CHANGED
|
@@ -30,7 +30,7 @@ RUN buildDeps='wget bzip2' && apt-get update && apt -y install $buildDeps && \
|
|
|
30
30
|
RUN mkdir -p /usr/src/app
|
|
31
31
|
WORKDIR /usr/src/app
|
|
32
32
|
COPY . /usr/src/app
|
|
33
|
-
RUN CHROMEDRIVER_SKIP_DOWNLOAD=true EGDEDRIVER_SKIP_DOWNLOAD=true npm install --production && npm cache clean --force && npm uninstall npm -g
|
|
33
|
+
RUN npm install -g npm@latest && CHROMEDRIVER_SKIP_DOWNLOAD=true EGDEDRIVER_SKIP_DOWNLOAD=true npm install --production && npm cache clean --force && npm uninstall npm -g
|
|
34
34
|
WORKDIR /usr/src/app
|
|
35
35
|
COPY docker/scripts/start-slim.sh /start.sh
|
|
36
36
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.6.1",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "20.
|
|
9
|
+
"version": "20.6.1",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "5.8.3",
|
|
13
13
|
"@tgwf/co2": "0.6.1",
|
|
14
14
|
"aws-sdk": "2.882.0",
|
|
15
|
-
"axe-core": "4.3.
|
|
16
|
-
"browsertime": "14.
|
|
15
|
+
"axe-core": "4.3.5",
|
|
16
|
+
"browsertime": "14.10.1",
|
|
17
17
|
"cli-color": "2.0.0",
|
|
18
18
|
"coach-core": "6.4.3",
|
|
19
19
|
"concurrent-queue": "7.0.2",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"tape": "4.13.0",
|
|
50
50
|
"text-table": "0.2.0",
|
|
51
51
|
"uuid": "8.3.2",
|
|
52
|
-
"yargs": "17.
|
|
52
|
+
"yargs": "17.2.1"
|
|
53
53
|
},
|
|
54
54
|
"bin": {
|
|
55
55
|
"sitespeed.io": "bin/sitespeed.js",
|
|
@@ -910,9 +910,9 @@
|
|
|
910
910
|
"optional": true
|
|
911
911
|
},
|
|
912
912
|
"node_modules/@sitespeed.io/chromedriver": {
|
|
913
|
-
"version": "
|
|
914
|
-
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-
|
|
915
|
-
"integrity": "sha512-
|
|
913
|
+
"version": "96.0.4664-35",
|
|
914
|
+
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-96.0.4664-35.tgz",
|
|
915
|
+
"integrity": "sha512-XhTaEmG+BNlLdXSuUPkxVAzM+dl4caHjEW76ATL4q9aMqesP3VtZIxK5i4ePnskaJiPhXm2Eg6zNkORLYP8/ag==",
|
|
916
916
|
"hasInstallScript": true,
|
|
917
917
|
"dependencies": {
|
|
918
918
|
"node-downloader-helper": "1.0.19",
|
|
@@ -1337,9 +1337,9 @@
|
|
|
1337
1337
|
"integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w=="
|
|
1338
1338
|
},
|
|
1339
1339
|
"node_modules/axe-core": {
|
|
1340
|
-
"version": "4.3.
|
|
1341
|
-
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.
|
|
1342
|
-
"integrity": "sha512
|
|
1340
|
+
"version": "4.3.5",
|
|
1341
|
+
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz",
|
|
1342
|
+
"integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==",
|
|
1343
1343
|
"engines": {
|
|
1344
1344
|
"node": ">=4"
|
|
1345
1345
|
}
|
|
@@ -1465,21 +1465,21 @@
|
|
|
1465
1465
|
}
|
|
1466
1466
|
},
|
|
1467
1467
|
"node_modules/browsertime": {
|
|
1468
|
-
"version": "14.
|
|
1469
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.
|
|
1470
|
-
"integrity": "sha512-
|
|
1468
|
+
"version": "14.10.1",
|
|
1469
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.10.1.tgz",
|
|
1470
|
+
"integrity": "sha512-RZftjMemagdG1B7WZDVtMYJN+C35TygA2Lk9Z/0TkqD1A1URpYbONoBqfGD1YMJt1FxfMP3hP5nK+zzVtwIA9g==",
|
|
1471
1471
|
"dependencies": {
|
|
1472
1472
|
"@cypress/xvfb": "1.2.4",
|
|
1473
1473
|
"@devicefarmer/adbkit": "2.11.3",
|
|
1474
|
-
"@sitespeed.io/chromedriver": "
|
|
1474
|
+
"@sitespeed.io/chromedriver": "96.0.4664-35",
|
|
1475
1475
|
"@sitespeed.io/edgedriver": "95.0.1020-30",
|
|
1476
1476
|
"@sitespeed.io/geckodriver": "0.29.1-2",
|
|
1477
1477
|
"@sitespeed.io/throttle": "3.0.0",
|
|
1478
1478
|
"@sitespeed.io/tracium": "0.3.3",
|
|
1479
1479
|
"btoa": "1.2.1",
|
|
1480
|
-
"chrome-har": "0.
|
|
1480
|
+
"chrome-har": "0.12.0",
|
|
1481
1481
|
"chrome-remote-interface": "0.31.0",
|
|
1482
|
-
"dayjs": "1.10.
|
|
1482
|
+
"dayjs": "1.10.7",
|
|
1483
1483
|
"execa": "5.1.1",
|
|
1484
1484
|
"fast-stats": "0.0.6",
|
|
1485
1485
|
"find-up": "5.0.0",
|
|
@@ -1494,7 +1494,7 @@
|
|
|
1494
1494
|
"lodash.set": "4.3.2",
|
|
1495
1495
|
"selenium-webdriver": "4.0.0",
|
|
1496
1496
|
"speedline-core": "1.4.3",
|
|
1497
|
-
"yargs": "17.
|
|
1497
|
+
"yargs": "17.2.1"
|
|
1498
1498
|
},
|
|
1499
1499
|
"bin": {
|
|
1500
1500
|
"browsertime": "bin/browsertime.js"
|
|
@@ -1507,9 +1507,9 @@
|
|
|
1507
1507
|
}
|
|
1508
1508
|
},
|
|
1509
1509
|
"node_modules/browsertime/node_modules/dayjs": {
|
|
1510
|
-
"version": "1.10.
|
|
1511
|
-
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.
|
|
1512
|
-
"integrity": "sha512-
|
|
1510
|
+
"version": "1.10.7",
|
|
1511
|
+
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.7.tgz",
|
|
1512
|
+
"integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig=="
|
|
1513
1513
|
},
|
|
1514
1514
|
"node_modules/btoa": {
|
|
1515
1515
|
"version": "1.2.1",
|
|
@@ -1693,9 +1693,9 @@
|
|
|
1693
1693
|
}
|
|
1694
1694
|
},
|
|
1695
1695
|
"node_modules/chrome-har": {
|
|
1696
|
-
"version": "0.
|
|
1697
|
-
"resolved": "https://registry.npmjs.org/chrome-har/-/chrome-har-0.
|
|
1698
|
-
"integrity": "sha512-
|
|
1696
|
+
"version": "0.12.0",
|
|
1697
|
+
"resolved": "https://registry.npmjs.org/chrome-har/-/chrome-har-0.12.0.tgz",
|
|
1698
|
+
"integrity": "sha512-VRQOsN9omU6q5/8h6eU9tkHPV2VvOCAh1JL4Hpk8ZIyrTLFWdK0A7UOsKNplvr+9Ls/8Wr71G20cuX2OsRPbwA==",
|
|
1699
1699
|
"dependencies": {
|
|
1700
1700
|
"dayjs": "1.8.31",
|
|
1701
1701
|
"debug": "4.1.1",
|
|
@@ -7516,9 +7516,9 @@
|
|
|
7516
7516
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
7517
7517
|
},
|
|
7518
7518
|
"node_modules/yargs": {
|
|
7519
|
-
"version": "17.
|
|
7520
|
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.
|
|
7521
|
-
"integrity": "sha512-
|
|
7519
|
+
"version": "17.2.1",
|
|
7520
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz",
|
|
7521
|
+
"integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==",
|
|
7522
7522
|
"dependencies": {
|
|
7523
7523
|
"cliui": "^7.0.2",
|
|
7524
7524
|
"escalade": "^3.1.1",
|
|
@@ -8210,9 +8210,9 @@
|
|
|
8210
8210
|
}
|
|
8211
8211
|
},
|
|
8212
8212
|
"@sitespeed.io/chromedriver": {
|
|
8213
|
-
"version": "
|
|
8214
|
-
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-
|
|
8215
|
-
"integrity": "sha512-
|
|
8213
|
+
"version": "96.0.4664-35",
|
|
8214
|
+
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-96.0.4664-35.tgz",
|
|
8215
|
+
"integrity": "sha512-XhTaEmG+BNlLdXSuUPkxVAzM+dl4caHjEW76ATL4q9aMqesP3VtZIxK5i4ePnskaJiPhXm2Eg6zNkORLYP8/ag==",
|
|
8216
8216
|
"requires": {
|
|
8217
8217
|
"node-downloader-helper": "1.0.19",
|
|
8218
8218
|
"node-stream-zip": "1.15.0"
|
|
@@ -8551,9 +8551,9 @@
|
|
|
8551
8551
|
"integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w=="
|
|
8552
8552
|
},
|
|
8553
8553
|
"axe-core": {
|
|
8554
|
-
"version": "4.3.
|
|
8555
|
-
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.
|
|
8556
|
-
"integrity": "sha512
|
|
8554
|
+
"version": "4.3.5",
|
|
8555
|
+
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz",
|
|
8556
|
+
"integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA=="
|
|
8557
8557
|
},
|
|
8558
8558
|
"babel-runtime": {
|
|
8559
8559
|
"version": "6.26.0",
|
|
@@ -8661,21 +8661,21 @@
|
|
|
8661
8661
|
}
|
|
8662
8662
|
},
|
|
8663
8663
|
"browsertime": {
|
|
8664
|
-
"version": "14.
|
|
8665
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.
|
|
8666
|
-
"integrity": "sha512-
|
|
8664
|
+
"version": "14.10.1",
|
|
8665
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.10.1.tgz",
|
|
8666
|
+
"integrity": "sha512-RZftjMemagdG1B7WZDVtMYJN+C35TygA2Lk9Z/0TkqD1A1URpYbONoBqfGD1YMJt1FxfMP3hP5nK+zzVtwIA9g==",
|
|
8667
8667
|
"requires": {
|
|
8668
8668
|
"@cypress/xvfb": "1.2.4",
|
|
8669
8669
|
"@devicefarmer/adbkit": "2.11.3",
|
|
8670
|
-
"@sitespeed.io/chromedriver": "
|
|
8670
|
+
"@sitespeed.io/chromedriver": "96.0.4664-35",
|
|
8671
8671
|
"@sitespeed.io/edgedriver": "95.0.1020-30",
|
|
8672
8672
|
"@sitespeed.io/geckodriver": "0.29.1-2",
|
|
8673
8673
|
"@sitespeed.io/throttle": "3.0.0",
|
|
8674
8674
|
"@sitespeed.io/tracium": "0.3.3",
|
|
8675
8675
|
"btoa": "1.2.1",
|
|
8676
|
-
"chrome-har": "0.
|
|
8676
|
+
"chrome-har": "0.12.0",
|
|
8677
8677
|
"chrome-remote-interface": "0.31.0",
|
|
8678
|
-
"dayjs": "1.10.
|
|
8678
|
+
"dayjs": "1.10.7",
|
|
8679
8679
|
"execa": "5.1.1",
|
|
8680
8680
|
"fast-stats": "0.0.6",
|
|
8681
8681
|
"find-up": "5.0.0",
|
|
@@ -8691,13 +8691,13 @@
|
|
|
8691
8691
|
"lodash.set": "4.3.2",
|
|
8692
8692
|
"selenium-webdriver": "4.0.0",
|
|
8693
8693
|
"speedline-core": "1.4.3",
|
|
8694
|
-
"yargs": "17.
|
|
8694
|
+
"yargs": "17.2.1"
|
|
8695
8695
|
},
|
|
8696
8696
|
"dependencies": {
|
|
8697
8697
|
"dayjs": {
|
|
8698
|
-
"version": "1.10.
|
|
8699
|
-
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.
|
|
8700
|
-
"integrity": "sha512-
|
|
8698
|
+
"version": "1.10.7",
|
|
8699
|
+
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.7.tgz",
|
|
8700
|
+
"integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig=="
|
|
8701
8701
|
}
|
|
8702
8702
|
}
|
|
8703
8703
|
},
|
|
@@ -8839,9 +8839,9 @@
|
|
|
8839
8839
|
"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
|
|
8840
8840
|
},
|
|
8841
8841
|
"chrome-har": {
|
|
8842
|
-
"version": "0.
|
|
8843
|
-
"resolved": "https://registry.npmjs.org/chrome-har/-/chrome-har-0.
|
|
8844
|
-
"integrity": "sha512-
|
|
8842
|
+
"version": "0.12.0",
|
|
8843
|
+
"resolved": "https://registry.npmjs.org/chrome-har/-/chrome-har-0.12.0.tgz",
|
|
8844
|
+
"integrity": "sha512-VRQOsN9omU6q5/8h6eU9tkHPV2VvOCAh1JL4Hpk8ZIyrTLFWdK0A7UOsKNplvr+9Ls/8Wr71G20cuX2OsRPbwA==",
|
|
8845
8845
|
"requires": {
|
|
8846
8846
|
"dayjs": "1.8.31",
|
|
8847
8847
|
"debug": "4.1.1",
|
|
@@ -13526,9 +13526,9 @@
|
|
|
13526
13526
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
13527
13527
|
},
|
|
13528
13528
|
"yargs": {
|
|
13529
|
-
"version": "17.
|
|
13530
|
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.
|
|
13531
|
-
"integrity": "sha512-
|
|
13529
|
+
"version": "17.2.1",
|
|
13530
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz",
|
|
13531
|
+
"integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==",
|
|
13532
13532
|
"requires": {
|
|
13533
13533
|
"cliui": "^7.0.2",
|
|
13534
13534
|
"escalade": "^3.1.1",
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"sitespeed.io": "./bin/sitespeed.js",
|
|
5
5
|
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
|
6
6
|
},
|
|
7
|
-
"version": "20.
|
|
7
|
+
"version": "20.6.1",
|
|
8
8
|
"description": "Analyze the web performance of your site",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"performance",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"@google-cloud/storage": "5.8.3",
|
|
74
74
|
"@tgwf/co2": "0.6.1",
|
|
75
75
|
"aws-sdk": "2.882.0",
|
|
76
|
-
"axe-core": "4.3.
|
|
77
|
-
"browsertime": "14.
|
|
76
|
+
"axe-core": "4.3.5",
|
|
77
|
+
"browsertime": "14.10.1",
|
|
78
78
|
"coach-core": "6.4.3",
|
|
79
79
|
"cli-color": "2.0.0",
|
|
80
80
|
"concurrent-queue": "7.0.2",
|
|
@@ -110,6 +110,6 @@
|
|
|
110
110
|
"tape": "4.13.0",
|
|
111
111
|
"text-table": "0.2.0",
|
|
112
112
|
"uuid": "8.3.2",
|
|
113
|
-
"yargs": "17.
|
|
113
|
+
"yargs": "17.2.1"
|
|
114
114
|
}
|
|
115
115
|
}
|