sitespeed.io 29.9.0 → 30.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.
@@ -14,7 +14,7 @@ jobs:
14
14
  - name: Use Node.js
15
15
  uses: actions/setup-node@v3
16
16
  with:
17
- node-version: '18.x'
17
+ node-version: '20.x'
18
18
  - name: Install sitespeed.io
19
19
  run: npm ci
20
20
  - name: Run tests with CruX
@@ -14,7 +14,7 @@ jobs:
14
14
  - name: Use Node.js
15
15
  uses: actions/setup-node@v3
16
16
  with:
17
- node-version: '18.x'
17
+ node-version: '20.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@v3
16
16
  with:
17
- node-version: '18.x'
17
+ node-version: '20.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: [16.x, 18.x, 20.x]
14
+ node-version: [18.x, 20.x]
15
15
  steps:
16
16
  - uses: actions/checkout@v3
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@v3
16
16
  with:
17
- node-version: '18.x'
17
+ node-version: '20.x'
18
18
  - name: Install sitespeed.io
19
19
  run: npm ci
20
20
  env:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+
4
+ ## 30.0.0 - 2023-10-25
5
+ ### Breaking changes
6
+ * Drop support for NodeJS 16 (security ended in September).
7
+
8
+ ### Added
9
+ * The Docker container now uses NodeJS 20.
10
+ * Updated to Firefox 119 and Edge 118 in the Docker container.
11
+ * Updated the base container to use latest tagged Ubuntu 22.04.
12
+
3
13
  ## 29.9.0 - 2023-10-23
4
14
  ### Added
5
15
  * Updated Browsertime to 17.18.0:
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM sitespeedio/webbrowsers:chrome-118.0-firefox-118.0-edge-117.0
1
+ FROM sitespeedio/webbrowsers:chrome-118.0-firefox-119.0-edge-118.0
2
2
 
3
3
  ARG TARGETPLATFORM=linux/amd64
4
4
 
package/Dockerfile-slim CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:18.12.1-bullseye-slim
1
+ FROM node:20.8.1-bullseye-slim
2
2
 
3
3
  ARG TARGETPLATFORM=linux/amd64
4
4
 
package/lib/cli/cli.js CHANGED
@@ -387,6 +387,14 @@ export async function parseCommandLine() {
387
387
  'The time in ms to wait for running the page complete check for the first time. Use this when you have a pageLoadStrategy set to none',
388
388
  group: 'Browser'
389
389
  })
390
+ .option('browsertime.pageCompleteCheckNetworkIdle', {
391
+ alias: 'pageCompleteCheckNetworkIdle',
392
+ type: 'boolean',
393
+ default: false,
394
+ describe:
395
+ 'Use the network log instead of running JavaScript to decide when to end the test. This will wait for 5 seconds of no network activity before it ends the test. This can be used with Chrome/Edge and Firefox.',
396
+ group: 'Browser'
397
+ })
390
398
  .option('browsertime.pageLoadStrategy', {
391
399
  alias: 'pageLoadStrategy',
392
400
  type: 'string',
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "29.9.0",
3
+ "version": "30.0.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "29.9.0",
9
+ "version": "30.0.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@google-cloud/storage": "6.9.5",
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": "29.9.0",
8
+ "version": "30.0.0",
9
9
  "description": "Analyze the web performance of your site",
10
10
  "keywords": [
11
11
  "performance",