browsertime 26.0.0 → 26.0.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,9 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 26.0.1- 2025-12-10
4
+ ### Fixed
5
+ * Remove extra console.log entry :)
6
+
3
7
  ## 26.0.0 - 2025-12-10
4
8
  ### Breaking
5
9
  * 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.0.1",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",