Skip to content

Commit

Permalink
8.5.1 (#13106)
Browse files Browse the repository at this point in the history
  • Loading branch information
brendankenny authored Sep 22, 2021
1 parent 54fff07 commit f974c3c
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 17 deletions.
37 changes: 30 additions & 7 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<a name="8.5.1"></a>
# 8.5.1 (2021-09-22)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v8.5.0...v8.5.1)

This is a patch release to fix an issue in the CLI when [error reporting](./docs/error-reporting.md) has been enabled.

## New Contributors

Thanks to our new contributor 👽🐷🐰🐯🐻!

- Yorkie Liu @yorkie

## CLI

* fix crash with Sentry init ([#13104](https://github.com/GoogleChrome/lighthouse/pull/13104))

## ⛏️👷 Fraggle Rock

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

* add API for constructing flow result ([#13034](https://github.com/GoogleChrome/lighthouse/pull/13034))
* add category tooltips to flow report ([#13043](https://github.com/GoogleChrome/lighthouse/pull/13043))

<a name="8.5.0"></a>
# 8.5.0 (2021-09-21)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v8.4.0...v8.5.0)
Expand All @@ -8,8 +31,8 @@ We expect this release to ship in the DevTools of [Chrome 96](https://chromiumda

Thanks to our new contributors 👽🐷🐰🐯🐻!

Konstantin Popov @KonstHardy
Can Umay @canumay
- Konstantin Popov @KonstHardy
- Can Umay @canumay

## Core

Expand Down Expand Up @@ -87,11 +110,11 @@ We expect this release to ship in the DevTools of [Chrome 95](https://chromiumda

Thanks to our new contributors 👽🐷🐰🐯🐻!

Emmanouil Zoumpoulakis @emzoumpo
Milutin Kristofic @milutin
Bjørn Erik Pedersen @bep
Jerome Cukier @jckr
Saurav Kumar @svkrclg
- Emmanouil Zoumpoulakis @emzoumpo
- Milutin Kristofic @milutin
- Bjørn Erik Pedersen @bep
- Jerome Cukier @jckr
- Saurav Kumar @svkrclg

## New Audits

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": "^8.5.0"
"lighthouse": "^8.5.1"
},
"devDependencies": {
"lighthouse": "^8.5.0"
"lighthouse": "^8.5.1"
}
}
```
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": "^8.5.0"
"lighthouse": "^8.5.1"
}
}
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": "^8.5.0"
"lighthouse": "^8.5.1"
}
}
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": "^8.5.0"
"lighthouse": "^8.5.1"
},
"devDependencies": {
"lighthouse": "^8.5.0"
"lighthouse": "^8.5.1"
}
}
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 @@ -9,7 +9,7 @@
"axe-core": "4.2.3"
}
},
"lighthouseVersion": "8.5.0",
"lighthouseVersion": "8.5.1",
"fetchTime": "2021-09-07T20:11:11.853Z",
"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": "8.5.0",
"version": "8.5.1",
"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: 8.5.0
Version: 8.5.1
formFactor: mobile
screenEmulation: {
"mobile": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ Generating results...

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

0 comments on commit f974c3c

Please sign in to comment.