lighthouse 11.2.0-dev.20231018 → 11.2.0-dev.20231020
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/cli/cli-flags.d.ts +5 -1
- package/cli/cli-flags.js +5 -1
- package/core/config/constants.js +1 -0
- package/core/gather/gatherers/inspector-issues.js +1 -0
- package/core/gather/navigation-runner.js +1 -0
- package/core/lib/navigation-error.d.ts +8 -2
- package/core/lib/navigation-error.js +18 -6
- package/dist/report/bundle.esm.js +4 -4
- package/dist/report/flow.js +7 -7
- package/dist/report/standalone.js +5 -5
- package/package.json +7 -7
- package/report/renderer/performance-category-renderer.js +2 -1
- package/shared/localization/locales/en-US.json +3 -0
- package/shared/localization/locales/en-XL.json +3 -0
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +1 -0
- package/types/artifacts.d.ts +1 -0
- package/types/internal/rxjs.d.ts +4 -0
- package/types/lhr/settings.d.ts +3 -0
|
@@ -2657,6 +2657,9 @@
|
|
|
2657
2657
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2658
2658
|
"message": "T̂h́ê ÚR̂Ĺ ŷóû h́âv́ê ṕr̂óv̂íd̂éd̂ áp̂ṕêár̂ś t̂ó b̂é îńv̂ál̂íd̂."
|
|
2659
2659
|
},
|
|
2660
|
+
"core/lib/navigation-error.js | warningStatusCode": {
|
|
2661
|
+
"message": "L̂íĝh́t̂h́ôúŝé ŵáŝ ún̂áb̂ĺê t́ô ŕêĺîáb̂ĺŷ ĺôád̂ t́ĥé p̂áĝé ŷóû ŕêq́ûéŝt́êd́. M̂ák̂é ŝúr̂é ŷóû ár̂é t̂éŝt́îńĝ t́ĥé ĉór̂ŕêćt̂ ÚR̂Ĺ âńd̂ t́ĥát̂ t́ĥé ŝér̂v́êŕ îś p̂ŕôṕêŕl̂ý r̂éŝṕôńd̂ín̂ǵ t̂ó âĺl̂ ŕêq́ûéŝt́ŝ. (Śt̂át̂úŝ ćôd́ê: {errorCode})"
|
|
2662
|
+
},
|
|
2660
2663
|
"core/lib/navigation-error.js | warningXhtml": {
|
|
2661
2664
|
"message": "T̂h́ê ṕâǵê ḾÎḾÊ t́ŷṕê íŝ X́ĤT́M̂Ĺ: L̂íĝh́t̂h́ôúŝé d̂óêś n̂ót̂ éx̂ṕl̂íĉít̂ĺŷ śûṕp̂ór̂t́ t̂h́îś d̂óĉúm̂én̂t́ t̂ýp̂é"
|
|
2662
2665
|
},
|
package/types/artifacts.d.ts
CHANGED
|
@@ -579,6 +579,7 @@ declare module Artifacts {
|
|
|
579
579
|
bounceTrackingIssue: Crdp.Audits.BounceTrackingIssueDetails[];
|
|
580
580
|
clientHintIssue: Crdp.Audits.ClientHintIssueDetails[];
|
|
581
581
|
contentSecurityPolicyIssue: Crdp.Audits.ContentSecurityPolicyIssueDetails[];
|
|
582
|
+
cookieDeprecationMetadataIssue: Crdp.Audits.CookieDeprecationMetadataIssueDetails[],
|
|
582
583
|
corsIssue: Crdp.Audits.CorsIssueDetails[];
|
|
583
584
|
deprecationIssue: Crdp.Audits.DeprecationIssueDetails[];
|
|
584
585
|
federatedAuthRequestIssue: Crdp.Audits.FederatedAuthRequestIssueDetails[],
|
package/types/internal/rxjs.d.ts
CHANGED
package/types/lhr/settings.d.ts
CHANGED
|
@@ -114,6 +114,9 @@ export type ScreenEmulationSettings = {
|
|
|
114
114
|
blankPage?: string;
|
|
115
115
|
/** Disables collection of the full page screenshot, which can be rather large and possibly leave the page in an undesirable state. */
|
|
116
116
|
disableFullPageScreenshot?: boolean;
|
|
117
|
+
|
|
118
|
+
/** Disables failing on 404 status code, and instead issues a warning */
|
|
119
|
+
ignoreStatusCode?: boolean;
|
|
117
120
|
}
|
|
118
121
|
|
|
119
122
|
export interface ConfigSettings extends Required<SharedFlagsSettings> {
|