browsertime 17.14.2 → 17.15.0
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 +10 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 17.15.0 - 2022-08-16
|
|
4
|
+
### Added
|
|
5
|
+
* Updated Chrome and Chromedriver to 116.
|
|
6
|
+
|
|
7
|
+
## 17.14.3 - 2022-08-16
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
* Updated to Selenium 4.11.1 [#1978](https://github.com/sitespeedio/browsertime/pull/1978).
|
|
11
|
+
* Updated Chrome and Chromedriver to minor versions.
|
|
12
|
+
|
|
3
13
|
## 17.14.2 - 2022-07-31
|
|
4
14
|
### Fixed
|
|
5
15
|
* The auto build of release Docker container was broken so no tagged containers was pushed.
|
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.
|
|
4
|
+
"version": "17.15.0",
|
|
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": "
|
|
10
|
+
"@sitespeed.io/chromedriver": "116.0.5845-96",
|
|
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.
|
|
32
|
+
"selenium-webdriver": "4.11.1",
|
|
33
33
|
"yargs": "17.7.2"
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|