browsertime 23.3.0 → 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,10 +1,18 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 23.3.2 - 2024-11-21
4
+ ### Fixed
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).
10
+
3
11
  ## 23.3.0 - 2024-11-12
4
12
  ### Added
5
13
  * Updated to Chrome and Chromedriver 131 [#2209](https://github.com/sitespeedio/browsertime/pull/2203)
6
14
  ### Fixed
7
- * Updated to ff-test-bidi-har-export to 0.0.17[#2204](https://github.com/sitespeedio/browsertime/pull/2204)
15
+ * Updated to ff-test-bidi-har-export to 0.0.17 [#2204](https://github.com/sitespeedio/browsertime/pull/2204)
8
16
 
9
17
  ## 23.2.0 - 2024-10-20
10
18
  ### 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,
@@ -177,5 +178,22 @@ export const defaultFirefoxPreferences = {
177
178
 
178
179
  // disable calls to detectportal.firefox.com
179
180
  'network.captive-portal-service.enabled': false,
180
- 'network.connectivity-service.enabled': false
181
+ 'network.connectivity-service.enabled': false,
182
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=1930110
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
181
199
  };
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": "23.3.0",
4
+ "version": "23.3.2",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",