sitespeed.io 21.6.0 → 22.1.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.
@@ -0,0 +1,65 @@
1
+ name: Bug Report
2
+ description: File a bug report
3
+ labels: [bug]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: Thanks for reporting issues back to sitespeed.io!
8
+ - type: checkboxes
9
+ id: Reproducable
10
+ attributes:
11
+ label: Have you read the documentation?
12
+ description: Please double check that this question hasn't already answered in the [documentation](https://www.sitespeed.io/documentation/sitespeed.io/) (use the `Search`). Also please read [how to make a good bug report](https://www.sitespeed.io/documentation/sitespeed.io/bug-report/) and check [how to debug your script](https://www.sitespeed.io/documentation/sitespeed.io/scripting/#debug).
13
+ options:
14
+ - label: Yes, I've read the [how to make a reproducable bug guide](https://www.sitespeed.io/documentation/sitespeed.io/bug-report/)
15
+ required: true
16
+ - label: Yes, I've read the [how to debug my script guide](https://www.sitespeed.io/documentation/sitespeed.io/scripting/#debug)
17
+ required: false
18
+ - type: input
19
+ id: url
20
+ attributes:
21
+ label: URL
22
+ description: What URL did you run sitespeed.io on? If you can't share your URL please make a minimial repro to a public location (e.g. https://glitch.com/, http://jsbin.com/, etc)
23
+ placeholder: https://example.com
24
+ validations:
25
+ required: true
26
+ - type: textarea
27
+ id: whaw
28
+ attributes:
29
+ label: What are you trying to accomplish
30
+ description: A brief description of what you tried to do and what went wrong.
31
+ validations:
32
+ required: true
33
+ - type: dropdown
34
+ id: browser
35
+ attributes:
36
+ label: What browser did you use?
37
+ description: Extra bonus if you try the issue in multiple browsers
38
+ multiple: true
39
+ options:
40
+ - Chrome
41
+ - Firefox
42
+ - Edge
43
+ - Safari Mac OS
44
+ - Safari iOS
45
+ - Chrome Android
46
+ - Firefox Android
47
+ - Other
48
+ validations:
49
+ required: true
50
+ - type: textarea
51
+ id: how-to-reproduce
52
+ attributes:
53
+ label: How to reproduce
54
+ description: Please copy and paste how you run so we can reproduce. This will be automatically formatted into code, so no need for backticks. Remember to follow the [how to make a good bug report guide](https://www.sitespeed.io/documentation/sitespeed.io/bug-report/)!
55
+ render: shell
56
+ validations:
57
+ required: true
58
+ - type: textarea
59
+ id: logs
60
+ attributes:
61
+ label: Relevant log output
62
+ description: Please copy and paste any relevant log output (please DO NOT take a screenshot of the log output). This will be automatically formatted into code, so no need for backticks.
63
+ render: shell
64
+ validations:
65
+ required: false
@@ -0,0 +1,15 @@
1
+ name: Question
2
+ description: Ask a question about sitespeed.io
3
+ labels: [question]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Ask a question about sitespeed.io
9
+ - type: textarea
10
+ id: your-question
11
+ attributes:
12
+ label: Your question
13
+ description: Please double check that this question hasn't already answered in the [documentation](https://www.sitespeed.io/documentation/sitespeed.io/) (use the `Search`) or [old GitHub issues](https://github.com/sitespeedio/sitespeed.io/issues?q=is%3Aissue+is%3Aclosed). You can also ask questions in the [sitespeed.io Slack channel](https://sitespeedio.herokuapp.com/). And if your question is more like a bug, please [use the bug report form](https://github.com/sitespeedio/sitespeed.io/issues/new?assignees=&labels=bug&template=BUG_REPORT.yml)
14
+ validations:
15
+ required: true
@@ -0,0 +1,28 @@
1
+ name: Build autobuild container that runs tests on dashboard.sitespeed.io
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ jobs:
7
+ docker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ -
11
+ name: Set up QEMU
12
+ uses: docker/setup-qemu-action@v1
13
+ -
14
+ name: Set up Docker Buildx
15
+ uses: docker/setup-buildx-action@v1
16
+ -
17
+ name: Login to DockerHub
18
+ uses: docker/login-action@v1
19
+ with:
20
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
21
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
22
+ -
23
+ name: Build and push sitespeed.io
24
+ uses: docker/build-push-action@v2
25
+ with:
26
+ platforms: linux/amd64
27
+ push: true
28
+ tags: sitespeedio/sitespeed.io-autobuild:main
@@ -0,0 +1,61 @@
1
+ name: Build Docker containers on new tag
2
+ on:
3
+ push:
4
+ tags:
5
+ - 'v*.*.*'
6
+ jobs:
7
+ docker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ -
11
+ name: Set up QEMU
12
+ uses: docker/setup-qemu-action@v1
13
+ -
14
+ name: Set up Docker Buildx
15
+ uses: docker/setup-buildx-action@v1
16
+ -
17
+ name: Login to DockerHub
18
+ uses: docker/login-action@v1
19
+ with:
20
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
21
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
22
+ -
23
+ name: Get the tag
24
+ id: tag
25
+ uses: dawidd6/action-get-tag@v1
26
+ with:
27
+ strip_v: true
28
+ -
29
+ name: Build and push sitespeed.io
30
+ uses: docker/build-push-action@v2
31
+ with:
32
+ platforms: linux/amd64,linux/arm64
33
+ push: true
34
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}},sitespeedio/sitespeed.io:latest
35
+ -
36
+ name: Build and push sitespeed.io-slim
37
+ uses: docker/build-push-action@v2
38
+ with:
39
+ platforms: linux/amd64,linux/arm64
40
+ file: ./Dockerfile-slim
41
+ build-args: version=${{steps.tag.outputs.tag}}
42
+ push: true
43
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-slim
44
+ -
45
+ name: Build and push sitespeed.io+1
46
+ uses: docker/build-push-action@v2
47
+ with:
48
+ platforms: linux/amd64,linux/arm64
49
+ file: ./docker/Dockerfile-plus1
50
+ build-args: version=${{steps.tag.outputs.tag}}
51
+ push: true
52
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-plus1
53
+ -
54
+ name: Build and push sitespeed.io+wpt
55
+ uses: docker/build-push-action@v2
56
+ with:
57
+ platforms: linux/amd64,linux/arm64
58
+ file: ./docker/Dockerfile-webpagetest
59
+ build-args: version=${{steps.tag.outputs.tag}}
60
+ push: true
61
+ tags: sitespeedio/sitespeed.io:${{steps.tag.outputs.tag}}-webpagetest
@@ -14,7 +14,8 @@ jobs:
14
14
 
