Skip to content

Commit

Permalink
v7.1.0 (#12086)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored Feb 11, 2021
1 parent cd40279 commit 5bd6314
Show file tree
Hide file tree
Showing 12 changed files with 67 additions and 13 deletions.
54 changes: 54 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,57 @@
<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)

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 👽🐷🐰🐯🐻!

- EEEEEEYHN @EYHN

## Core

* add hidden layout-shift variant metrics ([#12046](https://github.com/GoogleChrome/lighthouse/pull/12046))
* cls: refactor CLS and CLS-AF ([#12069](https://github.com/GoogleChrome/lighthouse/pull/12069), [#12034](https://github.com/GoogleChrome/lighthouse/pull/12034))
* image-elements: set 5s time budget, add _privateCssSizing ([#12065](https://github.com/GoogleChrome/lighthouse/pull/12065))
* unsized-images: skip images that are zero-sized ([#12054](https://github.com/GoogleChrome/lighthouse/pull/12054))
* tap-targets: drop custom node rect creation ([#12005](https://github.com/GoogleChrome/lighthouse/pull/12005))
* alias element.currentSrc to element.src in node snippet ([#12007](https://github.com/GoogleChrome/lighthouse/pull/12007))
* fix js edge case in minification estimator ([#12067](https://github.com/GoogleChrome/lighthouse/pull/12067))

## Fraggle Rock

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

* fr: eliminate driver delegate from internal invocations ([#12015](https://github.com/GoogleChrome/lighthouse/pull/12015))
* fr: add more gatherers to config ([#12016](https://github.com/GoogleChrome/lighthouse/pull/12016))
* fr: add artifact dependency support ([#12045](https://github.com/GoogleChrome/lighthouse/pull/12045))
* fr: extract network monitor class ([#12006](https://github.com/GoogleChrome/lighthouse/pull/12006))
* fr: initial gatherer migration for snapshot, navigation ([#11993](https://github.com/GoogleChrome/lighthouse/pull/11993))
* fr: add session.onAnyProtocolMessage listener ([#11995](https://github.com/GoogleChrome/lighthouse/pull/11995))

## CLI

* do not set AutofillShowTypePredictions ([#12038](https://github.com/GoogleChrome/lighthouse/pull/12038))

## Deps

* axe-core: upgrade to 4.1.2 ([#12075](https://github.com/GoogleChrome/lighthouse/pull/12075))
* snyk: update snyk snapshot ([#12071](https://github.com/GoogleChrome/lighthouse/pull/12071))

## Tests

* smoke: tweak expectations based on feedback from LR ([#11962](https://github.com/GoogleChrome/lighthouse/pull/11962))
* trace-elements: test node eviction with unit rather than smoke ([#12056](https://github.com/GoogleChrome/lighthouse/pull/12056))

## Misc

* ci: increase fetch-depth for codecov SHA ([#12079](https://github.com/GoogleChrome/lighthouse/pull/12079))
* git3po: merge when green for unstable state too ([#12078](https://github.com/GoogleChrome/lighthouse/pull/12078))
* add issue assigner bot ([#12052](https://github.com/GoogleChrome/lighthouse/pull/12052))
* tighten querySelector types ([#12013](https://github.com/GoogleChrome/lighthouse/pull/12013))

<a name="7.0.1"></a>
# 7.0.1 (2021-01-26)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v7.0.0...v7.0.1)
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.0.1"
"lighthouse": "^7.1.0"
},
"devDependencies": {
"lighthouse": "^7.0.1"
"lighthouse": "^7.1.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.0.1"
"lighthouse": "^7.1.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.0.1"
"lighthouse": "^7.1.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.0.1"
"lighthouse": "^7.1.0"
},
"devDependencies": {
"lighthouse": "^7.0.1"
"lighthouse": "^7.1.0"
}
}
2 changes: 1 addition & 1 deletion docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In general, the above release dates are when new versions will be available in n

Release manager is appointed, according to the list below. However, if the appointed manager is absent, the next engineer in line in the list would own it.

@cjamcl, @adamraine, @Beytoven
@cjamcl, @adamraine

Release manager follows the below _Release Process_.

Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/scripts/release/prepare-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ NEW_CONTRIBUTORS=$(node lighthouse-core/scripts/print-contributors.js v${OLD_VER

set +x

if [[ $(echo "$NEW_CONTRIBUTORS" | wc -l) -gt 1 ]]; then
if [[ $(echo "$NEW_CONTRIBUTORS" | wc -l) -ge 1 ]]; then
printf "Thanks to our new contributors 👽🐷🐰🐯🐻! \n$NEW_CONTRIBUTORS\n" | cat - changelog.md > tmp-changelog
mv tmp-changelog changelog.md
fi
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/scripts/release/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ read -n 1 -r unused_variable

echo "✅ Test the viewer. Open http://localhost:8000"
echo "Run: "
echo " cd dist/viewer; python -m SimpleHTTPServer"
echo " cd dist/gh-pages/viewer; python -m SimpleHTTPServer"
echo ""
echo " - Works with v4 report? http://localhost:8000/?gist=7251f9eba409f385e4c0424515fe8009"
echo " - Works with v5 report? http://localhost:8000/?gist=6093e41b9b50c8d642a7e6bbc784e32f"
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
Expand Up @@ -8,7 +8,7 @@
"axe-core": "4.1.2"
}
},
"lighthouseVersion": "7.0.1",
"lighthouseVersion": "7.1.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.0.1",
"version": "7.1.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.0.1
Version: 7.1.0
formFactor: mobile
screenEmulation: {
"mobile": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ Generating results...

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

0 comments on commit 5bd6314

Please sign in to comment.