lighthouse 12.8.2-dev.20251002 → 12.8.2-dev.20251003

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.
Files changed (64) hide show
  1. package/core/audits/insights/insight-audit.d.ts +2 -2
  2. package/core/audits/insights/insight-audit.js +5 -5
  3. package/core/audits/insights/third-parties-insight.js +1 -1
  4. package/core/audits/layout-shifts.js +1 -1
  5. package/core/computed/metrics/cumulative-layout-shift.js +2 -2
  6. package/core/computed/metrics/lantern-metric.js +3 -3
  7. package/core/computed/page-dependency-graph.js +1 -1
  8. package/core/computed/trace-engine-result.js +2 -2
  9. package/core/gather/driver/target-manager.d.ts +1 -1
  10. package/core/gather/driver.d.ts +1 -1
  11. package/core/gather/gatherers/trace-elements.d.ts +2 -2
  12. package/core/gather/gatherers/trace-elements.js +3 -3
  13. package/core/gather/session.d.ts +1 -1
  14. package/core/lib/bf-cache-strings.js +10 -9
  15. package/core/lib/deprecations-strings.js +4 -4
  16. package/package.json +9 -9
  17. package/shared/localization/locales/ar-XB.json +0 -9
  18. package/shared/localization/locales/ar.json +0 -9
  19. package/shared/localization/locales/bg.json +0 -9
  20. package/shared/localization/locales/ca.json +0 -9
  21. package/shared/localization/locales/cs.json +0 -9
  22. package/shared/localization/locales/da.json +0 -9
  23. package/shared/localization/locales/de.json +0 -9
  24. package/shared/localization/locales/el.json +0 -9
  25. package/shared/localization/locales/en-GB.json +0 -9
  26. package/shared/localization/locales/en-US.json +8 -8
  27. package/shared/localization/locales/en-XL.json +8 -8
  28. package/shared/localization/locales/es-419.json +0 -9
  29. package/shared/localization/locales/es.json +0 -9
  30. package/shared/localization/locales/fi.json +0 -9
  31. package/shared/localization/locales/fil.json +0 -9
  32. package/shared/localization/locales/fr.json +0 -9
  33. package/shared/localization/locales/he.json +0 -9
  34. package/shared/localization/locales/hi.json +0 -9
  35. package/shared/localization/locales/hr.json +4 -13
  36. package/shared/localization/locales/hu.json +0 -9
  37. package/shared/localization/locales/id.json +0 -9
  38. package/shared/localization/locales/it.json +0 -9
  39. package/shared/localization/locales/ja.json +0 -9
  40. package/shared/localization/locales/ko.json +0 -9
  41. package/shared/localization/locales/lt.json +0 -9
  42. package/shared/localization/locales/lv.json +0 -9
  43. package/shared/localization/locales/nl.json +0 -9
  44. package/shared/localization/locales/no.json +0 -9
  45. package/shared/localization/locales/pl.json +0 -9
  46. package/shared/localization/locales/pt-PT.json +0 -9
  47. package/shared/localization/locales/pt.json +0 -9
  48. package/shared/localization/locales/ro.json +0 -9
  49. package/shared/localization/locales/ru.json +0 -9
  50. package/shared/localization/locales/sk.json +0 -9
  51. package/shared/localization/locales/sl.json +0 -9
  52. package/shared/localization/locales/sr-Latn.json +0 -9
  53. package/shared/localization/locales/sr.json +0 -9
  54. package/shared/localization/locales/sv.json +0 -9
  55. package/shared/localization/locales/ta.json +0 -9
  56. package/shared/localization/locales/te.json +0 -9
  57. package/shared/localization/locales/th.json +0 -9
  58. package/shared/localization/locales/tr.json +0 -9
  59. package/shared/localization/locales/uk.json +0 -9
  60. package/shared/localization/locales/vi.json +0 -9
  61. package/shared/localization/locales/zh-HK.json +0 -9
  62. package/shared/localization/locales/zh-TW.json +0 -9
  63. package/shared/localization/locales/zh.json +0 -9
  64. package/types/artifacts.d.ts +1 -1
