browsertime 16.6.0 → 16.8.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 16.8.1 - 2022-06-09
4
+ ### Fixed
5
+ * Fix for getting the MOZ log, thank you [Gregory Mierzwinski](https://github.com/gmierz) for PR [#1802](https://github.com/sitespeedio/browsertime/pull/1802).
6
+ * [Removed unused functionality of the Visual metrics portable script](https://github.com/sitespeedio/browsertime/pull/1751).
7
+ ## 16.8.0 - 2022-06-06
8
+ ### Added
9
+ * Add `--debug` mode. Debug mode will run your tests and open devtools in Chrome/Edge/Firefox on desktop and will stop after each iteration so you can inspect the page. You can add your own breakpoint in your script with the `breakpoint(name)` command. To continue after your breakpoint, add the following code in the developer console in your browser: `window.browsertime.pause=false;` [#1798](https://github.com/sitespeedio/browsertime/pull/1798).
10
+ * Use Selenium WebDriver 4.2.0 [#1801](https://github.com/sitespeedio/browsertime/pull/1801).
11
+ * Updated to Firefox 101, Edge 102, Chrome 102 in the Docker container.
12
+
13
+ ### Tech
14
+ * Added tests using NodeJS 18 [#1772](https://github.com/sitespeedio/browsertime/pull/1772).
15
+ ## 16.7.0 - 2022-05-20
16
+ ### Added
17
+ * Include last CPU long task in the HAR file so we can show when it happens [#1793](https://github.com/sitespeedio/browsertime/pull/1793).
18
+ * Inlclude TTFB and INP in the Google Web Vital namespace [#1792](https://github.com/sitespeedio/browsertime/pull/1792).
3
19
  ## 16.6.0 - 2022-05-20
4
20
  ### Added
5
21
  * Implemented experimental Interaction to next paint that's useful if you test user journeys [#1791](https://github.com/sitespeedio/browsertime/pull/1791).
@@ -43,6 +43,9 @@ async function preWarmServer(urls, options) {
43
43
  }
44
44
 
45
45
  async function run(urls, options) {
46
+ if (options.debug) {
47
+ log.info('Running Browsertime in debug mode.');
48
+ }
46
49
  try {
47
50
  if (!options.resultDir) {
48
51
  let dir = 'browsertime-results';