Chrome 57 stable
This commit is contained in:
parent
8d2b24a7f6
commit
54754f7469
|
|
@ -4,6 +4,7 @@
|
|||
* Upgraded to PerfCascade 0.9.0 that is smarter when drawing time lines see [PerfCascade #160](https://github.com/micmro/PerfCascade/issues/160)
|
||||
* Make sure we show preURL and connectivty type for all result pages [#1493](https://github.com/sitespeedio/sitespeed.io/issues/1494)
|
||||
* Making regions for S3 work [#1486](https://github.com/sitespeedio/sitespeed.io/issues/1486)
|
||||
* Annotation timestamp and metrics timestamps are now in sync [#1497](https://github.com/sitespeedio/sitespeed.io/issues/1497)
|
||||
|
||||
## Added
|
||||
* You can now choose to load the HAR file using the fetch API instead of inlining it in the HTML file. Use --html.fetchHARFiles [#1484](https://github.com/sitespeedio/sitespeed.io/pull/1484)
|
||||
|
|
@ -12,7 +13,7 @@
|
|||
* Show SpeedIndex, FirstVisualChange and LastVisualChange in colums for pages (so you can sort them).
|
||||
* Send number of script tags, local storage size and number of cookies by default to Graphite.
|
||||
* Link VisualMetrics from the page summary selection so you easily can go from Grafana to a specific run [#1457](https://github.com/sitespeedio/sitespeed.io/issues/1457)
|
||||
* Updated to Firefox 52.0 in the Docker container.
|
||||
* Updated to Firefox 52.0 and stable Chrome 57 in the Docker container.
|
||||
|
||||
## 4.5.1 2017-03-01
|
||||
## Fixed
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM sitespeedio/webbrowsers:firefox-52.0-chrome-57.0-beta
|
||||
FROM sitespeedio/webbrowsers:firefox-52.0-chrome-57.0
|
||||
|
||||
ENV SITESPEED_IO_BROWSERTIME__XVFB true
|
||||
ENV SITESPEED_IO_BROWSERTIME__CONNECTIVITY__ENGINE tc
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
google-chrome-beta --version
|
||||
google-chrome --version
|
||||
firefox --version
|
||||
|
||||
# Here's a hack for fixing the problem with Chrome not starting in time
|
||||
|
|
|
|||
Loading…
Reference in New Issue