@@ -1,11 +1,11 @@
1
1
  export type CreateDetailsExtras = {
2
2
  insights: import("@paulirish/trace_engine/models/trace/insights/types.js").InsightSet;
3
- parsedTrace: LH.Artifacts.TraceEngineResult["parsedTrace"];
3
+ data: LH.Artifacts.TraceEngineResult["data"];
4
4
  };
5
5
  /**
6
6
  * @typedef CreateDetailsExtras
7
7
  * @property {import('@paulirish/trace_engine/models/trace/insights/types.js').InsightSet} insights
8
- * @property {LH.Artifacts.TraceEngineResult['parsedTrace']} parsedTrace
8
+ * @property {LH.Artifacts.TraceEngineResult['data']} data
9
9
  */
10
10
  /**
11
11
  * @param {LH.Artifacts} artifacts
@@ -16,7 +16,7 @@ const str_ = i18n.createIcuMessageFn(import.meta.url, {});
16
16
  /**
17
17
  * @param {LH.Artifacts} artifacts
18
18
  * @param {LH.Audit.Context} context
19
- * @return {Promise<{insights: import('@paulirish/trace_engine/models/trace/insights/types.js').InsightSet|undefined, parsedTrace: LH.Artifacts.TraceEngineResult['parsedTrace']}>}
19
+ * @return {Promise<{insights: import('@paulirish/trace_engine/models/trace/insights/types.js').InsightSet|undefined, data: LH.Artifacts.TraceEngineResult['data']}>}
20
20
  */
