sitespeed.io 22.1.2 → 23.0.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.
@@ -0,0 +1,15 @@
1
+ name: New feature or improvement
2
+ description: Suggest a new feature or something that can be improved
3
+ labels: [feature, improvement]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Suggest a new feature or something that can be improved
9
+ - type: textarea
10
+ id: your-idea
11
+ attributes:
12
+ label: Feature/improvement
13
+ description: You can also disuss new features/improvements in the [sitespeed.io Slack channel](https://sitespeedio.herokuapp.com/).
14
+ validations:
15
+ required: true
@@ -33,29 +33,29 @@ jobs:
33
33
  push: true
34
34
  tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}},sitespeedio/sitespeed.io:latest
35
35
  -
36
- name: Build and push sitespeed.io-slim
36
+ name: Build and push sitespeed.io+1
37
37
  uses: docker/build-push-action@v2
38
38
  with:
39
39
  platforms: linux/amd64,linux/arm64
40
- file: ./Dockerfile-slim
40
+ file: ./docker/Dockerfile-plus1
41
41
  build-args: version=${{steps.tag.outputs.tag}}
42
42
  push: true
43
- tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-slim
43
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-plus1
44
44
  -
45
- name: Build and push sitespeed.io+1
45
+ name: Build and push sitespeed.io+wpt
46
46
  uses: docker/build-push-action@v2
47
47
  with:
48
48
  platforms: linux/amd64,linux/arm64
49
- file: ./docker/Dockerfile-plus1
49
+ file: ./docker/Dockerfile-webpagetest
50
50
  build-args: version=${{steps.tag.outputs.tag}}
51
51
  push: true
52
- tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-plus1
52
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-webpagetest
53
53
  -
54
- name: Build and push sitespeed.io+wpt
54
+ name: Build and push sitespeed.io-slim
55
55
  uses: docker/build-push-action@v2
56
56
  with:
57
57
  platforms: linux/amd64,linux/arm64
58
- file: ./docker/Dockerfile-webpagetest
58
+ file: ./Dockerfile-slim
59
59
  build-args: version=${{steps.tag.outputs.tag}}
60
60
  push: true
61
- tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-webpagetest
61
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-slim
@@ -24,6 +24,10 @@ jobs:
24
24
  sudo apt-get update
25
25
  sudo apt-get --only-upgrade install google-chrome-stable
26
26
  google-chrome --version
27
+ - name: Install Firefox
28
+ uses: browser-actions/setup-firefox@latest
29
+ #with:
30
+ # firefox-version: '94.0'
27
31
  - name: Setup environment
28
32
  run: docker-compose -f test/docker-compose.yml up -d
