new browsertime
This commit is contained in:
parent
94baee169b
commit
69955af6eb
|
|
@ -3,10 +3,12 @@
|
|||
## UNRELEASED
|
||||
### Fixed
|
||||
* Update example carbon.conf to disable tags by default and a better retention example [#3229](https://github.com/sitespeedio/sitespeed.io/pull/3229).
|
||||
* Updated to Browsertime 11.0.1.
|
||||
|
||||
### Added
|
||||
* Skip sending summary information to Graphite using `--graphite.skipSummary` [#3230](https://github.com/sitespeedio/sitespeed.io/pull/3230).
|
||||
* Collect third party cookie info and send it by default to data storage [#3231](https://github.com/sitespeedio/sitespeed.io/pull/3231).
|
||||
|
||||
## 16.1.0 - 2020-12-31
|
||||
### Added
|
||||
* Updated to latest (1.1.7-9) Graphite in the Docker compose file and disabled tags by default.
|
||||
|
|
|
|||
|
|
@ -817,6 +817,11 @@ module.exports.parseCommandLine = function parseCommandLine() {
|
|||
describe: 'To run Edge you need to supply the path to the msedgedriver',
|
||||
group: 'Edge'
|
||||
})
|
||||
.option('browsertime.edge.binaryPath', {
|
||||
alias: 'edge.binaryPath',
|
||||
describe: 'Path to custom Edge binary',
|
||||
group: 'Edge'
|
||||
})
|
||||
.option('browsertime.safari.ios', {
|
||||
alias: 'safari.ios',
|
||||
default: false,
|
||||
|
|
|
|||
|
|
@ -757,9 +757,9 @@
|
|||
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
|
||||
},
|
||||
"@types/node": {
|
||||
"version": "14.14.14",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.14.tgz",
|
||||
"integrity": "sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ=="
|
||||
"version": "14.14.20",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz",
|
||||
"integrity": "sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A=="
|
||||
},
|
||||
"abbrev": {
|
||||
"version": "1.1.1",
|
||||
|
|
@ -1104,9 +1104,9 @@
|
|||
}
|
||||
},
|
||||
"browsertime": {
|
||||
"version": "11.0.0",
|
||||
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-11.0.0.tgz",
|
||||
"integrity": "sha512-Xet8da2GUjZ1YGKWAjOEiRoZScst9DUPevEInfzCgqjWHrZXTxNVle5vvkYIgCmkFraVZaSoHiAOsj39OUzMDQ==",
|
||||
"version": "11.0.1",
|
||||
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-11.0.1.tgz",
|
||||
"integrity": "sha512-Q23Qs2T24Is7dVW3KPbJI2aa1LPS4gzlYASf3zrWDNoH9H8CEYDVZDEgbG799x0kT8AgZDyTGffHM9zCRGd6Mw==",
|
||||
"requires": {
|
||||
"@cypress/xvfb": "1.2.4",
|
||||
"@devicefarmer/adbkit": "2.11.3",
|
||||
|
|
@ -6883,9 +6883,9 @@
|
|||
}
|
||||
},
|
||||
"ws": {
|
||||
"version": "7.4.1",
|
||||
"resolved": "https://registry.npmjs.org/ws/-/ws-7.4.1.tgz",
|
||||
"integrity": "sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ=="
|
||||
"version": "7.4.2",
|
||||
"resolved": "https://registry.npmjs.org/ws/-/ws-7.4.2.tgz",
|
||||
"integrity": "sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA=="
|
||||
},
|
||||
"xdg-basedir": {
|
||||
"version": "4.0.0",
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
"@tgwf/co2": "0.6.1",
|
||||
"aws-sdk": "2.784.0",
|
||||
"axe-core": "4.1.1",
|
||||
"browsertime": "11.0.0",
|
||||
"browsertime": "11.0.1",
|
||||
"coach-core": "6.0.1",
|
||||
"cli-color": "2.0.0",
|
||||
"concurrent-queue": "7.0.2",
|
||||
|
|
|
|||
Loading…
Reference in New Issue