Skip to content

Commit 72ad152

Browse files
committed
v9.6.3
1 parent 04992e6 commit 72ad152

10 files changed

Lines changed: 21 additions & 10 deletions

File tree

changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<a name="9.6.3"></a>
2+
# 9.6.3 (2022-06-28)
3+
[Full Changelog](https://github.com/compare/v9.6.2...v9.6.3)
4+
5+
This is an npm-only release and affects only the raw JSON report. We have no plans to release this specific version to DevTools or PSI, but the changes will be rolled up into the next release in those clients.
6+
7+
## Core
8+
9+
* network-requests: add frame and preload debug data ([#14161](https://github.com/GoogleChrome/lighthouse/pull/14161))
10+
* preload-lcp-image: enrich debugData ([#14155](https://github.com/GoogleChrome/lighthouse/pull/14155))
11+
112
<a name="9.6.2"></a>
213
# 9.6.2 (2022-06-01)
314
[Full Changelog](https://github.com/compare/v9.6.1...v9.6.2)

docs/plugins.md

Lines changed: 2 additions & 2 deletions
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.6.2"
63+
"lighthouse": "^9.6.3"
6464
},
6565
"devDependencies": {
66-
"lighthouse": "^9.6.2"
66+
"lighthouse": "^9.6.3"
6767
}
6868
}
6969
```

docs/recipes/custom-audit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"private": true,
44
"scripts": {},
55
"devDependencies": {
6-
"lighthouse": "^9.6.2"
6+
"lighthouse": "^9.6.3"
77
}
88
}

docs/recipes/gulp/package.json

Lines changed: 1 addition & 1 deletion
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.6.2"
10+
"lighthouse": "^9.6.3"
1111
}
1212
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"main": "./plugin.js",
55
"peerDependencies": {
6-
"lighthouse": "^9.6.2"
6+
"lighthouse": "^9.6.3"
77
},
88
"devDependencies": {
99
"lighthouse": "^8.6.0"

lighthouse-core/test/results/sample_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lighthouseVersion": "9.6.2",
2+
"lighthouseVersion": "9.6.3",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lighthouse",
3-
"version": "9.6.2",
3+
"version": "9.6.3",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Analyze page load: enabled visible
1515

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ Generating results...
262262

263263
=============== Lighthouse Results ===============
264264
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
265-
Version: 9.6.2
265+
Version: 9.6.3
266266
ViewportDimensions: {
267267
"innerWidth": 980,
268268
"innerHeight": 1743,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ Generating results...
373373

374374
=============== Lighthouse Results ===============
375375
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
376-
Version: 9.6.2
376+
Version: 9.6.3
377377
ViewportDimensions: {
378378
"innerWidth": 980,
379379
"innerHeight": 1743,

0 commit comments

Comments
 (0)