browsertime 17.14.1 → 17.14.3
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 +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 17.14.3 - 2022-08-16
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
* Updated to Selenium 4.11.1 [#1978](https://github.com/sitespeedio/browsertime/pull/1978).
|
|
7
|
+
* Updated Chrome and Chromedriver to minor versions.
|
|
8
|
+
|
|
9
|
+
## 17.14.2 - 2022-07-31
|
|
10
|
+
### Fixed
|
|
11
|
+
* The auto build of release Docker container was broken so no tagged containers was pushed.
|
|
12
|
+
|
|
3
13
|
## 17.14.1 - 2022-07-31
|
|
4
14
|
|
|
5
15
|
### Fixed
|
|
6
16
|
* Default jimp resize didn't handle large values (2000) when running in Docker AMD on a ARM machine so changing to another algorithm (HERMITE) [#1977](https://github.com/sitespeedio/browsertime/pull/1977).
|
|
7
17
|
|
|
18
|
+
* Update: chrome-har, dayjs, execa, chrome-remote-interface and jimp [#1976](https://github.com/sitespeedio/browsertime/pull/1976).
|
|
19
|
+
|
|
8
20
|
## 17.14.0 - 2022-07-24
|
|
9
21
|
|
|
10
22
|
### Added
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "17.14.
|
|
4
|
+
"version": "17.14.3",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
@@ -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": {
|