lighthouse 12.3.0-dev.20250211 → 12.3.0-dev.20250213

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.
@@ -76,6 +76,7 @@ class InspectorIssues extends BaseGatherer {
76
76
  lowTextContrastIssue: [],
77
77
  mixedContentIssue: [],
78
78
  navigatorUserAgentIssue: [],
79
+ partitioningBlobURLIssue: [],
79
80
  propertyRuleIssue: [],
80
81
  quirksModeIssue: [],
81
82
  cookieIssue: [],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "12.3.0-dev.20250211",
4
+ "version": "12.3.0-dev.20250213",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {
@@ -188,7 +188,7 @@
188
188
  "chrome-launcher": "^1.1.2",
189
189
  "configstore": "^5.0.1",
190
190
  "csp_evaluator": "1.1.1",
191
- "devtools-protocol": "0.0.1402036",
191
+ "devtools-protocol": "0.0.1419081",
192
192
  "enquirer": "^2.3.6",
193
193
  "http-link-header": "^1.1.1",
194
194
  "intl-messageformat": "^10.5.3",
@@ -212,8 +212,8 @@
212
212
  "yargs-parser": "^21.0.0"
213
213
  },
214
214
  "resolutions": {
215
- "puppeteer/**/devtools-protocol": "0.0.1402036",
216
- "puppeteer-core/**/devtools-protocol": "0.0.1402036"
215
+ "puppeteer/**/devtools-protocol": "0.0.1419081",
216
+ "puppeteer-core/**/devtools-protocol": "0.0.1419081"
217
217
  },
218
218
  "repository": "GoogleChrome/lighthouse",
219
219
  "keywords": [
@@ -48,6 +48,7 @@ Array [
48
48
  "lowTextContrastIssueDetails",
49
49
  "mixedContentIssueDetails",
50
50
  "navigatorUserAgentIssueDetails",
51
+ "partitioningBlobURLIssueDetails",
51
52
  "propertyRuleIssueDetails",
52
53
  "quirksModeIssueDetails",
53
54
  "selectElementAccessibilityIssueDetails",
@@ -541,6 +541,7 @@ declare module Artifacts {
541
541
  lowTextContrastIssue: Crdp.Audits.LowTextContrastIssueDetails[];
542
542
  mixedContentIssue: Crdp.Audits.MixedContentIssueDetails[];
543
543
  navigatorUserAgentIssue: Crdp.Audits.NavigatorUserAgentIssueDetails[];
544
+ partitioningBlobURLIssue: Crdp.Audits.PartitioningBlobURLIssueDetails[];
544
545
  propertyRuleIssue: Crdp.Audits.PropertyRuleIssueDetails[],
545
546
  quirksModeIssue: Crdp.Audits.QuirksModeIssueDetails[];
546
547
  cookieIssue: Crdp.Audits.CookieIssueDetails[];