lighthouse 11.7.0-dev.20240324 → 11.7.0-dev.20240325

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.
@@ -634,7 +634,7 @@ class NetworkRequest {
634
634
  /^content-encoding$/i,
635
635
  /^x-content-encoding-over-network$/i,
636
636
  ];
637
- const compressionTypes = ['gzip', 'br', 'deflate'];
637
+ const compressionTypes = ['gzip', 'br', 'deflate', 'zstd'];
638
638
  return record.responseHeaders.some(header =>
639
639
  patterns.some(p => header.name.match(p)) && compressionTypes.includes(header.value)
640
640
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "11.7.0-dev.20240324",
4
+ "version": "11.7.0-dev.20240325",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {