sitespeed.io 20.4.1 → 20.4.2

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,8 +1,13 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 20.4.2 - 2021-11-07
4
+ ### Fixed
5
+ * Updated to AXE core 4.3.5 [#3501](https://github.com/sitespeedio/sitespeed.io/pull/3501).
6
+ * Use latest npm in the Docker container [#3502](https://github.com/sitespeedio/sitespeed.io/pull/3502).
7
+ * 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).
3
8
  ## 20.4.1 - 2021-10-29
4
9
  ### Fixed
5
- * Reverted the change with npm in the Docketr container since it broke both webpagetest and the +1 container installation
10
+ * Reverted the change with npm in the Docker container since it broke both webpagetest and the +1 container installation
6
11
  ## 20.4.0 - 2021-10-29
7
12
 
8
13
  ### Added
package/Dockerfile CHANGED
@@ -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
 
@@ -26,7 +26,8 @@ function shouldIgnoreMessage(message) {
26
26
  'html.pug',
27
27
  's3.finished',
28
28
  'gcs.finished',
29
- 'ftp.finished'
29
+ 'ftp.finished',
30
+ 'graphite.setup'
30
31
  ].indexOf(message.type) >= 0
31
32
  );
32
33
  }
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "20.4.1",
3
+ "version": "20.4.2",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "20.4.1",
9
+ "version": "20.4.2",
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.3",
15
+ "axe-core": "4.3.5",
16
16
  "browsertime": "14.8.0",
17
17
  "cli-color": "2.0.0",
18
18
  "coach-core": "6.4.3",
@@ -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.0.1"
52
+ "yargs": "17.2.1"
53
53
  },
54
54
  "bin": {
55
55
  "sitespeed.io": "bin/sitespeed.js",
@@ -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.3",
1341
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.3.tgz",
1342
- "integrity": "sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA==",
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
  }
@@ -1511,6 +1511,23 @@
1511
1511
  "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.5.tgz",
1512
1512
  "integrity": "sha512-BUFis41ikLz+65iH6LHQCDm4YPMj5r1YFLdupPIyM4SGcXMmtiLQ7U37i+hGS8urIuqe7I/ou3IS1jVc4nbN4g=="
1513
1513
  },
1514
+ "node_modules/browsertime/node_modules/yargs": {
1515
+ "version": "17.0.1",
1516
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz",
1517
+ "integrity": "sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==",
1518
+ "dependencies": {
1519
+ "cliui": "^7.0.2",
1520
+ "escalade": "^3.1.1",
1521
+ "get-caller-file": "^2.0.5",
1522
+ "require-directory": "^2.1.1",
1523
+ "string-width": "^4.2.0",
1524
+ "y18n": "^5.0.5",
1525
+ "yargs-parser": "^20.2.2"
1526
+ },
1527
+ "engines": {
1528
+ "node": ">=12"
1529
+ }
1530
+ },
1514
1531
  "node_modules/btoa": {
1515
1532
  "version": "1.2.1",
1516
1533
  "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz",
@@ -7516,9 +7533,9 @@
7516
7533
  "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
7517
7534
  },
7518
7535
  "node_modules/yargs": {
7519
- "version": "17.0.1",
7520
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz",
7521
- "integrity": "sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==",
7536
+ "version": "17.2.1",
7537
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz",
7538
+ "integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==",
7522
7539
  "dependencies": {
7523
7540
  "cliui": "^7.0.2",
7524
7541
  "escalade": "^3.1.1",
@@ -8551,9 +8568,9 @@
8551
8568
  "integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w=="
8552
8569
  },
8553
8570
  "axe-core": {
8554
- "version": "4.3.3",
8555
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.3.tgz",
8556
- "integrity": "sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA=="
8571
+ "version": "4.3.5",
8572
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz",
8573
+ "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA=="
8557
8574
  },
8558
8575
  "babel-runtime": {
8559
8576
  "version": "6.26.0",
@@ -8698,6 +8715,20 @@
8698
8715
  "version": "1.10.5",
8699
8716
  "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.5.tgz",
8700
8717
  "integrity": "sha512-BUFis41ikLz+65iH6LHQCDm4YPMj5r1YFLdupPIyM4SGcXMmtiLQ7U37i+hGS8urIuqe7I/ou3IS1jVc4nbN4g=="
8718
+ },
8719
+ "yargs": {
8720
+ "version": "17.0.1",
8721
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz",
8722
+ "integrity": "sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==",
8723
+ "requires": {
8724
+ "cliui": "^7.0.2",
8725
+ "escalade": "^3.1.1",
8726
+ "get-caller-file": "^2.0.5",
8727
+ "require-directory": "^2.1.1",
8728
+ "string-width": "^4.2.0",
8729
+ "y18n": "^5.0.5",
8730
+ "yargs-parser": "^20.2.2"
8731
+ }
8701
8732
  }
8702
8733
  }
8703
8734
  },
@@ -13526,9 +13557,9 @@
13526
13557
  "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
13527
13558
  },
13528
13559
  "yargs": {
13529
- "version": "17.0.1",
13530
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz",
13531
- "integrity": "sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==",
13560
+ "version": "17.2.1",
13561
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz",
13562
+ "integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==",
13532
13563
  "requires": {
13533
13564
  "cliui": "^7.0.2",
13534
13565
  "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.4.1",
7
+ "version": "20.4.2",
8
8
  "description": "Analyze the web performance of your site",
9
9
  "keywords": [
10
10
  "performance",
@@ -73,7 +73,7 @@
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.3",
76
+ "axe-core": "4.3.5",
77
77
  "browsertime": "14.8.0",
78
78
  "coach-core": "6.4.3",
79
79
  "cli-color": "2.0.0",
@@ -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.0.1"
113
+ "yargs": "17.2.1"
114
114
  }
115
115
  }