browsertime 23.3.1 → 23.3.2
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,8 +1,12 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
-
## 23.3.
|
|
3
|
+
## 23.3.2 - 2024-11-21
|
|
4
4
|
### Fixed
|
|
5
|
-
* Disable
|
|
5
|
+
* Disable some calls back to home from Firefox [#2212](https://github.com/sitespeedio/browsertime/pull/2212).
|
|
6
|
+
|
|
7
|
+
## 23.3.1 - 2024-11-13
|
|
8
|
+
### Fixed
|
|
9
|
+
* Disable security warning in Firefox 132 [#2208](https://github.com/sitespeedio/browsertime/pull/2208) that fixes [#2207](https://github.com/sitespeedio/browsertime/issues/2207).
|
|
6
10
|
|
|
7
11
|
## 23.3.0 - 2024-11-12
|
|
8
12
|
### Added
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const defaultFirefoxPreferences = {
|
|
2
|
+
// https://searchfox.org/mozilla-central/source/testing/profiles/common/user.js
|
|
2
3
|
// Common preferences file used by both unittest and perf harnesses.
|
|
3
4
|
'app.update.checkInstallTime': false,
|
|
4
5
|
'app.update.disabledForTesting': true,
|
|
@@ -179,5 +180,20 @@ export const defaultFirefoxPreferences = {
|
|
|
179
180
|
'network.captive-portal-service.enabled': false,
|
|
180
181
|
'network.connectivity-service.enabled': false,
|
|
181
182
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1930110
|
|
182
|
-
'security.sandbox.warn_unprivileged_namespaces': false
|
|
183
|
+
'security.sandbox.warn_unprivileged_namespaces': false,
|
|
184
|
+
|
|
185
|
+
// No need to delay wakelock releasing for testing
|
|
186
|
+
'media.wakelock.audio.delay-releasing.ms': 0,
|
|
187
|
+
'geo.provider.network.compare.url': '',
|
|
188
|
+
'browser.region.network.url': '',
|
|
189
|
+
// Don't pull Top Sites content from the network
|
|
190
|
+
'browser.topsites.contile.enabled': false,
|
|
191
|
+
// Don't pull weather data from the network
|
|
192
|
+
'browser.newtabpage.activity-stream.discoverystream.region-weather-config':
|
|
193
|
+
'',
|
|
194
|
+
// Don't pull wallpaper content from the network
|
|
195
|
+
'browser.newtabpage.activity-stream.newtabWallpapers.enabled': false,
|
|
196
|
+
'browser.newtabpage.activity-stream.newtabWallpapers.v2.enabled': false,
|
|
197
|
+
// Don't pull sponsored Top Sites content from the network
|
|
198
|
+
'browser.newtabpage.activity-stream.showSponsoredTopSites': false
|
|
183
199
|
};
|
package/package.json
CHANGED