lighthouse 9.2.0-dev.20220129 → 9.3.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.
package/changelog.md CHANGED
@@ -1,3 +1,78 @@
1
+ <a name="9.3.1"></a>
2
+ # 9.3.1 (2022-01-31)
3
+ [Full Changelog](https://github.com/compare/v9.3.0...v9.3.1)
4
+
5
+ ## Report
6
+
7
+ * disable fireworks with flag ([#13610](https://github.com/GoogleChrome/lighthouse/pull/13610))
8
+
9
+ <a name="9.3.0"></a>
10
+ # 9.3.0 (2022-01-31)
11
+ [Full Changelog](https://github.com/compare/v9.2.0...v9.3.0)
12
+
13
+ We expect this release to ship in the DevTools of [Chrome 100](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
14
+
15
+ ## Core
16
+
17
+ * preload-lcp-image: enable audit ([#13599](https://github.com/GoogleChrome/lighthouse/pull/13599))
18
+ * ensure good and average scores start exactly at control points ([#13559](https://github.com/GoogleChrome/lighthouse/pull/13559))
19
+ * fr: don't throw on unknown --only-categories value ([#13499](https://github.com/GoogleChrome/lighthouse/pull/13499))
20
+ * inspector-issues: collect all issue types ([#13462](https://github.com/GoogleChrome/lighthouse/pull/13462), [#13603](https://github.com/GoogleChrome/lighthouse/pull/13603), [#13595](https://github.com/GoogleChrome/lighthouse/pull/13595))
21
+ * object-alt: remove md syntax around "alt" ([#13517](https://github.com/GoogleChrome/lighthouse/pull/13517))
22
+ * runner: asset manager helper ([#13519](https://github.com/GoogleChrome/lighthouse/pull/13519))
23
+
24
+ ## CLI
25
+
26
+ * remove update-notifier ([#13588](https://github.com/GoogleChrome/lighthouse/pull/13588))
27
+ * asset-saver: end devtoolsLog with a newline ([#13566](https://github.com/GoogleChrome/lighthouse/pull/13566))
28
+
29
+ ## Report
30
+
31
+ * allow client to configure how save-html is implemented ([#13518](https://github.com/GoogleChrome/lighthouse/pull/13518))
32
+
33
+ ## Deps
34
+
35
+ * update various runtime deps ([#13483](https://github.com/GoogleChrome/lighthouse/pull/13483))
36
+ * update various devDeps ([#13485](https://github.com/GoogleChrome/lighthouse/pull/13485))
37
+ * update robots-parser to latest ([#13554](https://github.com/GoogleChrome/lighthouse/pull/13554))
38
+ * update transitive deps to quiet vulnerability alerts ([#13538](https://github.com/GoogleChrome/lighthouse/pull/13538))
39
+ * lighthouse-stack-packs: upgrade to 1.7.0 ([#13604](https://github.com/GoogleChrome/lighthouse/pull/13604))
40
+ * snyk: update snyk snapshot ([#13498](https://github.com/GoogleChrome/lighthouse/pull/13498), [#13598](https://github.com/GoogleChrome/lighthouse/pull/13598))
41
+ * yargs: upgrade to 17.3.1 ([#13590](https://github.com/GoogleChrome/lighthouse/pull/13590))
42
+ * yargs-parser: upgrade to 21.0.0 ([#13597](https://github.com/GoogleChrome/lighthouse/pull/13597))
43
+
44
+ ## Clients
45
+
46
+ * use minimal 'url' polyfil instead of url-shim ([#13545](https://github.com/GoogleChrome/lighthouse/pull/13545))
47
+ * devtools: add FR runners to DevTools entry ([#13593](https://github.com/GoogleChrome/lighthouse/pull/13593))
48
+
49
+ ## I18n
50
+
51
+ * import ([#13602](https://github.com/GoogleChrome/lighthouse/pull/13602))
52
+
53
+ ## Docs
54
+
55
+ * update devtools panel throttling details ([#13504](https://github.com/GoogleChrome/lighthouse/pull/13504))
56
+
57
+ ## Tests
58
+
59
+ * add snapshot tests for cli-flags.js ([#13596](https://github.com/GoogleChrome/lighthouse/pull/13596))
60
+ * tweak some CI job names for clarity ([#13549](https://github.com/GoogleChrome/lighthouse/pull/13549))
61
+ * split devtools ci into build, web-tests and smoke jobs ([#13546](https://github.com/GoogleChrome/lighthouse/pull/13546))
62
+ * more targeted caching for devtools build ([#13540](https://github.com/GoogleChrome/lighthouse/pull/13540))
63
+ * run most smoke tests on devtools ([#13456](https://github.com/GoogleChrome/lighthouse/pull/13456))
64
+ * clean up and add comments to cdt layout test scripts ([#13471](https://github.com/GoogleChrome/lighthouse/pull/13471))
65
+ * devtools: ensure WebSQL table is populated ([#13579](https://github.com/GoogleChrome/lighthouse/pull/13579))
66
+
67
+ ## Misc
68
+
69
+ * add web.dev and other option to bug template ([#13537](https://github.com/GoogleChrome/lighthouse/pull/13537))
70
+ * use codemod for optional chaining ([#13503](https://github.com/GoogleChrome/lighthouse/pull/13503))
71
+ * build: fix build-smokehouse-bundle build ([#13500](https://github.com/GoogleChrome/lighthouse/pull/13500))
72
+ * build: remove empty devtools report resources ([#13601](https://github.com/GoogleChrome/lighthouse/pull/13601))
73
+ * build: set correct exit code when build scripts fail ([#13459](https://github.com/GoogleChrome/lighthouse/pull/13459))
74
+ * git3po: only install latest git3po if out of date ([#13515](https://github.com/GoogleChrome/lighthouse/pull/13515))
75
+
1
76
  <a name="9.2.0"></a>
2
77
  # 9.2.0 (2021-12-15)
3
78
  [Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v9.1.0...v9.2.0)
@@ -5740,7 +5740,7 @@ class ReportUIFeatures {
5740
5740
  const cat = lhr.categories[id];
5741
5741
  return cat && cat.score === 1;
5742
5742
  });
5743
- if (scoresAll100) {
5743
+ if (scoresAll100 && !this._opts.disableAutoDarkModeAndFireworks) {
5744
5744
  turnOffTheLights = true;
5745
5745
  this._enableFireworks();
5746
5746
  }