15
15
  - name: Build an image from Dockerfile
16
16
  run: |
17
- docker build -t docker.io/sitespeedio/sitespeed.io:${{ github.sha }} .
17
+ docker buildx install
18
+ docker buildx build --load --platform linux/amd64 -t docker.io/sitespeedio/sitespeed.io:${{ github.sha }} .
18
19
 
19
20
  - name: Run Trivy vulnerability scanner
20
21
  uses: aquasecurity/trivy-action@master
@@ -24,4 +25,4 @@ jobs:
24
25
  exit-code: '1'
25
26
  ignore-unfixed: true
26
27
  vuln-type: 'os,library'
27
- severity: 'CRITICAL,HIGH'
28
+ severity: 'CRITICAL'
@@ -13,8 +13,9 @@ jobs:
13
13
  - uses: actions/checkout@v2
14
14
  - name: Build Docker containers
15
15
  run: |
16
- docker build -t sitespeedio/sitespeed.io .
17
- docker build -t sitespeedio/sitespeed.io:slim --file Dockerfile-slim .
16
+ docker buildx install
17
+ docker buildx build --load --platform linux/amd64 -t sitespeedio/sitespeed.io .
18
+ docker buildx build --load --platform linux/amd64 -t sitespeedio/sitespeed.io:slim --file Dockerfile-slim .
18
19
  - name: Run test on default container for Chrome
19
20
  run: docker run --rm sitespeedio/sitespeed.io https://www.sitespeed.io -n 1 -b chrome
20
21
  - name: Run test on default container for Firefox
@@ -14,7 +14,7 @@ jobs:
14
14
  - name: Use Node.js
15
15
  uses: actions/setup-node@v1
16
16
  with:
17
- node-version: '14.x'
17
+ node-version: '16.x'
18
18
  - name: Install sitespeed.io
19
19
  run: npm ci
20
20
  - name: Install Chrome
@@ -14,7 +14,7 @@ jobs:
14
14
  - name: Use Node.js
15
15
  uses: actions/setup-node@v1
16
16
  with:
17
- node-version: '14.x'
17
+ node-version: '16.x'
18
18
  - name: Install dependencies
19
19
  run: |
20
20
  sudo safaridriver --enable
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- node-version: [12.x, 14.x, 16.x]
14
+ node-version: [14.x, 16.x]
15
15
  steps:
16
16
  - uses: actions/checkout@v2
17
17
  - name: Use Node.js ${{ matrix.node-version }}
@@ -14,7 +14,7 @@ jobs:
14
14
  - name: Use Node.js
15
15
  uses: actions/setup-node@v1
16
16
  with:
17
- node-version: '14.x'
17
+ node-version: '16.x'
18
18
  - name: Install sitespeed.io
19
19
  run: npm ci
20
20
  env:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 22.1.1 - 2022-02-08