29
33
  - name: Browser versions
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 23.0.0 - 2022-02-21
4
+
5
+ ### Breaking changes
6
+ * In this release we updated to Browsertime 15.0.0 that drops built in support for [TSProxy](https://github.com/WPO-Foundation/tsproxy). The reason to drop TSProxy is that it only works in Python 2 and the sunset for Python 2 was January 1, 2020. If you still need TSProxy you can set it up yourself.
7
+
8
+ * Browsertime also drop support for getting visual metrics from the trace log. It was added to evaluate if it could be a compliment to the video visual metrics but it was not. Removing it also decreased the number of dependencies in Browsertime.
9
+
10
+ * Linux/Mac OS will flush the DNS between runs, that means that you can have some changes in DNS lookup time when you upgrade to 23.0.0.
11
+
12
+ ### Fixed
13
+ * Fix broken JUnit output. Thank you [rghetu](https://github.com/rghetu) for finding it [#3569](https://github.com/sitespeedio/sitespeed.io/pull/3569).
14
+ * When comparing metrics side by side for different runs, mean/median and stddev was sometimes broken for some timing metrics. Fixed with [#3573](https://github.com/sitespeedio/sitespeed.io/pull/3573)
15
+
16
+ ### Added
17
+ * Use Browsertime 15.0.0.
18
+ * Show alias name in the budget report page [#3572](https://github.com/sitespeedio/sitespeed.io/pull/3572).
19
+
3
20
  ## 22.1.2 - 2022-02-09
4
21
  ### Fixed
5
22
  * Updated to Browsertime 14.21.1 that disables the new Chrome splash screen by default.
@@ -13,7 +30,7 @@
13
30
  ## 22.0.0 - 2022-02-07
14
31
 
15
32
  ### Breaking changes
16
- * If you use the Lightouse plugin there's breaking changes:
33
+ * If you use the Lighthouse plugin there's breaking changes:
17
34
 
18
35
  In the new version we drop support for the following:
19
36
  * Running multiple runs with Lighthouse.
package/Dockerfile CHANGED
@@ -27,7 +27,7 @@ RUN mkdir -p /usr/src/app
27
27
  WORKDIR /usr/src/app
28
28
 
29
29
  COPY package.* /usr/src/app/
30
- RUN npm install -g npm@latest && npm install --production && npm cache clean --force
30
+ RUN npm install --production && npm cache clean --force
31
31
  COPY . /usr/src/app
32
32
 
33
33
  COPY docker/scripts/start.sh /start.sh
package/Dockerfile-slim CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:16.13.2-bullseye-slim
1
+ FROM node:16.14.0-bullseye-slim
2
2
 
3
3
  ARG TARGETPLATFORM=linux/amd64
4
4
 
@@ -10,26 +10,11 @@ ENV SITESPEED_IO_BROWSERTIME__HEADLESS true
10
10
 
11
11
  ENV PATH="/usr/local/bin:${PATH}"
12
12
 
13
- RUN buildDeps='wget bzip2' && apt-get update && apt -y install $buildDeps && \
14
- # Download and unpack the correct Firefox version
15
- if [ "$TARGETPLATFORM" = "linux/amd64" ] ; \
16
- then \
17
- # Install dependencies for Firefox, the repo is often behind
18
- echo "deb http://deb.debian.org/debian/ unstable main contrib non-free" >> /etc/apt/sources.list.d/debian.list && \
19
- apt-get update && \
20
- apt-get install -y --no-install-recommends firefox; \
21
- elif [ "$TARGETPLATFORM" = "linux/arm64" ] ; \
22
- then \
23
- # Install dependencies for Firefox, the repo is often behind
24
- echo "deb http://deb.debian.org/debian/ unstable main contrib non-free" >> /etc/apt/sources.list.d/debian.list && \
25
- apt-get update && \
26
- apt-get install -y --no-install-recommends firefox; \
27
- fi
28
-
29
- # iproute2 = tc
30
- RUN apt -y install tcpdump iproute2 ca-certificates sudo --no-install-recommends --no-install-suggests && \
13
+ RUN echo "deb http://deb.debian.org/debian/ unstable main contrib non-free" >> /etc/apt/sources.list.d/debian.list && \
14
+ apt-get update && \
15
+ apt-get install -y --no-install-recommends firefox tcpdump iproute2 ca-certificates sudo --no-install-recommends --no-install-suggests && \
31
16
  # Cleanup
32
- apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $toolDeps \
17
+ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
33
18
  && rm -rf /var/lib/apt/lists/* /tmp/*
34
19
 
35
20
  # Install sitespeed.io
package/lib/cli/cli.js CHANGED
@@ -303,9 +303,9 @@ module.exports.parseCommandLine = function parseCommandLine() {
303
303
  .option('browsertime.connectivity.engine', {
304
304
  alias: 'connectivity.engine',
305
305
  default: 'external',
306
- choices: ['external', 'throttle', 'tsproxy', 'humble'],
306
+ choices: ['external', 'throttle', 'humble'],
307
307
  describe:
308
- 'The engine for connectivity. Throttle works on Mac and tc based Linux. For mobile you can use Humble if you have a Humble setup. Use external if you set the connectivity outside of Browsertime. Use tsproxy if you are using Kubernetes. More documentation at https://www.sitespeed.io/documentation/sitespeed.io/connectivity/.',
308
+ 'The engine for connectivity. Throttle works on Mac and tc based Linux. For mobile you can use Humble if you have a Humble setup. Use external if you set the connectivity outside of Browsertime. More documentation at https://www.sitespeed.io/documentation/sitespeed.io/connectivity/.',
309
309
  type: 'string',
310
310
  group: 'Browser'
311
311
  })
@@ -172,11 +172,8 @@ function findTimings(timings, start, end) {
172
172
  module.exports = {
173
173
  async getFilmstrip(browsertimeData, run, dir, options, fullPath) {
174
174
  let doWeHaveFilmstrip =
175
- (options.browsertime.chrome &&
176
- options.browsertime.chrome.enableTraceScreenshots === true &&
177
- options.browsertime.chrome.visualMetricsUsingTrace === true) ||
178
- (options.browsertime.visualMetrics === true &&
179
- options.browsertime.videoParams.createFilmstrip === true);
175
+ options.browsertime.visualMetrics === true &&
176
+ options.browsertime.videoParams.createFilmstrip === true;
180
177
 
181
178
  if (doWeHaveFilmstrip === false) {
182
179
  return [];
@@ -49,8 +49,12 @@ exports.writeJunit = function (results, dir, options) {
49
49
  .className(fineUrl)
50
50
  .name(result.type + '.' + result.metric)
51
51
  .standardOutput(
52
- result.metric + ' is ' + result.friendlyValue || result.value,
53
- +' and limit ' + result.limitType + ' ' + result.friendlyLimit ||
52
+ result.metric + ' is ' + result.friendlyValue ||
53
+ result.value +
54
+ ' and limit ' +
55
+ result.limitType +
56
+ ' ' +
57
+ result.friendlyLimit ||
54
58
  result.limit + ' ' + url
55
59
  );
56
60
  }
@@ -165,7 +165,8 @@ class HTMLBuilder {
165
165
  pageDescription: 'The list of failing and working performance budgets.',
166
166
  budget,
167
167
  totalFailing,
168
- totalWorking
168
+ totalWorking,
169
+ alias: options.urlsMetaData
169
170
  };
170
171
  }
171
172
 
@@ -6,8 +6,9 @@ mixin row(budget)
6
6
  each result in results
7
7
  tr
8
8
  td
9
- a(href=url)= url
10
- td #{result.metric} with value #{result.friendlyValue || result.value} limit #{result.limitType} #{result.friendlyLimit || result.limit}
9
+ a(href=url)= alias[url] ? alias[url].urlAlias : url
10
+ p #{alias[url] ? url : ''}
11
+ td #{result.metric} with value #{result.friendlyValue || result.value} limit #{result.limitType} #{result.friendlyLimit || result.limit}
11
12
 
12
13
  block content
13
14
  h2 The budget
@@ -43,7 +43,7 @@ mixin rows(pages)
43
43
 
44
44
  block content
45
45
  - headings = ['URL']
46
- if (options.browsertime.visualMetrics || (options.cpu && options.browsertime.chrome && options.browsertime.chrome.visualMetricsUsingTrace && options.browsertime.chrome.enableTraceScreenshots)) && !hasPageSummaryMetricInput
46
+ if (options.browsertime.visualMetrics && !hasPageSummaryMetricInput)
47
47
  - headings.push('First Visual Change', 'Speed Index', 'Last Visual Change')
48
48
  - metricList = html.pageSummaryMetrics
49
49
  each kv in metricList
@@ -41,7 +41,7 @@ if browsertime
41
41
  - baseHelpURL = rootPath + 'help.html#';
42
42
 
43
43
  - const defaultVisualMetrics = ['SpeedIndex','FirstVisualChange','LastVisualChange','VisualProgress', 'PerceptualSpeedIndexProgress', 'ContentfulSpeedIndexProgress', 'videoRecordingStart', 'PerceptualSpeedIndex', 'ContentfulSpeedIndex', 'LastMeaningfulPaint', 'LargestImage', 'Heading' ,'VisualReadiness','VisualComplete85', 'VisualComplete95','VisualComplete99'];
44
- if (options.browsertime.visualMetrics || (options.cpu && options.browsertime.chrome && options.browsertime.chrome.visualMetricsUsingTrace && options.browsertime.chrome.enableTraceScreenshots)) && visualMetrics
44
+ if (options.browsertime.visualMetrics && visualMetrics)
45
45
  a#visualmetrics
46
46
  h3 Visual Metrics
47
47
  .row
@@ -54,6 +54,6 @@ block content
54
54
  b #{friendly.name}
55
55
  each page in runPages
56
56
  td #{friendly.format(get (page, 'data.' + tool + '.run.' + (friendly.runPath || friendly.path)))}
57
- td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.summaryPath + '.median', ''))}
58
- td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.summaryPath + '.mean', ''))}
59
- td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.summaryPath + '.stddev', ''))}
57
+ td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.median', ''))}
58
+ td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.mean', ''))}
59
+ td #{friendly.format(get (mySummary, 'data.' + tool + '.pageSummary.statistics.' + friendly.runPath + '.stddev', ''))}
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "22.1.2",
3
+ "version": "23.0.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "22.1.2",
9
+ "version": "23.0.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@google-cloud/storage": "5.8.3",
13
13
  "@tgwf/co2": "0.8.0",
14
14
  "aws-sdk": "2.882.0",
15
15
  "axe-core": "4.3.5",
16
- "browsertime": "14.21.1",
16
+ "browsertime": "15.0.0",
17
17
  "cli-color": "2.0.0",
18
18
  "coach-core": "7.1.0",
19
19
  "concurrent-queue": "7.0.2",
@@ -1059,11 +1059,6 @@
1059
1059
  "@types/babel-types": "*"
1060
1060
  }
1061
1061
  },
1062
- "node_modules/@types/node": {
1063
- "version": "16.11.6",
1064
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.6.tgz",
1065
- "integrity": "sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="
1066
- },
1067
1062
  "node_modules/abbrev": {
1068
1063
  "version": "1.1.1",
1069
1064
  "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
@@ -1465,9 +1460,9 @@
1465
1460
  }
1466
1461
  },
1467
1462
  "node_modules/browsertime": {
1468
- "version": "14.21.1",
1469
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.21.1.tgz",
1470
- "integrity": "sha512-vcLSurIaxk7Qe3k1EtNRGFQzMZwQlzbdpN3n8VsE24g+bDhVcJ2M+EN6L+pZpbwlR6hJtIEntSA9oWugyHyD8A==",
1463
+ "version": "15.0.0",
1464
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-15.0.0.tgz",
1465
+ "integrity": "sha512-2Ysyzf+UCjgNeEpIU2+6xiqzaNhwe5ABu1UHPLXpZJVDFUCrub+bzr71sw2IeGuFaKtEtOLbZgRZVB74/CS8oA==",
1471
1466
  "dependencies": {
1472
1467
  "@cypress/xvfb": "1.2.4",
1473
1468
  "@devicefarmer/adbkit": "2.11.3",
@@ -1492,8 +1487,7 @@
1492
1487
  "lodash.merge": "4.6.2",
1493
1488
  "lodash.pick": "4.4.0",
1494
1489
  "lodash.set": "4.3.2",
1495
- "selenium-webdriver": "4.1.0",
1496
- "speedline-core": "1.4.3",
1490
+ "selenium-webdriver": "4.1.1",
1497
1491
  "yargs": "17.2.1"
1498
1492
  },
1499
1493
  "bin": {
@@ -3743,11 +3737,6 @@
3743
3737
  "node": ">=0.9.0"
3744
3738
  }
3745
3739
  },
3746
- "node_modules/image-ssim": {
3747
- "version": "0.2.0",
3748
- "resolved": "https://registry.npmjs.org/image-ssim/-/image-ssim-0.2.0.tgz",
3749
- "integrity": "sha1-g7Qsei5uS4VQVHf+aRf128VkIOU="
3750
- },
3751
3740
  "node_modules/immediate": {
3752
3741
  "version": "3.0.6",
3753
3742
  "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
@@ -4069,7 +4058,8 @@
4069
4058
  "node_modules/jpeg-js": {
4070
4059
  "version": "0.4.2",
4071
4060
  "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.2.tgz",
4072
- "integrity": "sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw=="
4061
+ "integrity": "sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw==",
4062
+ "optional": true
4073
4063
  },
4074
4064
  "node_modules/js-stringify": {
4075
4065
  "version": "1.0.2",
@@ -6167,9 +6157,9 @@
6167
6157
  "integrity": "sha1-e45lYZCyKOgaZq6nSEgNgozS03o="
6168
6158
  },
6169
6159
  "node_modules/selenium-webdriver": {
6170
- "version": "4.1.0",
6171
- "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.0.tgz",
6172
- "integrity": "sha512-kUDH4N8WruYprTzvug4Pl73Th+WKb5YiLz8z/anOpHyUNUdM3UzrdTOxmSNaf9AczzBeY+qXihzku8D1lMaKOg==",
6160
+ "version": "4.1.1",
6161
+ "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.1.tgz",
6162
+ "integrity": "sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==",
6173
6163
  "dependencies": {
6174
6164
  "jszip": "^3.6.0",
6175
6165
  "tmp": "^0.2.1",
@@ -6374,19 +6364,6 @@
6374
6364
  "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=",
6375
6365
  "dev": true
6376
6366
  },
6377
- "node_modules/speedline-core": {
6378
- "version": "1.4.3",
6379
- "resolved": "https://registry.npmjs.org/speedline-core/-/speedline-core-1.4.3.tgz",
6380
- "integrity": "sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==",
6381
- "dependencies": {
6382
- "@types/node": "*",
6383
- "image-ssim": "^0.2.0",
6384
- "jpeg-js": "^0.4.1"
6385
- },
6386
- "engines": {
6387
- "node": ">=8.0"
6388
- }
6389
- },
6390
6367
  "node_modules/split": {
6391
6368
  "version": "0.3.3",
6392
6369
  "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz",
@@ -8300,11 +8277,6 @@
8300
8277
  "@types/babel-types": "*"
8301
8278
  }
8302
8279
  },
8303
- "@types/node": {
8304
- "version": "16.11.6",
8305
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.6.tgz",
8306
- "integrity": "sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="
8307
- },
8308
8280
  "abbrev": {
8309
8281
  "version": "1.1.1",
8310
8282
  "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
@@ -8631,9 +8603,9 @@
8631
8603
  }
8632
8604
  },
8633
8605
  "browsertime": {
8634
- "version": "14.21.1",
8635
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.21.1.tgz",
8636
- "integrity": "sha512-vcLSurIaxk7Qe3k1EtNRGFQzMZwQlzbdpN3n8VsE24g+bDhVcJ2M+EN6L+pZpbwlR6hJtIEntSA9oWugyHyD8A==",
8606
+ "version": "15.0.0",
8607
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-15.0.0.tgz",
8608
+ "integrity": "sha512-2Ysyzf+UCjgNeEpIU2+6xiqzaNhwe5ABu1UHPLXpZJVDFUCrub+bzr71sw2IeGuFaKtEtOLbZgRZVB74/CS8oA==",
8637
8609
  "requires": {
8638
8610
  "@cypress/xvfb": "1.2.4",
8639
8611
  "@devicefarmer/adbkit": "2.11.3",
@@ -8659,8 +8631,7 @@
8659
8631
  "lodash.merge": "4.6.2",
8660
8632
  "lodash.pick": "4.4.0",
8661
8633
  "lodash.set": "4.3.2",
8662
- "selenium-webdriver": "4.1.0",
8663
- "speedline-core": "1.4.3",
8634
+ "selenium-webdriver": "4.1.1",
8664
8635
  "yargs": "17.2.1"
8665
8636
  },
8666
8637
  "dependencies": {
@@ -10446,11 +10417,6 @@
10446
10417
  "integrity": "sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY=",
10447
10418
  "optional": true
10448
10419
  },
10449
- "image-ssim": {
10450
- "version": "0.2.0",
10451
- "resolved": "https://registry.npmjs.org/image-ssim/-/image-ssim-0.2.0.tgz",
10452
- "integrity": "sha1-g7Qsei5uS4VQVHf+aRf128VkIOU="
10453
- },
10454
10420
  "immediate": {
10455
10421
  "version": "3.0.6",
10456
10422
  "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
@@ -10696,7 +10662,8 @@
10696
10662
  "jpeg-js": {
10697
10663
  "version": "0.4.2",
10698
10664
  "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.2.tgz",
10699
- "integrity": "sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw=="
10665
+ "integrity": "sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw==",
10666
+ "optional": true
10700
10667
  },
10701
10668
  "js-stringify": {
10702
10669
  "version": "1.0.2",
@@ -12432,9 +12399,9 @@
12432
12399
  "integrity": "sha1-e45lYZCyKOgaZq6nSEgNgozS03o="
12433
12400
  },
12434
12401
  "selenium-webdriver": {
12435
- "version": "4.1.0",
12436
- "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.0.tgz",
12437
- "integrity": "sha512-kUDH4N8WruYprTzvug4Pl73Th+WKb5YiLz8z/anOpHyUNUdM3UzrdTOxmSNaf9AczzBeY+qXihzku8D1lMaKOg==",
12402
+ "version": "4.1.1",
12403
+ "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.1.tgz",
12404
+ "integrity": "sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==",
12438
12405
  "requires": {
12439
12406
  "jszip": "^3.6.0",
12440
12407
  "tmp": "^0.2.1",
@@ -12616,16 +12583,6 @@
12616
12583
  }
12617
12584
  }
12618
12585
  },
12619
- "speedline-core": {
12620
- "version": "1.4.3",
12621
- "resolved": "https://registry.npmjs.org/speedline-core/-/speedline-core-1.4.3.tgz",
12622
- "integrity": "sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==",
12623
- "requires": {
12624
- "@types/node": "*",
12625
- "image-ssim": "^0.2.0",
12626
- "jpeg-js": "^0.4.1"
12627
- }
12628
- },
12629
12586
  "split": {
12630
12587
  "version": "0.3.3",
12631
12588
  "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz",
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": "22.1.2",
7
+ "version": "23.0.0",
8
8
  "description": "Analyze the web performance of your site",
9
9
  "keywords": [
10
10
  "performance",
@@ -74,7 +74,7 @@
74
74
  "@tgwf/co2": "0.8.0",
75
75
  "aws-sdk": "2.882.0",
76
76
  "axe-core": "4.3.5",
77
- "browsertime": "14.21.1",
77
+ "browsertime": "15.0.0",
78
78
  "coach-core": "7.1.0",
79
79
  "cli-color": "2.0.0",
80
80
  "concurrent-queue": "7.0.2",