21
21
  async function getInsightSet(artifacts, context) {
22
22
  const settings = context.settings;
@@ -29,13 +29,13 @@ async function getInsightSet(artifacts, context) {
29
29
  const key = navigationId ?? NO_NAVIGATION;
30
30
  const insights = traceEngineResult.insights.get(key);
31
31
 
32
- return {insights, parsedTrace: traceEngineResult.parsedTrace};
32
+ return {insights, data: traceEngineResult.data};
33
33
  }
34
34
 
35
35
  /**
36
36
  * @typedef CreateDetailsExtras
37
37
  * @property {import('@paulirish/trace_engine/models/trace/insights/types.js').InsightSet} insights
38
- * @property {LH.Artifacts.TraceEngineResult['parsedTrace']} parsedTrace
38
+ * @property {LH.Artifacts.TraceEngineResult['data']} data
39
39
  */
40
40
 
41
41
  /**
@@ -47,7 +47,7 @@ async function getInsightSet(artifacts, context) {
47
47
  * @return {Promise<LH.Audit.Product>}
48
48
  */
49
49
  async function adaptInsightToAuditProduct(artifacts, context, insightName, createDetails) {
50
- const {insights, parsedTrace} = await getInsightSet(artifacts, context);
50
+ const {data, insights} = await getInsightSet(artifacts, context);
51
51
  if (!insights) {
52
52
  return {
53
53
  scoreDisplayMode: Audit.SCORING_MODES.NOT_APPLICABLE,
@@ -65,7 +65,7 @@ async function adaptInsightToAuditProduct(artifacts, context, insightName, creat
65
65
  }
66
66
 
67
67
  const cbResult = createDetails(insight, {
68
- parsedTrace,
68
+ data,
69
69
  insights,
70
70
  });
71
71
 
@@ -61,7 +61,7 @@ class ThirdPartiesInsight extends Audit {
61
61
  */
62
62
  static async audit(artifacts, context) {
63
63
  return adaptInsightToAuditProduct(artifacts, context, 'ThirdParties', (insight, extras) => {
64
- const urlSummaries = summarizeByURL(extras.parsedTrace, extras.insights.bounds);
64
+ const urlSummaries = summarizeByURL(extras.data, extras.insights.bounds);
65
65
 
66
66
  const thirdPartySummaries = insight.entitySummaries
67
67
  .filter(summary => summary.entity !== insight.firstPartyEntity || null)
@@ -62,7 +62,7 @@ class LayoutShifts extends Audit {
62
62
  const SourceMaps = artifacts.SourceMaps;
63
63
  const traceEngineResult =
64
64
  await TraceEngineResult.request({trace, settings, SourceMaps}, context);
65
- const clusters = traceEngineResult.parsedTrace.LayoutShifts.clusters ?? [];
65
+ const clusters = traceEngineResult.data.LayoutShifts.clusters ?? [];
66
66
  const {cumulativeLayoutShift: clsSavings, impactByNodeId} =
67
67
  await CumulativeLayoutShiftComputed.request(trace, context);
68
68
  const traceElements = artifacts.TraceElements
@@ -162,10 +162,10 @@ class CumulativeLayoutShift {
162
162
  await processor.parse(/** @type {import('@paulirish/trace_engine').Types.Events.Event[]} */ (
163
163
  events
164
164
  ), {});
165
- if (!processor.parsedTrace) {
165
+ if (!processor.data) {
166
166
  throw new Error('null trace engine result');
167
167
  }
168
- return processor.parsedTrace.LayoutShifts.sessionMaxScore;
168
+ return processor.data.LayoutShifts.sessionMaxScore;
169
169
  };
170
170
  const cumulativeLayoutShift = await run(allFrameShiftEvents.map(e => e.event));
171
171
  const cumulativeLayoutShiftMainFrame = await run(mainFrameShiftEvents.map(e => e.event));
@@ -38,15 +38,15 @@ async function getComputationDataParamsFromTrace(data, context) {
38
38
 
39
39
  const graph = await PageDependencyGraph.request({...data, fromTrace: true}, context);
40
40
  const traceEngineResult = await TraceEngineResult.request(data, context);
41
- const frameId = traceEngineResult.parsedTrace.Meta.mainFrameId;
41
+ const frameId = traceEngineResult.data.Meta.mainFrameId;
42
42
  const navigationId =
43
- traceEngineResult.parsedTrace.Meta.mainFrameNavigations[0].args.data?.navigationId;
43
+ traceEngineResult.data.Meta.mainFrameNavigations[0].args.data?.navigationId;
44
44
  if (!navigationId) {
45
45
  throw new Error(`Lantern metrics could not be calculated due to missing navigation id`);
46
46
  }
47
47
 
48
48
  const processedNavigation = Lantern.TraceEngineComputationData.createProcessedNavigation(
49
- traceEngineResult.parsedTrace, frameId, navigationId);
49
+ traceEngineResult.data, frameId, navigationId);
50
50
  const simulator = data.simulator || (await LoadSimulator.request(data, context));
51
51
 
52
52
  return {simulator, graph, processedNavigation};
@@ -27,7 +27,7 @@ class PageDependencyGraph {
27
27
  if (data.fromTrace) {
28
28
  const traceEngineResult =
29
29
  await TraceEngineResult.request({trace, settings, SourceMaps}, context);
30
- const parsedTrace = traceEngineResult.parsedTrace;
30
+ const parsedTrace = traceEngineResult.data;
31
31
  const requests =
32
32
  Lantern.TraceEngineComputationData.createNetworkRequests(trace, parsedTrace);
33
33
  const graph =
@@ -62,10 +62,10 @@ class TraceEngineResult {
62
62
  return new SDK.SourceMap(compiledUrl, mapUrl, sourceMap.map);
63
63
  },
64
64
  });
65
- if (!processor.parsedTrace) throw new Error('No data');
65
+ if (!processor.data) throw new Error('No data');
66
66
  if (!processor.insights) throw new Error('No insights');
67
67
  this.localizeInsights(processor.insights);
68
- return {parsedTrace: processor.parsedTrace, insights: processor.insights};
68
+ return {data: processor.data, insights: processor.insights};
69
69
  }
70
70
 
71
71
  /**
@@ -17,7 +17,7 @@ export class TargetManager extends TargetManager_base {
17
17
  /** @param {LH.Puppeteer.CDPSession} cdpSession */
18
18
  constructor(cdpSession: LH.Puppeteer.CDPSession);
19
19
  _enabled: boolean;
20
- _rootCdpSession: import("../../index.js").Puppeteer.CDPSession;
20
+ _rootCdpSession: import("puppeteer-core").CDPSession;
21
21
  _mainFrameId: string;
22
22
  /**
23
23
  * A map of target id to target/session information. Used to ensure unique
@@ -4,7 +4,7 @@ export class Driver implements LH.Gatherer.Driver {
4
4
  * @param {LH.Puppeteer.Page} page
5
5
  */
6
6
  constructor(page: LH.Puppeteer.Page);
7
- _page: import("../index.js").Puppeteer.Page;
7
+ _page: import("puppeteer-core").Page;
8
8
  /** @type {TargetManager|undefined} */
9
9
  _targetManager: TargetManager | undefined;
10
10
  /** @type {NetworkMonitor|undefined} */
@@ -32,11 +32,11 @@ declare class TraceElements extends BaseGatherer {
32
32
  * that may have caused the shift.
33
33
  *
34
34
  * @param {LH.Trace} trace
35
- * @param {LH.Artifacts.TraceEngineResult['parsedTrace']} traceEngineResult
35
+ * @param {LH.Artifacts.TraceEngineResult} traceEngineResult
36
36
  * @param {LH.Gatherer.Context} context
37
37
  * @return {Promise<Array<{nodeId: number}>>}
38
38
  */
39
- static getTopLayoutShifts(trace: LH.Trace, traceEngineResult: LH.Artifacts.TraceEngineResult["parsedTrace"], context: LH.Gatherer.Context): Promise<Array<{
39
+ static getTopLayoutShifts(trace: LH.Trace, traceEngineResult: LH.Artifacts.TraceEngineResult, context: LH.Gatherer.Context): Promise<Array<{
40
40
  nodeId: number;
41
41
  }>>;
42
42
  /**
@@ -178,13 +178,13 @@ class TraceElements extends BaseGatherer {
178
178
  * that may have caused the shift.
179
179
  *
180
180
  * @param {LH.Trace} trace
181
- * @param {LH.Artifacts.TraceEngineResult['parsedTrace']} traceEngineResult
181
+ * @param {LH.Artifacts.TraceEngineResult} traceEngineResult
182
182
  * @param {LH.Gatherer.Context} context
183
183
  * @return {Promise<Array<{nodeId: number}>>}
184
184
  */
185
185
  static async getTopLayoutShifts(trace, traceEngineResult, context) {
186
186
  const {impactByNodeId} = await CumulativeLayoutShift.request(trace, context);
187
- const clusters = traceEngineResult.LayoutShifts.clusters ?? [];
187
+ const clusters = traceEngineResult.data.LayoutShifts.clusters ?? [];
188
188
  const layoutShiftEvents =
189
189
  /** @type {import('../../lib/trace-engine.js').SaneSyntheticLayoutShift[]} */(
190
190
  clusters.flatMap(c => c.events)
@@ -374,7 +374,7 @@ class TraceElements extends BaseGatherer {
374
374
  traceEngineResult, navigationId);
375
375
  const lcpNodeData = await TraceElements.getLcpElement(trace, context);
376
376
  const shiftsData = await TraceElements.getTopLayoutShifts(
377
- trace, traceEngineResult.parsedTrace, context);
377
+ trace, traceEngineResult, context);
378
378
  const animatedElementData = await this.getAnimatedElements(mainThreadEvents);
379
379
  const responsivenessElementData = await TraceElements.getResponsivenessElement(trace, context);
380
380
 
@@ -6,7 +6,7 @@ export class ProtocolSession extends ProtocolSession_base implements LH.Gatherer
6
6
  * @param {LH.Puppeteer.CDPSession} cdpSession
7
7
  */
8
8
  constructor(cdpSession: LH.Puppeteer.CDPSession);
9
- _cdpSession: import("../index.js").Puppeteer.CDPSession;
9
+ _cdpSession: import("puppeteer-core").CDPSession;
10
10
  /** @type {LH.Crdp.Target.TargetInfo|undefined} */
11
11
  _targetInfo: LH.Crdp.Target.TargetInfo | undefined;
12
12
  /** @type {number|undefined} */
@@ -534,17 +534,17 @@ const UIStrings = {
534
534
  cookieDisabled:
535
535
  'Back/forward cache is disabled because cookies are disabled on a page that uses `Cache-Control: no-store`.',
536
536
  /**
537
- * @description Description text for not restored reason WebRTCSticky.
537
+ * @description Description text for not restored reason WebRTCUsedWithCCNS.
538
538
  */
539
- webRTCSticky: 'Back/forward cache is disabled because WebRTC has been used.',
539
+ webRTCUsedWithCCNS: 'Back/forward cache is disabled because WebRTC has been used.',
540
540
  /**
541
- * @description Description text for not restored reason WebTransportSticky.
541
+ * @description Description text for not restored reason WebTransportUsedWithCCNS.
542
542
  */
543
- webTransportSticky: 'Back/forward cache is disabled because WebTransport has been used.',
543
+ webTransportUsedWithCCNS: 'Back/forward cache is disabled because WebTransport has been used.',
544
544
  /**
545
- * @description Description text for not restored reason WebSocketSticky.
545
+ * @description Description text for not restored reason WebSocketUsedWithCCNS.
546
546
  */
547
- webSocketSticky: 'Back/forward cache is disabled because WebSocket has been used.',
547
+ webSocketUsedWithCCNS: 'Back/forward cache is disabled because WebSocket has been used.',
548
548
 
549
549
  };
550
550
 
@@ -567,6 +567,7 @@ const NotRestoredReasonDescription = {
567
567
  JavaScriptExecution: {name: str_(UIStrings.JavaScriptExecution)},
568
568
  RendererProcessKilled: {name: str_(UIStrings.rendererProcessKilled)},
569
569
  RendererProcessCrashed: {name: str_(UIStrings.rendererProcessCrashed)},
570
+ // kept for backwards compatibly
570
571
  GrantedMediaStreamAccess: {name: str_(UIStrings.grantedMediaStreamAccess)},
571
572
  CacheFlushed: {name: str_(UIStrings.cacheFlushed)},
572
573
  ServiceWorkerVersionActivation: {name: str_(UIStrings.serviceWorkerVersionActivation)},
@@ -691,9 +692,9 @@ const NotRestoredReasonDescription = {
691
692
  {name: str_(UIStrings.jsNetworkRequestReceivedCacheControlNoStoreResource)},
692
693
  IndexedDBEvent: {name: str_(UIStrings.indexedDBEvent)},
693
694
  CookieDisabled: {name: str_(UIStrings.cookieDisabled)},
694
- WebRTCSticky: {name: str_(UIStrings.webRTCSticky)},
695
- WebTransportSticky: {name: str_(UIStrings.webTransportSticky)},
696
- WebSocketSticky: {name: str_(UIStrings.webSocketSticky)},
695
+ WebRTCUsedWithCCNS: {name: str_(UIStrings.webRTCUsedWithCCNS)},
696
+ WebTransportUsedWithCCNS: {name: str_(UIStrings.webTransportUsedWithCCNS)},
697
+ WebSocketUsedWithCCNS: {name: str_(UIStrings.webSocketUsedWithCCNS)},
697
698
  HTTPAuthRequired: {name: ('HTTPAuthRequired')},
698
699
  CookieFlushed: {name: ('CookieFlushed')},
699
700
  SmartCard: {name: ('SmartCard')},
@@ -1,6 +1,6 @@
1
1
  // auto-generated by build/build-cdt-strings.js
2
2
  /* eslint-disable */
3
- // Copyright 2025 The Chromium Authors. All rights reserved.
3
+ // Copyright 2025 The Chromium Authors
4
4
  // Use of this source code is governed by a BSD-style license that can be
5
5
  // found in the LICENSE file.
6
6
 
@@ -63,11 +63,11 @@ export const UIStrings = {
63
63
  /**
64
64
  * @description Warning displayed to developers when the Geolocation API is used from an insecure origin (one that isn't localhost or doesn't use HTTPS) to notify them that this use is deprecated.
65
65
  */
66
- GeolocationInsecureOriginDeprecatedNotRemoved: "`getCurrentPosition()` and `watchPosition()` are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details.",
66
+ GeolocationInsecureOriginDeprecatedNotRemoved: "`getCurrentPosition()` and `watchPosition()` are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://www.chromium.org/Home/chromium-security/deprecating-powerful-features-on-insecure-origins/ for more details.",
67
67
  /**
68
68
  * @description This warning occurs when the `getUserMedia()` API is invoked on an insecure (e.g., HTTP) site. This is only permitted on secure sites (e.g., HTTPS).
69
69
  */
70
- GetUserMediaInsecureOrigin: "`getUserMedia()` no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details.",
70
+ GetUserMediaInsecureOrigin: "`getUserMedia()` no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://www.chromium.org/Home/chromium-security/deprecating-powerful-features-on-insecure-origins/ for more details.",
71
71
  /**
72
72
  * @description A deprecation warning shown to developers in the DevTools Issues tab when code tries to use the deprecated hostCandidate field, guiding developers to use the equivalent information in the .address and .port fields instead.
73
73
  */
@@ -107,7 +107,7 @@ export const UIStrings = {
107
107
  /**
108
108
  * @description Warning displayed to developers when the Notification API is used from an insecure origin (one that isn't localhost or doesn't use HTTPS) to notify them that this use is no longer supported.
109
109
  */
110
- NotificationInsecureOrigin: "The Notification API may no longer be used from insecure origins. You should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details.",
110
+ NotificationInsecureOrigin: "The Notification API may no longer be used from insecure origins. You should consider switching your application to a secure origin, such as HTTPS. See https://www.chromium.org/Home/chromium-security/deprecating-powerful-features-on-insecure-origins/ for more details.",
111
111
  /**
112
112
  * @description Warning displayed to developers when permission to use notifications has been requested by a cross-origin iframe, to notify them that this use is no longer supported.
113
113
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "12.8.2-dev.20251002",
4
+ "version": "12.8.2-dev.20251003",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {
@@ -140,7 +140,7 @@
140
140
  "builtin-modules": "^3.3.0",
141
141
  "c8": "^7.11.3",
142
142
  "chalk": "^2.4.1",
143
- "chrome-devtools-frontend": "1.0.1506453",
143
+ "chrome-devtools-frontend": "1.0.1522585",
144
144
  "colors": "^1.4.0",
145
145
  "concurrently": "^9.2.1",
146
146
  "conventional-changelog-cli": "^2.1.1",
@@ -169,7 +169,7 @@
169
169
  "pako": "^2.1.0",
170
170
  "preact": "^10.7.2",
171
171
  "pretty-json-stringify": "^0.0.2",
172
- "puppeteer": "^24.17.1",
172
+ "puppeteer": "^24.23.0",
173
173
  "resolve": "^1.22.10",
174
174
  "rollup-plugin-polyfill-node": "^0.12.0",
175
175
  "source-map-support": "^0.5.21",
@@ -181,13 +181,13 @@
181
181
  "webtreemap-cdt": "^3.2.1"
182
182
  },
183
183
  "dependencies": {
184
- "@paulirish/trace_engine": "0.0.59",
184
+ "@paulirish/trace_engine": "0.0.60",
185
185
  "@sentry/node": "^9.28.1",
186
186
  "axe-core": "^4.10.3",
187
187
  "chrome-launcher": "^1.2.1",
188
188
  "configstore": "^7.0.0",
189
189
  "csp_evaluator": "1.1.5",
190
- "devtools-protocol": "0.0.1507524",
190
+ "devtools-protocol": "0.0.1523305",
191
191
  "enquirer": "^2.3.6",
192
192
  "http-link-header": "^1.1.1",
193
193
  "intl-messageformat": "^10.5.3",
@@ -200,18 +200,18 @@
200
200
  "metaviewport-parser": "0.3.0",
201
201
  "open": "^8.4.0",
202
202
  "parse-cache-control": "1.0.1",
203
- "puppeteer-core": "^24.17.1",
203
+ "puppeteer-core": "^24.23.0",
204
204
  "robots-parser": "^3.0.1",
205
205
  "speedline-core": "^1.4.3",
206
206
  "third-party-web": "^0.27.0",
207
- "tldts-icann": "^7.0.12",
207
+ "tldts-icann": "^7.0.16",
208
208
  "ws": "^7.0.0",
209
209
  "yargs": "^17.3.1",
210
210
  "yargs-parser": "^21.0.0"
211
211
  },
212
212
  "resolutions": {
213
- "puppeteer/**/devtools-protocol": "0.0.1507524",
214
- "puppeteer-core/**/devtools-protocol": "0.0.1507524"
213
+ "puppeteer/**/devtools-protocol": "0.0.1523305",
214
+ "puppeteer-core/**/devtools-protocol": "0.0.1523305"
215
215
  },
216
216
  "repository": "GoogleChrome/lighthouse",
217
217
  "keywords": [
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "الصفحات التي تحتوي على WebRTC يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebRTC."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "الصفحات التي تستخدِم WebShare يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "الصفحات التي تحتوي على WebSocket يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعّلة بسبب استخدام WebSocket."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "الصفحات التي تحتوي على WebTransport يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebTransport."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "الصفحات التي تستخدِم WebXR يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "الصفحات التي تحتوي على WebRTC يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebRTC."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "الصفحات التي تستخدِم WebShare يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "الصفحات التي تحتوي على WebSocket يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعّلة بسبب استخدام WebSocket."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "الصفحات التي تحتوي على WebTransport يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebTransport."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "الصفحات التي تستخدِم WebXR يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Страниците с WebRTC не могат да бъдат добавени към кеша за назад/напред."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "Кешът за назад/напред е деактивиран поради използване на WebRTC."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Страниците, които използват WebShare, понастоящем не отговарят на условията за кеша за назад/напред."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Страниците с WebSocket не могат да бъдат добавени към кеша за назад/напред."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "Кешът за назад/напред е деактивиран поради използване на WebSocket."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Страниците с WebTransport не могат да бъдат добавени към кеша за назад/напред."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "Кешът за назад/напред е деактивиран поради използване на WebTransport."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Страниците, които използват WebXR, понастоящем не отговарят на условията за кеша за назад/напред."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Les pàgines amb WebRTC no poden accedir a la memòria cau endavant/enrere."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "La memòria cau endavant/enrere està desactivada perquè s'ha utilitzat WebRTC."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Actualment, les pàgines que utilitzen WebShare no són aptes per a la memòria cau endavant/enrere."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Les pàgines amb WebSocket no poden accedir a la memòria cau endavant/enrere."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "La memòria cau endavant/enrere està desactivada perquè s'ha utilitzat WebSocket."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Les pàgines amb WebTransport no poden accedir a la memòria cau endavant/enrere."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "La memòria cau endavant/enrere està desactivada perquè s'ha utilitzat WebTransport."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Actualment, les pàgines que utilitzen WebXR no són aptes per a la memòria cau endavant/enrere."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Stránky s WebRTC nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "Mezipaměť pro přechod zpět nebo vpřed je zakázána, protože bylo použito rozhraní WebRTC."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Stránky, které používají rozhraní WebShare, v současné době nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Stránky s funkcí WebSocket nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "Mezipaměť pro přechod zpět nebo vpřed je zakázána, protože bylo použito rozhraní WebSocket."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Stránky, které využívají rozhraní WebTransport, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "Mezipaměť pro přechod zpět nebo vpřed je zakázána, protože bylo použito rozhraní WebTransport."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Stránky, které používají WebXR, v současné době nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Sider med WebRTC kan ikke føjes til back/forward-cachen."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "Back/forward-cachen er deaktiveret, fordi WebRTC er blevet brugt."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Sider, der anvender WebShare, er ikke kvalificeret til back/forward-cachen i øjeblikket."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Sider med WebSocket kan ikke føjes til back/forward-cachen."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "Back/forward-cachen er deaktiveret, fordi WebSocket er blevet brugt."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Sider med WebTransport kan ikke føjes til back/forward-cachen."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "Back/forward-cachen er deaktiveret, fordi WebTransport er blevet brugt."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Sider, der anvender WebXR, er ikke kvalificeret til back/forward-cachen i øjeblikket."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Seiten mit WebRTC können den Back-Forward-Cache nicht verwenden."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "Der Back-Forward-Cache ist deaktiviert, weil WebRTC verwendet wurde."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Seiten, die „WebShare“ nutzen, können den Back-Forward-Cache aktuell nicht verwenden."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Seiten mit „WebSocket“ können den Back-Forward-Cache nicht verwenden."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "Der Back-Forward-Cache ist deaktiviert, weil WebSocket verwendet wurde."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Seiten mit „WebSocket“ können den Back-Forward-Cache nicht verwenden."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "Der Back-Forward-Cache ist deaktiviert, weil WebTransport verwendet wurde."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Seiten, die „WebXR“ nutzen, können den Back-Forward-Cache aktuell nicht verwenden."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Οι σελίδες με το στοιχείο WebRTC δεν μπορούν να εισέλθουν στην κρυφή μνήμη πίσω-εμπρός."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "Η κρυφή μνήμη πίσω-εμπρός είναι απενεργοποιημένη επειδή έχει χρησιμοποιηθεί το WebRTC."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Οι σελίδες που χρησιμοποιούν το στοιχείο WebShare δεν είναι κατάλληλες προς το παρόν για την κρυφή μνήμη πίσω-εμπρός."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Οι σελίδες με το στοιχείο WebSocket δεν μπορούν να εισέλθουν στην κρυφή μνήμη πίσω-εμπρός."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "Η κρυφή μνήμη πίσω-εμπρός είναι απενεργοποιημένη επειδή έχει χρησιμοποιηθεί το WebSocket."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Οι σελίδες με το στοιχείο WebTransport δεν μπορούν να εισέλθουν στην κρυφή μνήμη πίσω-εμπρός."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "Η κρυφή μνήμη πίσω-εμπρός είναι απενεργοποιημένη επειδή έχει χρησιμοποιηθεί το WebTransport."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Οι σελίδες που χρησιμοποιούν το στοιχείο WebXR δεν είναι κατάλληλες προς το παρόν για την κρυφή μνήμη πίσω-εμπρός."
3067
3058
  },
@@ -3044,24 +3044,15 @@
3044
3044
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3045
3045
  "message": "Pages with WebRTC cannot enter back-forward cache."
3046
3046
  },
3047
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
3048
- "message": "Back-forward cache is disabled because WebRTC has been used."
3049
- },
3050
3047
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
3051
3048
  "message": "Pages that use WebShare are not currently eligible for back-forward cache."
3052
3049
  },
3053
3050
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3054
3051
  "message": "Pages with WebSocket cannot enter back-forward cache."
3055
3052
  },
3056
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
3057
- "message": "Back-forward cache is disabled because WebSocket has been used."
3058
- },
3059
3053
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3060
3054
  "message": "Pages with WebTransport cannot enter back-forward cache."
3061
3055
  },
3062
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
3063
- "message": "Back-forward cache is disabled because WebTransport has been used."
3064
- },
3065
3056
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
3066
3057
  "message": "Pages that use WebXR are not currently eligible for back-forward cache."
3067
3058
  },