browsertime 26.0.0 → 26.1.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 26.1.0- 2025-12-11
4
+ ### Added
5
+ * Firefox 146 in the Docker container [#2351](https://github.com/sitespeedio/browsertime/pull/2351).
6
+ * Chrone 143 in the Docker container [#2350](https://github.com/sitespeedio/browsertime/pull/2350).
7
+
8
+ ### Fixed
9
+ * Make sure the user in the Docker container has the correct user rights [#2349](https://github.com/sitespeedio/browsertime/pull/2349).
10
+
11
+ ## 26.0.1- 2025-12-10
12
+ ### Fixed
13
+ * Remove extra console.log entry :)
14
+
3
15
  ## 26.0.0 - 2025-12-10
4
16
  ### Breaking
5
17
  * We removed support for setting the compression level for png screenshots, see the added section why.
@@ -34,7 +34,6 @@ export async function savePng(
34
34
  const buffer = await image
35
35
  .scaleToFit({ w: config.maxSize, h: config.maxSize })
36
36
  .getBuffer('image/png');
37
- console.log('3');
38
37
 
39
38
  return storageManager.writeData(
40
39
  `${name}.png`,
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": "26.0.0",
4
+ "version": "26.1.0",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",