diff --git a/changelog.md b/changelog.md index f80d03adc569..719713cb126a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,30 @@ + +# 10.1.1 (2023-04-14) +[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v10.1.0...v10.1.1) + +We expect this release to ship in the DevTools of [Chrome 114](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks. + +## Core + +* collect fetchpriority for images and rel=preload links ([#14925](https://github.com/GoogleChrome/lighthouse/pull/14925)) +* installability: deprecate scheme support warning ([#14960](https://github.com/GoogleChrome/lighthouse/pull/14960)) +* link-elements: gracefully handle header parser error ([#14936](https://github.com/GoogleChrome/lighthouse/pull/14936)) + +## Deps + +* upgrade `http-link-header` ([#14973](https://github.com/GoogleChrome/lighthouse/pull/14973)) +* upgrade `devtools-protocol` & deprecate SW install error ([#14974](https://github.com/GoogleChrome/lighthouse/pull/14974)) + +## Tests + +* remove cross origin timespan test ([#14932](https://github.com/GoogleChrome/lighthouse/pull/14932)) +* devtools: fix config for testing ([#14962](https://github.com/GoogleChrome/lighthouse/pull/14962)) +* devtools: sync e2e ([#14931](https://github.com/GoogleChrome/lighthouse/pull/14931)) + +## Misc + +* proto: fix case in entities fields ([#14959](https://github.com/GoogleChrome/lighthouse/pull/14959)) + # 10.1.0 (2023-03-23) [Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v10.0.2...v10.1.0) 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 c7b2bee05726..1cfa67510599 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.1.0", + "lighthouseVersion": "10.1.1", "requestedUrl": "https://www.mikescerealshack.co/", "mainDocumentUrl": "https://www.mikescerealshack.co/", "finalDisplayedUrl": "https://www.mikescerealshack.co/", @@ -7478,7 +7478,7 @@ }, { "lhr": { - "lighthouseVersion": "10.1.0", + "lighthouseVersion": "10.1.1", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2023-01-13T23:27:51.982Z", "gatherMode": "timespan", @@ -11247,7 +11247,7 @@ }, { "lhr": { - "lighthouseVersion": "10.1.0", + "lighthouseVersion": "10.1.1", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2023-01-13T23:28:01.888Z", "gatherMode": "snapshot", @@ -15898,7 +15898,7 @@ }, { "lhr": { - "lighthouseVersion": "10.1.0", + "lighthouseVersion": "10.1.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 53d58b4624d8..14a5fa547071 100644 --- a/core/test/results/sample_v2.json +++ b/core/test/results/sample_v2.json @@ -1,5 +1,5 @@ { - "lighthouseVersion": "10.1.0", + "lighthouseVersion": "10.1.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 ffdf9c40bd2d..a4d5e51e67bd 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.1.0" + "lighthouse": "^10.1.1" }, "devDependencies": { - "lighthouse": "^10.1.0" + "lighthouse": "^10.1.1" } } ``` diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json index 654ad2d07416..0a582bc138ed 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.1.0" + "lighthouse": "^10.1.1" }, "devDependencies": { "lighthouse": "^8.6.0" diff --git a/package.json b/package.json index edaedc899619..337fedfca3eb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lighthouse", "type": "module", - "version": "10.1.0", + "version": "10.1.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 e97bc1da9b98..3c2936051ffa 100644 --- a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts +++ b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts @@ -113,7 +113,7 @@ describe.skipOnParallel('Navigation', async function() { assert.strictEqual(numNavigations, 6); } - assert.strictEqual(lhr.lighthouseVersion, '10.1.0'); + assert.strictEqual(lhr.lighthouseVersion, '10.1.1'); assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/); assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');