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.
- package/.github/workflows/crux-test.yml +1 -1
- package/.github/workflows/linux.yml +1 -1
- package/.github/workflows/safari.yml +1 -1
- package/.github/workflows/unittests.yml +1 -1
- package/.github/workflows/windows.yml +1 -1
- package/CHANGELOG.md +10 -0
- package/Dockerfile +1 -1
- package/Dockerfile-slim +1 -1
- package/lib/cli/cli.js +8 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
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
package/Dockerfile-slim
CHANGED
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',
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "
|
|
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": "
|
|
9
|
+
"version": "30.0.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "6.9.5",
|
package/package.json
CHANGED