Skip to content

Commit

Permalink
v6.4.1 (#11513)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored Oct 2, 2020
1 parent 3e4592d commit 6b199b2
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 11 deletions.
27 changes: 26 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
<a name="6.4.0"></a>
<a name="6.4.1"></a>
# 6.4.1 (2020-10-02)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v6.4.0...v6.4.1)

This is a minor release to fix an issue in the npm package where v6.4.0 was published with a lot of unncessary files.

## New Contributors

Thanks to our new contributor 👽🐷🐰🐯🐻!

- Csaba Palfi @csabapalfi

## Core

* prevent attribute truncation side-effects ([#11503](https://github.com/GoogleChrome/lighthouse/pull/11503))
* save lhr on -A ([#11509](https://github.com/GoogleChrome/lighthouse/pull/11509))

## Tests

* run every smoke test (except forms) for bundle ([#11493](https://github.com/GoogleChrome/lighthouse/pull/11493))

## Misc

* add chromium webtests to npmignore ([#11512](https://github.com/GoogleChrome/lighthouse/pull/11512))

<a name="6.4.0"></a>
# 6.4.0 (2020-09-30)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v6.3.0...v6.4.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": "^6.4.0"
"lighthouse": "^6.4.1"
},
"devDependencies": {
"lighthouse": "^6.4.0"
"lighthouse": "^6.4.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": "^6.4.0"
"lighthouse": "^6.4.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": "^6.4.0"
"lighthouse": "^6.4.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": "^6.4.0"
"lighthouse": "^6.4.1"
},
"devDependencies": {
"lighthouse": "^6.4.0"
"lighthouse": "^6.4.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 @@ -8,7 +8,7 @@
"axe-core": "3.5.5"
}
},
"lighthouseVersion": "6.4.0",
"lighthouseVersion": "6.4.1",
"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": "6.4.0",
"version": "6.4.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: 6.4.0
Version: 6.4.1
TestedAsMobileDevice: true
ViewportDimensions: {
"innerWidth": 360,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ Generating results...

=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
Version: 6.4.0
Version: 6.4.1
TestedAsMobileDevice: true
ViewportDimensions: {
"innerWidth": 980,
Expand Down

0 comments on commit 6b199b2

Please sign in to comment.