Skip to content

Commit

Permalink
v9.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored and adamraine committed May 10, 2022
1 parent 7d629a8 commit 9fec4e0
Show file tree
Hide file tree
Showing 11 changed files with 74 additions and 17 deletions.
50 changes: 50 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
<a name="9.6.0"></a>
# 9.6.0 (2022-05-09)
[Full Changelog](https://github.com/compare/v9.5.0...v9.6.0)

We expect this release to ship in the DevTools of [Chrome 103](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.

## New Audits

* The new performance metric [Interaction to Next Paint (INP)](https://web.dev/inp/) assesses responsiveness by measuring the latency of interactions throughout the page lifecycle. INP can be measured using Lighthouse timespan mode accessible through [user flows](https://github.com/GoogleChrome/lighthouse/blob/master/docs/user-flows.md) or the [new DevTools panel](https://developer.chrome.com/blog/new-in-devtools-101/#lighthouse). ([#13917](https://github.com/GoogleChrome/lighthouse/pull/13917))

## Core

* extract BootupTime task summary methods ([#13971](https://github.com/GoogleChrome/lighthouse/pull/13971))
* css-usage: fetch stylesheet contents immediately after discovery ([#13887](https://github.com/GoogleChrome/lighthouse/pull/13887))
* installability-errors: add url scheme error ([#13846](https://github.com/GoogleChrome/lighthouse/pull/13846))
* installable-manifest: always run `InstallabilityErrors` in legacy mode ([#13622](https://github.com/GoogleChrome/lighthouse/pull/13622))
* responsiveness: use new EventTiming trace event format ([#13979](https://github.com/GoogleChrome/lighthouse/pull/13979))
* responsiveness: use raw trace event ([#13970](https://github.com/GoogleChrome/lighthouse/pull/13970))
* trace: use tracing-started event for frame tree info ([#13913](https://github.com/GoogleChrome/lighthouse/pull/13913))
* trace: add PrePaint event, renamed from UpdateLayerTree ([#13950](https://github.com/GoogleChrome/lighthouse/pull/13950))
* trace-processor: ignore `navigationStart` with falsy document url ([#13848](https://github.com/GoogleChrome/lighthouse/pull/13848))
* resolve redirected script records ([#13751](https://github.com/GoogleChrome/lighthouse/pull/13751))
* deprecations: drop compat for ConsoleMessages ([#13893](https://github.com/GoogleChrome/lighthouse/pull/13893))
* deprecations: hard-code english strings ([#13961](https://github.com/GoogleChrome/lighthouse/pull/13961))

## Report

* hide disclaimer text in timespan ([#13931](https://github.com/GoogleChrome/lighthouse/pull/13931))
* psi: stub out locale swapping ([#13885](https://github.com/GoogleChrome/lighthouse/pull/13885))
* report: render notApplicable metrics with double dash ([#13981](https://github.com/GoogleChrome/lighthouse/pull/13981))

## Deps

* upgrade third-party-web ([#13873](https://github.com/GoogleChrome/lighthouse/pull/13873))
* update to third-party-web 0.15.0 ([#13804](https://github.com/GoogleChrome/lighthouse/pull/13804))
* axe-core: upgrade to 4.4.1 ([#13814](https://github.com/GoogleChrome/lighthouse/pull/13814))
* js-library-detector: upgrade to 6.5.0 ([#13969](https://github.com/GoogleChrome/lighthouse/pull/13969))
* lighthouse-stack-packs: upgrade to 1.8.1 ([#13862](https://github.com/GoogleChrome/lighthouse/pull/13862))
* snyk: update snyk snapshot ([#13823](https://github.com/GoogleChrome/lighthouse/pull/13823), [#13880](https://github.com/GoogleChrome/lighthouse/pull/13880))
* lodash: use individual lodash modules to reduce bundle size ([#13914](https://github.com/GoogleChrome/lighthouse/pull/13914))
* puppeteer: upgrade to 13.7.0 ([#13657](https://github.com/GoogleChrome/lighthouse/pull/13657))

## Tests

* upgrade devtools web tests deps, use python3 ([#13782](https://github.com/GoogleChrome/lighthouse/pull/13782))
* update create-test-trace utility ([#13942](https://github.com/GoogleChrome/lighthouse/pull/13942))
* rebaseline webtests ([#13963](https://github.com/GoogleChrome/lighthouse/pull/13963))
* smoke: remove old chrome version checks ([#13903](https://github.com/GoogleChrome/lighthouse/pull/13903))
* smoke: support full chrome version for pruning ([#13896](https://github.com/GoogleChrome/lighthouse/pull/13896))

<a name="9.5.0"></a>
# 9.5.0 (2022-03-09)
[Full Changelog](https://github.com/compare/v9.4.0...v9.5.0)
Expand Down
4 changes: 2 additions & 2 deletions docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ A Lighthouse plugin is just a node module with a name that starts with `lighthou
"name": "lighthouse-plugin-cats",
"main": "plugin.js",
"peerDependencies": {
"lighthouse": "^9.5.0"
"lighthouse": "^9.6.0"
},
"devDependencies": {
"lighthouse": "^9.5.0"
"lighthouse": "^9.6.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/custom-audit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"private": true,
"scripts": {},
"devDependencies": {
"lighthouse": "^9.5.0"
"lighthouse": "^9.6.0"
}
}
2 changes: 1 addition & 1 deletion docs/recipes/gulp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"devDependencies": {
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"lighthouse": "^9.5.0"
"lighthouse": "^9.6.0"
}
}
2 changes: 1 addition & 1 deletion docs/recipes/lighthouse-plugin-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"main": "./plugin.js",
"peerDependencies": {
"lighthouse": "^9.5.0"
"lighthouse": "^9.6.0"
},
"devDependencies": {
"lighthouse": "^8.6.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"steps": [
{
"lhr": {
"lighthouseVersion": "9.5.0",
"lighthouseVersion": "9.6.0",
"requestedUrl": "https://www.mikescerealshack.co/",
"finalUrl": "https://www.mikescerealshack.co/",
"fetchTime": "2022-03-08T15:35:57.356Z",
Expand Down Expand Up @@ -7549,7 +7549,7 @@
},
{
"lhr": {
"lighthouseVersion": "9.5.0",
"lighthouseVersion": "9.6.0",
"requestedUrl": "https://www.mikescerealshack.co/",
"finalUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2022-03-08T15:36:08.267Z",
Expand Down Expand Up @@ -8666,20 +8666,27 @@
{
"mainThreadTime": 0,
"blockingTime": 0,
"transferSize": 3888,
"transferSize": 25228,
"entity": {
"type": "link",
"text": "Algolia",
"url": "https://www.algolia.com/"
},
"subItems": {
"type": "subitems",
"items": []
"items": [
{
"url": "https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query",
"mainThreadTime": 0,
"blockingTime": 0,
"transferSize": 25228
}
]
}
}
],
"summary": {
"wastedBytes": 3888,
"wastedBytes": 25228,
"wastedMs": 0
}
}
Expand Down Expand Up @@ -11003,7 +11010,7 @@
},
{
"lhr": {
"lighthouseVersion": "9.5.0",
"lighthouseVersion": "9.6.0",
"requestedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"finalUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2022-03-08T15:36:22.894Z",
Expand Down Expand Up @@ -15811,7 +15818,7 @@
},
{
"lhr": {
"lighthouseVersion": "9.5.0",
"lighthouseVersion": "9.6.0",
"requestedUrl": "https://www.mikescerealshack.co/corrections",
"finalUrl": "https://www.mikescerealshack.co/corrections",
"fetchTime": "2022-03-08T15:36:29.745Z",
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/test/results/sample_v2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"lighthouseVersion": "9.5.0",
"lighthouseVersion": "9.6.0",
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"finalUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"fetchTime": "2021-09-07T20:11:11.853Z",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lighthouse",
"version": "9.5.0",
"version": "9.6.0",
"description": "Automated auditing, performance metrics, and best practices for the web.",
"main": "./lighthouse-core/index.js",
"bin": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Generate report: enabled visible

=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-emulate-pass.html
Version: 9.5.0
Version: 9.6.0
formFactor: mobile
screenEmulation: {
"mobile": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ Generating results...

=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
Version: 9.5.0
Version: 9.6.0
ViewportDimensions: {
"innerWidth": 980,
"innerHeight": 1743,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ Generating results...

=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
Version: 9.5.0
Version: 9.6.0
ViewportDimensions: {
"innerWidth": 980,
"innerHeight": 1743,
Expand Down

0 comments on commit 9fec4e0

Please sign in to comment.