browsertime 23.3.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,10 +1,14 @@
|
|
|
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
|
+
|
|
3
7
|
## 23.3.0 - 2024-11-12
|
|
4
8
|
### Added
|
|
5
9
|
* Updated to Chrome and Chromedriver 131 [#2209](https://github.com/sitespeedio/browsertime/pull/2203)
|
|
6
10
|
### Fixed
|
|
7
|
-
* Updated to ff-test-bidi-har-export to 0.0.17[#2204](https://github.com/sitespeedio/browsertime/pull/2204)
|
|
11
|
+
* Updated to ff-test-bidi-har-export to 0.0.17 [#2204](https://github.com/sitespeedio/browsertime/pull/2204)
|
|
8
12
|
|
|
9
13
|
## 23.2.0 - 2024-10-20
|
|
10
14
|
### Added
|
|
@@ -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