4
+ ### Fixed
5
+ * The slim container with only Firefox was broken in last release. It's now re-released with Firefox 96 and Firefox 97 coming soon.
6
+ ## 22.1.0 - 2022-02-08
7
+ ### Added
8
+ * Upgraded to latest Browsertime with Egdedriver 98.
9
+ * Upgraded to Edge 98 and Firefox 97 in the (amd64) Docker containers.
10
+ ## 22.0.0 - 2022-02-07
11
+
12
+ ### Breaking changes
13
+ * If you use the Lightouse plugin there's breaking changes:
14
+
15
+ In the new version we drop support for the following:
16
+ * Running multiple runs with Lighthouse.
17
+ * Using scripts to login the user (or whatever you need before you run your tests)
18
+ It's a couple of reasons why I remove those features:
19
+ * I been looking for a maintainer of the Lighthouse plugin for +1 year and I haven't found one. For me to be able to maintain it I want the plugin to be as simple as possible.
20
+ * I deeply regret merging the PR for adding multiple runs for Lighthouse. That PR goes against everything I know about measuring performance. Lighthouse is not built for getting correct performance metrics, it's built to help (Chrome) developers to get insights how they make the page "faster". Lets stick to the basics and keep it possible to get those recommendations from Lighthouse.
21
+ * Maybe someday Lighthouse will have support for user journeys, lets wait until that is officially supported and then I can check if it could be used in the plugin.
22
+
23
+ With the new release we also break how you configure Lighthouse. People has had problem with that since day 1. With the new version we support two new ways to configure Lighthouse:
24
+ - By configuration JSON file. `--lighthouse.config config.js`
25
+ - By Lightouse flags file. `--lighthouse.flags flag.json`
26
+
27
+ If you don't need to configure Lightouse you can use the default settings both for desktop and mobile. If you run without any settings, the plugin will use desktop settings. If you run with `--mobile`, `--android` or `--ios` the mobile settings will be used.
28
+
29
+ ### Added
30
+ * Build Docker containers for both amd64 and arm64 to make containers work on Mac M1. The arm container contains Firefox and Chromium. Thank you [whichfinder](https://github.com/whichfinder) and [Radu Micu](https://github.com/radum) for the help! Fixed in PR [#3554](https://github.com/sitespeedio/sitespeed.io/pull/3554).
31
+ * When plugins is loaded, there's a new extra last step where we try to load the plugin as a globally installed npm module [#3546](https://github.com/sitespeedio/sitespeed.io/pull/3546).
32
+
33
+ ### Fixed
34
+ * Fix so that we do not display the same 3rd party cookie multiple times [#3545](https://github.com/sitespeedio/sitespeed.io/pull/3545).
35
+ * Updated Coach Core that includes the latest version of third party web and PageXray that find more fonts without mime type.
36
+
37
+ ## 21.6.1 - 2022-01-24
38
+ ### Fixed
39
+ * Updated to [Browsertime 14.18.1](https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#14181---2022-01-24) that makes the summary metric log message use median (instead of mean) and change a log message level to debug.
3
40
  ## 21.6.0 - 2022-01-24
4
41
  ### Added
5
42
  * Updated to Edge stable release in the Docker container.
package/Dockerfile CHANGED
@@ -1,9 +1,11 @@
1
- FROM sitespeedio/webbrowsers:chrome-97.0-firefox-94.0-edge-97.0-b
1
+ FROM sitespeedio/webbrowsers:chrome-98.0-firefox-97.0-edge-98.0
2
+
3
+ ARG TARGETPLATFORM=linux/amd64
2
4
 
3
5
  ENV SITESPEED_IO_BROWSERTIME__XVFB true
4
6
  ENV SITESPEED_IO_BROWSERTIME__DOCKER true
5
7
 
6
- COPY docker/webpagereplay/wpr /usr/local/bin/
8
+ COPY docker/webpagereplay/$TARGETPLATFORM/wpr /usr/local/bin/
7
9
  COPY docker/webpagereplay/wpr_cert.pem /webpagereplay/certs/
8
10
  COPY docker/webpagereplay/wpr_key.pem /webpagereplay/certs/
9
11
  COPY docker/webpagereplay/deterministic.js /webpagereplay/scripts/deterministic.js
package/Dockerfile-slim CHANGED
@@ -1,4 +1,6 @@
1
- FROM node:14.17.6-buster-slim
1
+ FROM node:16.13.2-bullseye-slim
2
+
3
+ ARG TARGETPLATFORM=linux/amd64
2
4
 
3
5
  ENV SITESPEED_IO_BROWSERTIME__DOCKER true
4
6
  ENV SITESPEED_IO_BROWSERTIME__VIDEO false
@@ -6,22 +8,26 @@ ENV SITESPEED_IO_BROWSERTIME__BROWSER firefox
6
8
  ENV SITESPEED_IO_BROWSERTIME__VISUAL_METRICS false
7
9
  ENV SITESPEED_IO_BROWSERTIME__HEADLESS true
8
10
 
9
- ENV FIREFOX_VERSION 94.0
10
-
11
11
  ENV PATH="/usr/local/bin:${PATH}"
12
12
 
13
13
  RUN buildDeps='wget bzip2' && apt-get update && apt -y install $buildDeps && \
14
14
  # Download and unpack the correct Firefox version
15
- wget https://ftp.mozilla.org/pub/firefox/releases/${FIREFOX_VERSION}/linux-x86_64/en-US/firefox-${FIREFOX_VERSION}.tar.bz2 && \
16
- tar -xjf firefox-${FIREFOX_VERSION}.tar.bz2 && \
17
- rm firefox-${FIREFOX_VERSION}.tar.bz2 && \
18
- mv firefox /opt/ && \
19
- ln -s /opt/firefox/firefox /usr/local/bin/firefox && \
20
- # Install dependencies for Firefox
21
- apt-get install -y --no-install-recommends --no-install-suggests libxt6 \
22
- `apt-cache depends firefox-esr | awk '/Depends:/{print$2}'` && \
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
+
23
29
  # iproute2 = tc
24
- apt -y install tcpdump iproute2 ca-certificates sudo --no-install-recommends --no-install-suggests && \
30
+ RUN apt -y install tcpdump iproute2 ca-certificates sudo --no-install-recommends --no-install-suggests && \
25
31
  # Cleanup
26
32
  apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $toolDeps \
27
33
  && rm -rf /var/lib/apt/lists/* /tmp/*
@@ -30,7 +36,7 @@ RUN buildDeps='wget bzip2' && apt-get update && apt -y install $buildDeps && \
30
36
  RUN mkdir -p /usr/src/app
31
37
  WORKDIR /usr/src/app
32
38
  COPY . /usr/src/app
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
39
+ RUN CHROMEDRIVER_SKIP_DOWNLOAD=true EGDEDRIVER_SKIP_DOWNLOAD=true npm install --production && npm cache clean --force && npm uninstall npm -g
34
40
  WORKDIR /usr/src/app
35
41
  COPY docker/scripts/start-slim.sh /start.sh
36
42
 
package/README.md CHANGED
@@ -21,13 +21,13 @@
21
21
  Before we start telling you all about sitespeed.io you should just try it out:
22
22
 
23
23
  ```bash
24
- $ docker run --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io https://www.sitespeed.io/
24
+ docker run --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io https://www.sitespeed.io/
25
25
  ```
26
26
 
27
27
  Or using npm (you need Chrome, Firefox, Edge or Safari installed or Chrome/Firefox on Android)
28
28
 
29
29
  ```bash
30
- $ npm i -g sitespeed.io && sitespeed.io https://www.sitespeed.io/
30
+ npm i -g sitespeed.io && sitespeed.io https://www.sitespeed.io/
31
31
  ```
32
32
 
33
33
  Ok, now you have tried it, let us tell you more about sitespeed.io. We think of a complete web performance tool as having three key capabilities:
@@ -74,23 +74,23 @@ When you as user choose to test a URL, this is what happens on a high level:
74
74
  Using Docker (use latest Docker):
75
75
 
76
76
  ```bash
77
- $ docker run --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io https://www.sitespeed.io/
77
+ docker run --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io https://www.sitespeed.io/
78
78
  ```
79
79
 
80
80
  Or install using npm:
81
81
 
82
82
  ```bash
83
- $ npm i -g sitespeed.io
83
+ npm i -g sitespeed.io
84
84
  ```
85
85
 
86
86
  Or clone the repo and test the latest changes:
87
87
 
88
88
  ```bash
89
- $ git clone https://github.com/sitespeedio/sitespeed.io.git
90
- $ cd sitespeed.io
91
- $ npm install
92
- $ bin/sitespeed.js --help
93
- $ bin/sitespeed.js https://www.sitespeed.io/
89
+ git clone https://github.com/sitespeedio/sitespeed.io.git
90
+ cd sitespeed.io
91
+ npm install
92
+ bin/sitespeed.js --help
93
+ bin/sitespeed.js https://www.sitespeed.io/
94
94
  ```
95
95
 
96
96
  ## More details
@@ -66,9 +66,13 @@ module.exports = {
66
66
  try {
67
67
  plugins.push(require(path.resolve(process.cwd(), name)));
68
68
  } catch (error) {
69
- console.error("Couldn't load plugin %s: %s", name, err); // eslint-disable-line no-console
70
- // if it fails here, let it fail hard
71
- throw error;
69
+ try {
70
+ plugins.push(require(name));
71
+ } catch (error) {
72
+ console.error("Couldn't load plugin %s: %s", name, err); // eslint-disable-line no-console
73
+ // if it fails here, let it fail hard
74
+ throw error;
75
+ }
72
76
  }
73
77
  }
74
78
  }
@@ -8,7 +8,8 @@ if pagexray.cookieNamesThirdParties.length > 0
8
8
  .responsive
9
9
  table(data-sortable, id='thirdPartyCookies')
10
10
  +rowHeading(['Cookie name', 'Domain'])
11
- each cookie in pagexray.cookieNamesThirdParties
11
+ - let cookies = pagexray.cookieNamesThirdParties.filter((v,i,a)=>a.findIndex(t=>(t.name===v.name && t.domain === v.domain))===i)
12
+ each cookie in cookies
12
13
  tr
13
14
  td(data-title='Name') #{cookie.name}
14
15
  td.url(data-title='Domain') #{cookie.domain}
@@ -1,21 +1,21 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "21.6.0",
3
+ "version": "22.1.1",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "21.6.0",
9
+ "version": "22.1.1",
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.18.0",
16
+ "browsertime": "14.21.0",
17
17
  "cli-color": "2.0.0",
18
- "coach-core": "7.0.0",
18
+ "coach-core": "7.1.0",
19
19
  "concurrent-queue": "7.0.2",
20
20
  "dayjs": "1.10.4",
21
21
  "fast-crc32c": "2.0.0",
@@ -910,9 +910,9 @@
910
910
  "optional": true
911
911
  },
912
912
  "node_modules/@sitespeed.io/chromedriver": {
913
- "version": "97.0.4692-7b",
914
- "resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-97.0.4692-7b.tgz",
915
- "integrity": "sha512-h2P8Ln/qOu90LA8E89NRmrxWgbIYbm/ri4aRu0m/ItGVWVSwsFlxSRLe+6spBfmxBRtmxgAz2ws6wS6C/Jugkg==",
913
+ "version": "98.0.4758-48b",
914
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-98.0.4758-48b.tgz",
915
+ "integrity": "sha512-zj2k4xSKXpGDl29rSrfD9LfQtB6P29nM/EfGvFFIydfYqJ+aQzGKfPHwgrJv/1Lcw9IX9ICSnypg3IoavVCDwA==",
916
916
  "hasInstallScript": true,
917
917
  "dependencies": {
918
918
  "node-downloader-helper": "1.0.19",
@@ -920,9 +920,9 @@
920
920
  }
921
921
  },
922
922
  "node_modules/@sitespeed.io/edgedriver": {
923
- "version": "95.0.1020-30",
924
- "resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-95.0.1020-30.tgz",
925
- "integrity": "sha512-5hXxNCtbX/SeG6nsyXg4QWIEKacxBJTO5T43rUXlTrUlecFfvHNhTVY5PE2bwpKcdPQ168Vp0S/+g55QJi9s/Q==",
923
+ "version": "98.0.1108-43",
924
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-98.0.1108-43.tgz",
925
+ "integrity": "sha512-QCj6L98CE42DvTXheQCaede3Ple/KXpjL0YghhXcwN+rD03T9/50Wy5PPeNt1UGVSUTc+DAdx0lY1n4U0hWpAg==",
926
926
  "hasInstallScript": true,
927
927
  "dependencies": {
928
928
  "node-downloader-helper": "1.0.18",
@@ -938,9 +938,9 @@
938
938
  }
939
939
  },
940
940
  "node_modules/@sitespeed.io/geckodriver": {
941
- "version": "0.29.1-3",
942
- "resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.29.1-3.tgz",
943
- "integrity": "sha512-qHYtvH/81lPcgzFQB2qObp9M8bMIrc7O8TWm05SVfiGUKKy4Kku0huoa/IB9e0ksrrRFYtm9GQT6JF+bANZPKA==",
941
+ "version": "0.30.0",
942
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.30.0.tgz",
943
+ "integrity": "sha512-UT/A1XXQkN0tXHw9ibVLLrhP45OKPfW/d2zIOjIPiQ/Hk/7L7BvtOcBZpjH4GBMqIoEADRd8U7l8i6U6NUFeOw==",
944
944
  "hasInstallScript": true,
945
945
  "dependencies": {
946
946
  "node-downloader-helper": "1.0.18",
@@ -1465,15 +1465,15 @@
1465
1465
  }
1466
1466
  },
1467
1467
  "node_modules/browsertime": {
1468
- "version": "14.18.0",
1469
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.18.0.tgz",
1470
- "integrity": "sha512-qsM5ymoSxwlTFOoQ/3naMvX1UZrzvy2jz02HCKsjRFBPGLyKy68KPK2bUMHCB+X7AKsFuIKxftoGpThGGx3iUQ==",
1468
+ "version": "14.21.0",
1469
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.21.0.tgz",
1470
+ "integrity": "sha512-m7kGoehzNmargpEgHYbV5gggBWU+f+8gr2N+4M04dU10/y9ZsQF9mct1QaPE6GNZWpqy77HQFcR1PwQy8pFVqg==",
1471
1471
  "dependencies": {
1472
1472
  "@cypress/xvfb": "1.2.4",
1473
1473
  "@devicefarmer/adbkit": "2.11.3",
1474
- "@sitespeed.io/chromedriver": "97.0.4692-7b",
1475
- "@sitespeed.io/edgedriver": "95.0.1020-30",
1476
- "@sitespeed.io/geckodriver": "0.29.1-3",
1474
+ "@sitespeed.io/chromedriver": "98.0.4758-48b",
1475
+ "@sitespeed.io/edgedriver": "98.0.1108-43",
1476
+ "@sitespeed.io/geckodriver": "0.30.0",
1477
1477
  "@sitespeed.io/throttle": "3.0.0",
1478
1478
  "@sitespeed.io/tracium": "0.3.3",
1479
1479
  "btoa": "1.2.1",
@@ -1877,17 +1877,17 @@
1877
1877
  }
1878
1878
  },
1879
1879
  "node_modules/coach-core": {
1880
- "version": "7.0.0",
1881
- "resolved": "https://registry.npmjs.org/coach-core/-/coach-core-7.0.0.tgz",
1882
- "integrity": "sha512-sRCeWcuSAPdi8S79qP5PTyCLXYKfNWH2SFB7eq6K5919wnLGZOGogU/psj7nOVL3/0yQLRgoUJivLicp16XpiA==",
1880
+ "version": "7.1.0",
1881
+ "resolved": "https://registry.npmjs.org/coach-core/-/coach-core-7.1.0.tgz",
1882
+ "integrity": "sha512-mxi/773IEU+FEyLHK6wyzJIh6aajKJcYB/kC+jmptgHbthNDmMjU37f0m3QGh6ybEJnPRrDgKlgBa3kHrZWfNA==",
1883
1883
  "dependencies": {
1884
1884
  "filter-files": "0.4.0",
1885
1885
  "json-stable-stringify": "1.0.1",
1886
1886
  "lodash.groupby": "4.6.0",
1887
1887
  "lodash.merge": "4.6.2",
1888
1888
  "lodash.sortby": "4.7.0",
1889
- "pagexray": "4.3.1",
1890
- "third-party-web": "0.12.6",
1889
+ "pagexray": "4.4.0",
1890
+ "third-party-web": "0.13.0",
1891
1891
  "wappalyzer-core": "6.6.0"
1892
1892
  },
1893
1893
  "engines": {
@@ -5280,9 +5280,9 @@
5280
5280
  }
5281
5281
  },
5282
5282
  "node_modules/pagexray": {
5283
- "version": "4.3.1",
5284
- "resolved": "https://registry.npmjs.org/pagexray/-/pagexray-4.3.1.tgz",
5285
- "integrity": "sha512-eVLrFwubv0gtggEy5HfunZwuluuapr/yd9oZK3fYLVLvBB6XqR77cxngS/nyPeRE/NjINX7gbSgwZd/75HKx+w==",
5283
+ "version": "4.4.0",
5284
+ "resolved": "https://registry.npmjs.org/pagexray/-/pagexray-4.4.0.tgz",
5285
+ "integrity": "sha512-Ew6e/Zpi+pIsyll9JbsGSgMy1v4ndIFbpppnJf8Xmqi5lz1fMwVBb869ZFoUg6nAD0gZ+QWmctqGxGnsLkgzxg==",
5286
5286
  "dependencies": {
5287
5287
  "minimist": "1.2.5"
5288
5288
  },
@@ -6809,9 +6809,9 @@
6809
6809
  "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ="
6810
6810
  },
6811
6811
  "node_modules/third-party-web": {
6812
- "version": "0.12.6",
6813
- "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.12.6.tgz",
6814
- "integrity": "sha512-g01h+wXG7UsPOPOEGRnz8bvRr7XWYckI0afFaX6JPkAeuHbS1RUKmiZ5Y56em3CNAMu8iz1rxJEpkfjbAuVkMQ=="
6812
+ "version": "0.13.0",
6813
+ "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.13.0.tgz",
6814
+ "integrity": "sha512-JkGRUoRWCjv7OH+VwM4VSxvx+85WXRWkvhrrP+UuQR+NCfwClx4yUjjZrqJ2aLPdyF7PVRivr65+umMLkRSrig=="
6815
6815
  },
6816
6816
  "node_modules/through": {
6817
6817
  "version": "2.3.8",
@@ -8180,18 +8180,18 @@
8180
8180
  }
8181
8181
  },
8182
8182
  "@sitespeed.io/chromedriver": {
8183
- "version": "97.0.4692-7b",
8184
- "resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-97.0.4692-7b.tgz",
8185
- "integrity": "sha512-h2P8Ln/qOu90LA8E89NRmrxWgbIYbm/ri4aRu0m/ItGVWVSwsFlxSRLe+6spBfmxBRtmxgAz2ws6wS6C/Jugkg==",
8183
+ "version": "98.0.4758-48b",
8184
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-98.0.4758-48b.tgz",
8185
+ "integrity": "sha512-zj2k4xSKXpGDl29rSrfD9LfQtB6P29nM/EfGvFFIydfYqJ+aQzGKfPHwgrJv/1Lcw9IX9ICSnypg3IoavVCDwA==",
8186
8186
  "requires": {
8187
8187
  "node-downloader-helper": "1.0.19",
8188
8188
  "node-stream-zip": "1.15.0"
8189
8189
  }
8190
8190
  },
8191
8191
  "@sitespeed.io/edgedriver": {
8192
- "version": "95.0.1020-30",
8193
- "resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-95.0.1020-30.tgz",
8194
- "integrity": "sha512-5hXxNCtbX/SeG6nsyXg4QWIEKacxBJTO5T43rUXlTrUlecFfvHNhTVY5PE2bwpKcdPQ168Vp0S/+g55QJi9s/Q==",
8192
+ "version": "98.0.1108-43",
8193
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-98.0.1108-43.tgz",
8194
+ "integrity": "sha512-QCj6L98CE42DvTXheQCaede3Ple/KXpjL0YghhXcwN+rD03T9/50Wy5PPeNt1UGVSUTc+DAdx0lY1n4U0hWpAg==",
8195
8195
  "requires": {
8196
8196
  "node-downloader-helper": "1.0.18",
8197
8197
  "node-stream-zip": "1.15.0"
@@ -8205,9 +8205,9 @@
8205
8205
  }
8206
8206
  },
8207
8207
  "@sitespeed.io/geckodriver": {
8208
- "version": "0.29.1-3",
8209
- "resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.29.1-3.tgz",
8210
- "integrity": "sha512-qHYtvH/81lPcgzFQB2qObp9M8bMIrc7O8TWm05SVfiGUKKy4Kku0huoa/IB9e0ksrrRFYtm9GQT6JF+bANZPKA==",
8208
+ "version": "0.30.0",
8209
+ "resolved": "https://registry.npmjs.org/@sitespeed.io/geckodriver/-/geckodriver-0.30.0.tgz",
8210
+ "integrity": "sha512-UT/A1XXQkN0tXHw9ibVLLrhP45OKPfW/d2zIOjIPiQ/Hk/7L7BvtOcBZpjH4GBMqIoEADRd8U7l8i6U6NUFeOw==",
8211
8211
  "requires": {
8212
8212
  "node-downloader-helper": "1.0.18",
8213
8213
  "node-stream-zip": "1.14.0",
@@ -8631,15 +8631,15 @@
8631
8631
  }
8632
8632
  },
8633
8633
  "browsertime": {
8634
- "version": "14.18.0",
8635
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.18.0.tgz",
8636
- "integrity": "sha512-qsM5ymoSxwlTFOoQ/3naMvX1UZrzvy2jz02HCKsjRFBPGLyKy68KPK2bUMHCB+X7AKsFuIKxftoGpThGGx3iUQ==",
8634
+ "version": "14.21.0",
8635
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-14.21.0.tgz",
8636
+ "integrity": "sha512-m7kGoehzNmargpEgHYbV5gggBWU+f+8gr2N+4M04dU10/y9ZsQF9mct1QaPE6GNZWpqy77HQFcR1PwQy8pFVqg==",
8637
8637
  "requires": {
8638
8638
  "@cypress/xvfb": "1.2.4",
8639
8639
  "@devicefarmer/adbkit": "2.11.3",
8640
- "@sitespeed.io/chromedriver": "97.0.4692-7b",
8641
- "@sitespeed.io/edgedriver": "95.0.1020-30",
8642
- "@sitespeed.io/geckodriver": "0.29.1-3",
8640
+ "@sitespeed.io/chromedriver": "98.0.4758-48b",
8641
+ "@sitespeed.io/edgedriver": "98.0.1108-43",
8642
+ "@sitespeed.io/geckodriver": "0.30.0",
8643
8643
  "@sitespeed.io/throttle": "3.0.0",
8644
8644
  "@sitespeed.io/tracium": "0.3.3",
8645
8645
  "btoa": "1.2.1",
@@ -8972,17 +8972,17 @@
8972
8972
  }
8973
8973
  },
8974
8974
  "coach-core": {
8975
- "version": "7.0.0",
8976
- "resolved": "https://registry.npmjs.org/coach-core/-/coach-core-7.0.0.tgz",
8977
- "integrity": "sha512-sRCeWcuSAPdi8S79qP5PTyCLXYKfNWH2SFB7eq6K5919wnLGZOGogU/psj7nOVL3/0yQLRgoUJivLicp16XpiA==",
8975
+ "version": "7.1.0",
8976
+ "resolved": "https://registry.npmjs.org/coach-core/-/coach-core-7.1.0.tgz",
8977
+ "integrity": "sha512-mxi/773IEU+FEyLHK6wyzJIh6aajKJcYB/kC+jmptgHbthNDmMjU37f0m3QGh6ybEJnPRrDgKlgBa3kHrZWfNA==",
8978
8978
  "requires": {
8979
8979
  "filter-files": "0.4.0",
8980
8980
  "json-stable-stringify": "1.0.1",
8981
8981
  "lodash.groupby": "4.6.0",
8982
8982
  "lodash.merge": "4.6.2",
8983
8983
  "lodash.sortby": "4.7.0",
8984
- "pagexray": "4.3.1",
8985
- "third-party-web": "0.12.6",
8984
+ "pagexray": "4.4.0",
8985
+ "third-party-web": "0.13.0",
8986
8986
  "wappalyzer-core": "6.6.0"
8987
8987
  }
8988
8988
  },
@@ -11682,9 +11682,9 @@
11682
11682
  "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
11683
11683
  },
11684
11684
  "pagexray": {
11685
- "version": "4.3.1",
11686
- "resolved": "https://registry.npmjs.org/pagexray/-/pagexray-4.3.1.tgz",
11687
- "integrity": "sha512-eVLrFwubv0gtggEy5HfunZwuluuapr/yd9oZK3fYLVLvBB6XqR77cxngS/nyPeRE/NjINX7gbSgwZd/75HKx+w==",
11685
+ "version": "4.4.0",
11686
+ "resolved": "https://registry.npmjs.org/pagexray/-/pagexray-4.4.0.tgz",
11687
+ "integrity": "sha512-Ew6e/Zpi+pIsyll9JbsGSgMy1v4ndIFbpppnJf8Xmqi5lz1fMwVBb869ZFoUg6nAD0gZ+QWmctqGxGnsLkgzxg==",
11688
11688
  "requires": {
11689
11689
  "minimist": "1.2.5"
11690
11690
  }
@@ -12947,9 +12947,9 @@
12947
12947
  "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ="
12948
12948
  },
12949
12949
  "third-party-web": {
12950
- "version": "0.12.6",
12951
- "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.12.6.tgz",
12952
- "integrity": "sha512-g01h+wXG7UsPOPOEGRnz8bvRr7XWYckI0afFaX6JPkAeuHbS1RUKmiZ5Y56em3CNAMu8iz1rxJEpkfjbAuVkMQ=="
12950
+ "version": "0.13.0",
12951
+ "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.13.0.tgz",
12952
+ "integrity": "sha512-JkGRUoRWCjv7OH+VwM4VSxvx+85WXRWkvhrrP+UuQR+NCfwClx4yUjjZrqJ2aLPdyF7PVRivr65+umMLkRSrig=="
12953
12953
  },
12954
12954
  "through": {
12955
12955
  "version": "2.3.8",
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": "21.6.0",
7
+ "version": "22.1.1",
8
8
  "description": "Analyze the web performance of your site",
9
9
  "keywords": [
10
10
  "performance",
@@ -74,8 +74,8 @@
74
74
  "@tgwf/co2": "0.8.0",
75
75
  "aws-sdk": "2.882.0",
76
76
  "axe-core": "4.3.5",
77
- "browsertime": "14.18.0",
78
- "coach-core": "7.0.0",
77
+ "browsertime": "14.21.0",
78
+ "coach-core": "7.1.0",
79
79
  "cli-color": "2.0.0",
80
80
  "concurrent-queue": "7.0.2",
81
81
  "dayjs": "1.10.4",
package/release.sh CHANGED
@@ -4,30 +4,12 @@ set -e
4
4
  # Remove the local sitespeed-result dir and node modules to start clean
5
5
  rm -fR sitespeed-result
6
6
 
7
- # Login early
8
- docker login
9
-
10
7
  # Super simple release script for sitespeed.io
11
8
  # Lets use it it for now and make it better over time :)
12
9
  # You need np for this to work
13
10
  # npm install --global np
14
11
  np $* --no-yarn --branch main
15
12
 
16
- PACKAGE_VERSION=$(node -e 'console.log(require("./package").version)')
17
-
18
- docker build --no-cache -t sitespeedio/sitespeed.io:$PACKAGE_VERSION -t sitespeedio/sitespeed.io:latest .
19
- docker push sitespeedio/sitespeed.io:$PACKAGE_VERSION
20
- docker push sitespeedio/sitespeed.io:latest
21
-
22
- docker build --no-cache -t sitespeedio/sitespeed.io:$PACKAGE_VERSION-slim --file Dockerfile-slim .
23
- docker push sitespeedio/sitespeed.io:$PACKAGE_VERSION-slim
24
-
25
- docker build -t sitespeedio/sitespeed.io:$PACKAGE_VERSION-plus1 --build-arg version=$PACKAGE_VERSION --file docker/Dockerfile-plus1 .
26
- docker push sitespeedio/sitespeed.io:$PACKAGE_VERSION-plus1
27
-
28
- docker build -t sitespeedio/sitespeed.io:$PACKAGE_VERSION-webpagetest --build-arg version=$PACKAGE_VERSION --file docker/Dockerfile-webpagetest .
29
- docker push sitespeedio/sitespeed.io:$PACKAGE_VERSION-webpagetest
30
-
31
13
  # Update to latest version in the docs
32
14
  bin/sitespeed.js --version | tr -d '\n' > docs/_includes/version/sitespeed.io.txt
33
15
 
@@ -1,9 +0,0 @@
1
-
2
- <!--
3
- Thanks for reporting issues back to sitespeed.io!
4
-
5
- Please read https://www.sitespeed.io/documentation/sitespeed.io/bug-report/ and create reproducable issues.
6
-
7
- Make sure you run the latest stable version, we move quite fast and fixes things.
8
-
9
- -->