browsertime 17.18.0 → 17.18.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,14 +1,19 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 17.18.1 - 2022-10-31
4
+ ### Fixed
5
+ * WebDriver 4.14.0
6
+ * Chromedriver 119.0.6045-59
3
7
 
4
8
  ## 17.18.0 - 2022-10-23
5
9
  ### Added
6
10
  * Updated to Chromedriver 119 [#2003](https://github.com/sitespeedio/browsertime/pull/2003). 119 works with both Chrome 118 and 119 so it fixes [#1197](https://github.com/sitespeedio/browsertime/issues/1997).
7
-
8
11
  * Add support for network idle method to know when to end a test that uses network logs. Uses Bidi for Firefox and CDP for Chrome to listen on network events to know when to end a test. By default 5 seconds idle network time ends a tests (you could have network responses that hasn't arrived yet) [#1960](https://github.com/sitespeedio/browsertime/pull/1960). Potentially this can help SPA users or users where the page uses iframes. You can try it out by adding `--pageCompleteCheckNetworkIdle` yo your command line. This is still some work in progress but feel free to try ut out.
12
+ * The resources script now collects number of resources served from the browser cashe for browser that supports that through the resource timing API [#1998](https://github.com/sitespeedio/browsertime/pull/1998)
9
13
 
10
14
  ### Fixed
11
15
  * Make sure timer always is cleared. There was case of where we do a rase beteween a promise and a timeout where the timeout timer wasn't cleared/removed [#2005](https://github.com/sitespeedio/browsertime/pull/2005).
16
+ * Better way to get the url when you use GeckoProfiler.stop for Firefox, thank you [Nazım Can Altınova](https://github.com/canova) for PR [#1999](https://github.com/sitespeedio/browsertime/pull/1999)
12
17
 
13
18
  ## 17.17.0 - 2022-10-11
14
19
  ### Added
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "browsertime",
3
3
  "description": "Get performance metrics from your web page using Browsertime.",
4
- "version": "17.18.0",
4
+ "version": "17.18.1",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "dependencies": {
8
8
  "@cypress/xvfb": "1.2.4",
9
9
  "@devicefarmer/adbkit": "2.11.3",
10
- "@sitespeed.io/chromedriver": "119.0.6045-21",
10
+ "@sitespeed.io/chromedriver": "119.0.6045-59",
11
11
  "@sitespeed.io/edgedriver": "115.0.1901-183",
12
12
  "@sitespeed.io/geckodriver": "0.33.0",
13
13
  "@sitespeed.io/throttle": "5.0.0",
@@ -29,7 +29,7 @@
29
29
  "lodash.merge": "4.6.2",
30
30
  "lodash.pick": "4.4.0",
31
31
  "lodash.set": "4.3.2",
32
- "selenium-webdriver": "4.12.0",
32
+ "selenium-webdriver": "4.14.0",
33
33
  "yargs": "17.7.2"
34
34
  },
35
35
  "optionalDependencies": {