From 610b897bfc93068f1cf97449730e136599dce9e0 Mon Sep 17 00:00:00 2001 From: Adam Raine <6752989+adamraine@users.noreply.github.com> Date: Tue, 14 Feb 2023 15:43:23 -0800 Subject: [PATCH] v10.0.1 (#14796) --- changelog.md | 27 ++++++++++++++++++- .../reports/sample-flow-result.json | 8 +++--- core/test/results/sample_v2.json | 2 +- docs/plugins.md | 4 +-- .../lighthouse-plugin-example/package.json | 2 +- package.json | 2 +- .../e2e/lighthouse/navigation_test.ts | 2 +- 7 files changed, 36 insertions(+), 11 deletions(-) diff --git a/changelog.md b/changelog.md index 368b464dc97a..ffceedfb47b2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,28 @@ + +# 10.0.1 (2023-02-14) +[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v10.0.0...v10.0.1) + +We expect this release to ship in the DevTools of [Chrome 112](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks. + +## Core + +* reduce DevTools flakiness ([#14782](https://github.com/GoogleChrome/lighthouse/pull/14782)) +* doctype: only consider main frame ([#14795](https://github.com/GoogleChrome/lighthouse/pull/14795)) +* paste-preventing-inputs: rephrase description ([#14794](https://github.com/GoogleChrome/lighthouse/pull/14794)) + +## Deps + +* move quibble to dev deps ([#14780](https://github.com/GoogleChrome/lighthouse/pull/14780)) + +## Docs + +* split changelog at 10.0 ([#14778](https://github.com/GoogleChrome/lighthouse/pull/14778)) +* changelog: minor v10 edits ([#14777](https://github.com/GoogleChrome/lighthouse/pull/14777)) + +## Misc + +* update .npmignore ([#14779](https://github.com/GoogleChrome/lighthouse/pull/14779)) + # 10.0.0 (2023-02-09) [Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v9.6.8...v10.0.0) @@ -523,4 +548,4 @@ To give a flow step a custom name, use `flow.snapshot({name: 'Custom name'})`. P # Older Changelog -See the [older changelog](changelog-pre10.md) for pre-10.0 revisions. \ No newline at end of file +See the [older changelog](changelog-pre10.md) for pre-10.0 revisions. diff --git a/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json b/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json index a9f8121a64c8..85f124c25303 100644 --- a/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json +++ b/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json @@ -2,7 +2,7 @@ "steps": [ { "lhr": { - "lighthouseVersion": "10.0.0", + "lighthouseVersion": "10.0.1", "requestedUrl": "https://www.mikescerealshack.co/", "mainDocumentUrl": "https://www.mikescerealshack.co/", "finalDisplayedUrl": "https://www.mikescerealshack.co/", @@ -7449,7 +7449,7 @@ }, { "lhr": { - "lighthouseVersion": "10.0.0", + "lighthouseVersion": "10.0.1", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2023-01-13T23:27:51.982Z", "gatherMode": "timespan", @@ -11150,7 +11150,7 @@ }, { "lhr": { - "lighthouseVersion": "10.0.0", + "lighthouseVersion": "10.0.1", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2023-01-13T23:28:01.888Z", "gatherMode": "snapshot", @@ -15798,7 +15798,7 @@ }, { "lhr": { - "lighthouseVersion": "10.0.0", + "lighthouseVersion": "10.0.1", "requestedUrl": "https://www.mikescerealshack.co/corrections", "mainDocumentUrl": "https://www.mikescerealshack.co/corrections", "finalDisplayedUrl": "https://www.mikescerealshack.co/corrections", diff --git a/core/test/results/sample_v2.json b/core/test/results/sample_v2.json index d257667448bb..1b64446ff31d 100644 --- a/core/test/results/sample_v2.json +++ b/core/test/results/sample_v2.json @@ -1,5 +1,5 @@ { - "lighthouseVersion": "10.0.0", + "lighthouseVersion": "10.0.1", "requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html", "mainDocumentUrl": "http://localhost:10200/dobetterweb/dbw_tester.html", "finalDisplayedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html", diff --git a/docs/plugins.md b/docs/plugins.md index 76b240e04d3b..61f0b0cb0bb5 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -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": "^10.0.0" + "lighthouse": "^10.0.1" }, "devDependencies": { - "lighthouse": "^10.0.0" + "lighthouse": "^10.0.1" } } ``` diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json index 04cc372dd349..06d561520a05 100644 --- a/docs/recipes/lighthouse-plugin-example/package.json +++ b/docs/recipes/lighthouse-plugin-example/package.json @@ -4,7 +4,7 @@ "type": "module", "main": "./plugin.js", "peerDependencies": { - "lighthouse": "^10.0.0" + "lighthouse": "^10.0.1" }, "devDependencies": { "lighthouse": "^8.6.0" diff --git a/package.json b/package.json index d43acb069c98..f0ca7f274ec1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lighthouse", "type": "module", - "version": "10.0.0", + "version": "10.0.1", "description": "Automated auditing, performance metrics, and best practices for the web.", "main": "./core/index.js", "bin": { diff --git a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts index ca03bedb7c01..18fb8f243c98 100644 --- a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts +++ b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts @@ -94,7 +94,7 @@ describe('Navigation', async function() { assert.strictEqual(numNavigations, 6); } - assert.strictEqual(lhr.lighthouseVersion, '10.0.0'); + assert.strictEqual(lhr.lighthouseVersion, '10.0.1'); assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/); assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');