Skip to content

Commit e3fdffc

Browse files
authoredFeb 17, 2022
v9.4.0 (#13672)
1 parent 09cf541 commit e3fdffc

File tree

9 files changed

+54
-9
lines changed

9 files changed

+54
-9
lines changed
 

‎changelog.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
<a name="9.4.0"></a>
2+
# 9.4.0 (2022-02-16)
3+
[Full Changelog](https://github.com/compare/v9.3.1...v9.4.0)
4+
5+
We expect this release to ship in the DevTools of [Chrome 100](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
6+
7+
## Notable Changes
8+
9+
* Allow auditing of navigations triggered by user interactions in user flows. See our [user flow docs](https://github.com/GoogleChrome/lighthouse/blob/master/docs/user-flows.md) for more info. ([#13496](https://github.com/GoogleChrome/lighthouse/pull/13496))
10+
11+
## Core
12+
13+
* a11y: change link in category description to web.dev ([#13638](https://github.com/GoogleChrome/lighthouse/pull/13638))
14+
* full-page-screenshot: wait for doubleraf, network quiet ([#13663](https://github.com/GoogleChrome/lighthouse/pull/13663))
15+
* hreflang: remove eval, import axe valid-langs.js directly ([#13385](https://github.com/GoogleChrome/lighthouse/pull/13385))
16+
* inputs: refactor form-elements gatherer ([#13662](https://github.com/GoogleChrome/lighthouse/pull/13662), [#13671](https://github.com/GoogleChrome/lighthouse/pull/13671))
17+
* page-functions: set style in getOuterHTMLSnippet without violating CSP ([#13636](https://github.com/GoogleChrome/lighthouse/pull/13636))
18+
* runner: independent gather and audit functions ([#13569](https://github.com/GoogleChrome/lighthouse/pull/13569))
19+
* uses-long-cache-ttl: ignore `stale-while-revalidate` ([#13612](https://github.com/GoogleChrome/lighthouse/pull/13612))
20+
21+
## Report
22+
23+
* add options onPrintOverride and onSaveFileOverride ([#13529](https://github.com/GoogleChrome/lighthouse/pull/13529))
24+
* add options disableFireworks and disableDarkMode ([#13649](https://github.com/GoogleChrome/lighthouse/pull/13649))
25+
* add onViewTrace to renderer options ([#13528](https://github.com/GoogleChrome/lighthouse/pull/13528))
26+
* remove pausing fireworks on click ([#13650](https://github.com/GoogleChrome/lighthouse/pull/13650))
27+
* fix fireworks ([#13635](https://github.com/GoogleChrome/lighthouse/pull/13635))
28+
29+
## Deps
30+
31+
* sentry: move from raven to @sentry/node ([#9325](https://github.com/GoogleChrome/lighthouse/pull/9325))
32+
* snyk: update snyk snapshot ([#13669](https://github.com/GoogleChrome/lighthouse/pull/13669), [#13644](https://github.com/GoogleChrome/lighthouse/pull/13644), [#13616](https://github.com/GoogleChrome/lighthouse/pull/13616))
33+
34+
## Tests
35+
36+
* use simpler assertion in report-renderer-axe-test.js ([#13658](https://github.com/GoogleChrome/lighthouse/pull/13658))
37+
* fix single node a11y tests ([#13626](https://github.com/GoogleChrome/lighthouse/pull/13626))
38+
* devtools: sync ([#13656](https://github.com/GoogleChrome/lighthouse/pull/13656))
39+
* devtools: update report resource names ([#13615](https://github.com/GoogleChrome/lighthouse/pull/13615))
40+
* smoke: test array `_includes` and `lhr.timing` ([#13619](https://github.com/GoogleChrome/lighthouse/pull/13619))
41+
42+
## Misc
43+
44+
* temporarily remove brendan from triage rotation ([#13618](https://github.com/GoogleChrome/lighthouse/pull/13618))
45+
146
<a name="9.3.1"></a>
247
# 9.3.1 (2022-01-31)
348
[Full Changelog](https://github.com/compare/v9.3.0...v9.3.1)

‎docs/plugins.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ A Lighthouse plugin is just a node module with a name that starts with `lighthou
6060
"name": "lighthouse-plugin-cats",
6161
"main": "plugin.js",
6262
"peerDependencies": {
63-
"lighthouse": "^9.3.1"
63+
"lighthouse": "^9.4.0"
6464
},
6565
"devDependencies": {
66-
"lighthouse": "^9.3.1"
66+
"lighthouse": "^9.4.0"
6767
}
6868
}
6969
```

‎docs/recipes/custom-audit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"private": true,
44
"scripts": {},
55
"devDependencies": {
6-
"lighthouse": "^9.3.1"
6+
"lighthouse": "^9.4.0"
77
}
88
}

‎docs/recipes/gulp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"devDependencies": {
88
"gulp": "^3.9.1",
99
"gulp-connect": "^5.0.0",
10-
"lighthouse": "^9.3.1"
10+
"lighthouse": "^9.4.0"
1111
}
1212
}

‎docs/recipes/lighthouse-plugin-example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"main": "./plugin.js",
55
"peerDependencies": {
6-
"lighthouse": "^9.3.1"
6+
"lighthouse": "^9.4.0"
77
},
88
"devDependencies": {
99
"lighthouse": "^8.6.0"

‎lighthouse-core/test/results/sample_v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lighthouseVersion": "9.3.1",
2+
"lighthouseVersion": "9.4.0",
33
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
44
"finalUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
55
"fetchTime": "2021-09-07T20:11:11.853Z",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lighthouse",
3-
"version": "9.3.1",
3+
"version": "9.4.0",
44
"description": "Automated auditing, performance metrics, and best practices for the web.",
55
"main": "./lighthouse-core/index.js",
66
"bin": {

‎third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-emulate-run-expected.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Generate report: enabled visible
1515

1616
=============== Lighthouse Results ===============
1717
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-emulate-pass.html
18-
Version: 9.3.1
18+
Version: 9.4.0
1919
formFactor: mobile
2020
screenEmulation: {
2121
"mobile": true,

‎third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ Generating results...
371371

372372
=============== Lighthouse Results ===============
373373
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
374-
Version: 9.3.1
374+
Version: 9.4.0
375375
ViewportDimensions: {
376376
"innerWidth": 980,
377377
"innerHeight": 1743,

0 commit comments

Comments
 (0)
Please sign in to comment.