lighthouse 10.1.0-dev.20230413 → 10.1.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.
@@ -44,6 +44,7 @@ const UIStrings = {
44
44
  'manifest-display-not-supported': `Manifest 'display' property must be one of 'standalone', 'fullscreen', or 'minimal-ui'`,
45
45
  /** Error message explaining that the manifest could not be fetched, might be empty, or could not be parsed. */
46
46
  'manifest-empty': `Manifest could not be fetched, is empty, or could not be parsed`,
47
+ // TODO: This error was removed in M114, we can remove this message when it hits stable.
47
48
  /** Error message explaining that no matching service worker was detected,
48
49
  * and provides a suggestion to reload the page or check whether the scope of the service worker
49
50
  * for the current page encloses the scope and start URL from the manifest. */
@@ -61,6 +61,7 @@ class InspectorIssues extends FRGatherer {
61
61
  const artifact = {
62
62
  attributionReportingIssue: [],
63
63
  blockedByResponseIssue: [],
64
+ bounceTrackingIssue: [],
64
65
  clientHintIssue: [],
65
66
  contentSecurityPolicyIssue: [],
66
67
  corsIssue: [],
@@ -3,12 +3,12 @@
3
3
  */
4
4
  declare function getDescription(issueDetails: LH.Crdp.Audits.DeprecationIssueDetails): {
5
5
  file: string;
6
- substitutions: Map<string, import("../index.js").IcuMessage>;
6
+ substitutions: Map<string, import("../index.js").IcuMessage | undefined>;
7
7
  links: {
8
8
  link: string;
9
9
  linkTitle: import("../index.js").IcuMessage;
10
10
  }[];
11
- message: import("../index.js").IcuMessage;
11
+ message: import("../index.js").IcuMessage | undefined;
12
12
  };
13
13
  export namespace UIStrings {
14
14
  const feature: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "10.1.0-dev.20230413",
4
+ "version": "10.1.1",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {
@@ -142,7 +142,6 @@
142
142
  "cpy": "^8.1.2",
143
143
  "cross-env": "^7.0.2",
144
144
  "csv-validator": "^0.0.3",
145
- "devtools-protocol": "0.0.1081726",
146
145
  "es-main": "^1.0.2",
147
146
  "eslint": "^8.4.1",
148
147
  "eslint-config-google": "^0.14.0",
@@ -191,8 +190,9 @@
191
190
  "chrome-launcher": "^0.15.1",
192
191
  "configstore": "^5.0.1",
193
192
  "csp_evaluator": "1.1.1",
193
+ "devtools-protocol": "0.0.1130274",
194
194
  "enquirer": "^2.3.6",
195
- "http-link-header": "^1.1.0",
195
+ "http-link-header": "^1.1.1",
196
196
  "intl-messageformat": "^4.4.0",
197
197
  "jpeg-js": "^0.4.4",
198
198
  "js-library-detector": "^6.6.0",
@@ -214,8 +214,8 @@
214
214
  "yargs-parser": "^21.0.0"
215
215
  },
216
216
  "resolutions": {
217
- "puppeteer/**/devtools-protocol": "0.0.1081726",
218
- "puppeteer-core/**/devtools-protocol": "0.0.1081726"
217
+ "puppeteer/**/devtools-protocol": "0.0.1130274",
218
+ "puppeteer-core/**/devtools-protocol": "0.0.1130274"
219
219
  },
220
220
  "repository": "GoogleChrome/lighthouse",
221
221
  "keywords": [
@@ -34,6 +34,7 @@ describe('issueAdded types', () => {
34
34
  Array [
35
35
  "attributionReportingIssueDetails",
36
36
  "blockedByResponseIssueDetails",
37
+ "bounceTrackingIssueDetails",
37
38
  "clientHintIssueDetails",
38
39
  "contentSecurityPolicyIssueDetails",
39
40
  "cookieIssueDetails",
@@ -57,7 +57,6 @@ Array [
57
57
  "no-icon-available",
58
58
  "no-id-specified",
59
59
  "no-manifest",
60
- "no-matching-service-worker",
61
60
  "no-url-for-service-worker",
62
61
  "not-from-secure-origin",
63
62
  "not-offline-capable",
@@ -603,6 +603,7 @@ declare module Artifacts {
603
603
  interface InspectorIssues {
604
604
  attributionReportingIssue: Crdp.Audits.AttributionReportingIssueDetails[];
605
605
  blockedByResponseIssue: Crdp.Audits.BlockedByResponseIssueDetails[];
606
+ bounceTrackingIssue: Crdp.Audits.BounceTrackingIssueDetails[];
606
607
  clientHintIssue: Crdp.Audits.ClientHintIssueDetails[];
607
608
  contentSecurityPolicyIssue: Crdp.Audits.ContentSecurityPolicyIssueDetails[];
608
609
  corsIssue: Crdp.Audits.CorsIssueDetails[];