browsertime 23.2.0 → 23.3.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,15 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 23.3.0 - 2024-11-13
|
|
4
|
+
### Fixed
|
|
5
|
+
* Disable security warning in Firefxo 132 [#2208](https://github.com/sitespeedio/browsertime/pull/2208) that fixes [#2207](https://github.com/sitespeedio/browsertime/issues/2207).
|
|
6
|
+
|
|
7
|
+
## 23.3.0 - 2024-11-12
|
|
8
|
+
### Added
|
|
9
|
+
* Updated to Chrome and Chromedriver 131 [#2209](https://github.com/sitespeedio/browsertime/pull/2203)
|
|
10
|
+
### Fixed
|
|
11
|
+
* Updated to ff-test-bidi-har-export to 0.0.17 [#2204](https://github.com/sitespeedio/browsertime/pull/2204)
|
|
12
|
+
|
|
3
13
|
## 23.2.0 - 2024-10-20
|
|
4
14
|
### Added
|
|
5
15
|
* Updated to Chrome and Chromedriver 130 [#2192](https://github.com/sitespeedio/browsertime/pull/2192)
|
|
@@ -2821,7 +2831,7 @@ We have worked a lot to make Browsertime 3.0 the best version so far. Read the [
|
|
|
2821
2831
|
* We have removed the use of Bluebird Promises and now uses async/await and native Promises.
|
|
2822
2832
|
* In some cases we leaked Bluebird promises, this is changed to native promises.
|
|
2823
2833
|
* 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
|
-
|
|
2834
|
+
3
|
|
2825
2835
|
## Added
|
|
2826
2836
|
|
|
2827
2837
|
* We updated the browsers in the Docker container to Chrome 66 and latest Firefox 61 beta.
|
|
@@ -177,5 +177,7 @@ export const defaultFirefoxPreferences = {
|
|
|
177
177
|
|
|
178
178
|
// disable calls to detectportal.firefox.com
|
|
179
179
|
'network.captive-portal-service.enabled': false,
|
|
180
|
-
'network.connectivity-service.enabled': false
|
|
180
|
+
'network.connectivity-service.enabled': false,
|
|
181
|
+
// https://bugzilla.mozilla.org/show_bug.cgi?id=1930110
|
|
182
|
+
'security.sandbox.warn_unprivileged_namespaces': false
|
|
181
183
|
};
|
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.1",
|
|
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
|
},
|