browsertime 23.2.0 → 23.3.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 +7 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 23.3.0 - 2024-11-12
|
|
4
|
+
### Added
|
|
5
|
+
* Updated to Chrome and Chromedriver 131 [#2209](https://github.com/sitespeedio/browsertime/pull/2203)
|
|
6
|
+
### Fixed
|
|
7
|
+
* Updated to ff-test-bidi-har-export to 0.0.17[#2204](https://github.com/sitespeedio/browsertime/pull/2204)
|
|
8
|
+
|
|
3
9
|
## 23.2.0 - 2024-10-20
|
|
4
10
|
### Added
|
|
5
11
|
* Updated to Chrome and Chromedriver 130 [#2192](https://github.com/sitespeedio/browsertime/pull/2192)
|
|
@@ -2821,7 +2827,7 @@ We have worked a lot to make Browsertime 3.0 the best version so far. Read the [
|
|
|
2821
2827
|
* We have removed the use of Bluebird Promises and now uses async/await and native Promises.
|
|
2822
2828
|
* In some cases we leaked Bluebird promises, this is changed to native promises.
|
|
2823
2829
|
* Running the engine took a promise that eventually became the scripts. Now you need to run with the scripts directly (no promises) to simplify the flow.
|
|
2824
|
-
|
|
2830
|
+
3
|
|
2825
2831
|
## Added
|
|
2826
2832
|
|
|
2827
2833
|
* We updated the browsers in the Docker container to Chrome 66 and latest Firefox 61 beta.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "23.
|
|
4
|
+
"version": "23.3.0",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@cypress/xvfb": "1.2.4",
|
|
10
10
|
"@devicefarmer/adbkit": "3.2.6",
|
|
11
|
-
"@sitespeed.io/chromedriver": "
|
|
11
|
+
"@sitespeed.io/chromedriver": "131.0.6778-69",
|
|
12
12
|
"@sitespeed.io/edgedriver": "126.0.2592-102",
|
|
13
13
|
"@sitespeed.io/geckodriver": "0.35.0-1",
|
|
14
14
|
"@sitespeed.io/throttle": "5.0.1",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dayjs": "1.11.13",
|
|
20
20
|
"execa": "9.3.1",
|
|
21
21
|
"fast-stats": "0.0.7",
|
|
22
|
-
"ff-test-bidi-har-export": "0.0.
|
|
22
|
+
"ff-test-bidi-har-export": "0.0.17",
|
|
23
23
|
"find-up": "7.0.0",
|
|
24
24
|
"get-port": "7.1.0",
|
|
25
25
|
"hasbin": "1.2.3",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"lodash.merge": "4.6.2",
|
|
31
31
|
"lodash.pick": "4.4.0",
|
|
32
32
|
"lodash.set": "4.3.2",
|
|
33
|
-
"selenium-webdriver": "4.
|
|
33
|
+
"selenium-webdriver": "4.26.0",
|
|
34
34
|
"usb-power-profiling": "1.4.0",
|
|
35
35
|
"yargs": "17.7.2"
|
|
36
36
|
},
|