Skip to content

Commit

Permalink
v9.6.8 (#14483)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Oct 31, 2022
1 parent 5932d59 commit 16a0a77
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 10 deletions.
11 changes: 11 additions & 0 deletions changelog.md
@@ -1,3 +1,14 @@
<a name="9.6.8"></a>
# 9.6.8 (2022-10-31)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v9.6.7...v9.6.8)

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

## Core

* deprecations: use translated strings from devtools repo ([#13961](https://github.com/GoogleChrome/lighthouse/pull/13961))
* network-request: backport rendererStartTime ([#14481](https://github.com/GoogleChrome/lighthouse/pull/14481))

<a name="9.6.7"></a>
# 9.6.7 (2022-09-01)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v9.6.6...v9.6.7)
Expand Down
4 changes: 2 additions & 2 deletions docs/plugins.md
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.6.7"
"lighthouse": "^9.6.8"
},
"devDependencies": {
"lighthouse": "^9.6.7"
"lighthouse": "^9.6.8"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/custom-audit/package.json
Expand Up @@ -3,6 +3,6 @@
"private": true,
"scripts": {},
"devDependencies": {
"lighthouse": "^9.6.7"
"lighthouse": "^9.6.8"
}
}
2 changes: 1 addition & 1 deletion docs/recipes/gulp/package.json
Expand Up @@ -7,6 +7,6 @@
"devDependencies": {
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"lighthouse": "^9.6.7"
"lighthouse": "^9.6.8"
}
}
2 changes: 1 addition & 1 deletion docs/recipes/lighthouse-plugin-example/package.json
Expand Up @@ -3,7 +3,7 @@
"private": true,
"main": "./plugin.js",
"peerDependencies": {
"lighthouse": "^9.6.7"
"lighthouse": "^9.6.8"
},
"devDependencies": {
"lighthouse": "^8.6.0"
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/test/results/sample_v2.json
@@ -1,5 +1,5 @@
{
"lighthouseVersion": "9.6.7",
"lighthouseVersion": "9.6.8",
"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
@@ -1,6 +1,6 @@
{
"name": "lighthouse",
"version": "9.6.7",
"version": "9.6.8",
"description": "Automated auditing, performance metrics, and best practices for the web.",
"main": "./lighthouse-core/index.js",
"bin": {
Expand Down
Expand Up @@ -15,7 +15,7 @@ Analyze page load: enabled visible

=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-emulate-pass.html
Version: 9.6.7
Version: 9.6.8
formFactor: mobile
screenEmulation: {
"mobile": true,
Expand Down
Expand Up @@ -262,7 +262,7 @@ Generating results...

=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
Version: 9.6.7
Version: 9.6.8
ViewportDimensions: {
"innerWidth": 980,
"innerHeight": 1743,
Expand Down
Expand Up @@ -373,7 +373,7 @@ Generating results...

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

0 comments on commit 16a0a77

Please sign in to comment.