new browsertime
This commit is contained in:
parent
4f81955c01
commit
b853c8e4cb
|
|
@ -6,6 +6,11 @@
|
|||
|
||||
* You can include the script your using the HTML output with ```--html.showScript``` [#2298](https://github.com/sitespeedio/sitespeed.io/pull/2298). Be careful though with passwords or other secrets.
|
||||
|
||||
### Fixed
|
||||
* Upgraded to Browsertime [4.2.6](https://github.com/sitespeedio/browsertime/blob/master/CHANGELOG.md#426-2019-02-08) with two fixes:
|
||||
* Command set value by id was broken, it used to set the value to the id [#761](https://github.com/sitespeedio/browsertime/pull/761).
|
||||
* I've missed that for some URLs (as in this [login](https://github.com/sitespeedio/sitespeed.io/issues/2290#issuecomment-461601990) you could have an alias for an URL but the URL was actually slightly different. For example, you login to a site and the login step redirect to a URL and for that URL one value of a GET parameter differs. So with this fix we lock the alias tyo one specific URL. If your URL change and you use an alias, the first variation of the URL will be used [#763](https://github.com/sitespeedio/browsertime/pull/763).
|
||||
|
||||
### Fixed
|
||||
* Spelling for the script-reader message (was scrtipt-reader).
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
4.2.5
|
||||
4.2.6
|
||||
|
|
@ -2955,9 +2955,9 @@
|
|||
"integrity": "sha1-81HTKWnTL6XXpVZxVCY9korjvR8="
|
||||
},
|
||||
"browsertime": {
|
||||
"version": "4.2.5",
|
||||
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-4.2.5.tgz",
|
||||
"integrity": "sha512-0msaGwKSJX1uT2108EJMfC+ov2rJWH8vvbyZTVOmFGkCYZLQJY2xs/E8ft5gzIHQl81AB/uLIEwzBWqBl7G3LQ==",
|
||||
"version": "4.2.6",
|
||||
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-4.2.6.tgz",
|
||||
"integrity": "sha512-nBw/vfn/Ap39kcwYqAy0LX+BryIE8h40GAnrF0LQvgFMKJ8cOies/xSQy3zno8nN8mgQfGjZnt2XV5b+7ltCVg==",
|
||||
"requires": {
|
||||
"@cypress/xvfb": "1.2.4",
|
||||
"@sitespeed.io/chromedriver": "2.45.0",
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@
|
|||
"main": "./lib/sitespeed.js",
|
||||
"dependencies": {
|
||||
"aws-sdk": "2.361.0",
|
||||
"browsertime": "4.2.5",
|
||||
"browsertime": "4.2.6",
|
||||
"cli-color": "1.4.0",
|
||||
"concurrent-queue": "7.0.2",
|
||||
"dayjs-ext": "2.2.0",
|
||||
|
|
|
|||
Loading…
Reference in New Issue