Skip to content

Commit

Permalink
v7.2.0 (#12136)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored Feb 25, 2021
1 parent 9ae26ec commit fb18dfe
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 11 deletions.
54 changes: 53 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,56 @@
<a name="7.1.0"></a>
<a name="7.2.0"></a>
# 7.2.0 (2021-02-24)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v7.1.0...v7.2.0)

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

## New contributors

Thanks to our new contributors 👽🐷🐰🐯🐻!

- @1d0n7kn0w
- Benajmin Franz @BennyAlex

## Core

* emulation: bump chrome versions ([#12104](https://github.com/GoogleChrome/lighthouse/pull/12104))
* unsized-images: ignore non-network SVGs ([#12120](https://github.com/GoogleChrome/lighthouse/pull/12120))
* preload: do not warn for cache loads ([#12122](https://github.com/GoogleChrome/lighthouse/pull/12122))
* be more lenient for some audits on localhost ([#11766](https://github.com/GoogleChrome/lighthouse/pull/11766))

## Fraggle Rock

Support for auditing user flows ([#11313](https://github.com/GoogleChrome/lighthouse/issues/11313))

* fr: add navigation phase + trace gatherer ([#12098](https://github.com/GoogleChrome/lighthouse/pull/12098))
* fr: add DevtoolsLog artifact ([#12074](https://github.com/GoogleChrome/lighthouse/pull/12074))

## Deps

* update snyk snapshot ([#12132](https://github.com/GoogleChrome/lighthouse/pull/12132))

## Clients

* lr: skip uses-http2 audit for mobile ([#12115](https://github.com/GoogleChrome/lighthouse/pull/12115))

## Docs

* auth: correct path in readme ([#12112](https://github.com/GoogleChrome/lighthouse/pull/12112))
* throttling: retitle devtools panel h2 ([#12126](https://github.com/GoogleChrome/lighthouse/pull/12126))

## Tests

* sync devtools tests ([#12127](https://github.com/GoogleChrome/lighthouse/pull/12127))

## Misc

* treemap: first pass ([#11832](https://github.com/GoogleChrome/lighthouse/pull/11832))
* add LIGHTHOUSE_FLAGS to gcp script. tweak extract script ([#12100](https://github.com/GoogleChrome/lighthouse/pull/12100))
* rename lantern baseline values ([#10950](https://github.com/GoogleChrome/lighthouse/pull/10950))
* fixed typos More => more ([#12092](https://github.com/GoogleChrome/lighthouse/pull/12092))
* ci: update GH actions commit SHAs ([#12099](https://github.com/GoogleChrome/lighthouse/pull/12099))

<a name="7.1.0"></a>
# 7.1.0 (2021-02-11)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v7.0.1...v7.1.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": "^7.1.0"
"lighthouse": "^7.2.0"
},
"devDependencies": {
"lighthouse": "^7.1.0"
"lighthouse": "^7.2.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": "^7.1.0"
"lighthouse": "^7.2.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": "^7.1.0"
"lighthouse": "^7.2.0"
}
}
4 changes: 2 additions & 2 deletions docs/recipes/lighthouse-plugin-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"private": true,
"main": "./plugin.js",
"peerDependencies": {
"lighthouse": "^7.1.0"
"lighthouse": "^7.2.0"
},
"devDependencies": {
"lighthouse": "^7.1.0"
"lighthouse": "^7.2.0"
}
}
2 changes: 1 addition & 1 deletion lighthouse-core/test/results/sample_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"axe-core": "4.1.2"
}
},
"lighthouseVersion": "7.1.0",
"lighthouseVersion": "7.2.0",
"fetchTime": "2018-03-13T00:55:45.840Z",
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"finalUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
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": "7.1.0",
"version": "7.2.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 @@ -14,7 +14,7 @@ Generate report: enabled visible

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

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

0 comments on commit fb18dfe

Please sign in to comment.