From 2b6c32e3d71ee5b16c37a70cfa93848884596e24 Mon Sep 17 00:00:00 2001 From: Adam Raine Date: Fri, 6 Sep 2024 10:44:54 -0700 Subject: [PATCH] v12.3.0 --- changelog.md | 11 ++--------- .../user-flows/reports/sample-flow-result.json | 8 ++++---- docs/plugins.md | 4 ++-- docs/recipes/lighthouse-plugin-example/package.json | 2 +- package.json | 2 +- .../devtools-tests/e2e/lighthouse/navigation_test.ts | 2 +- 6 files changed, 11 insertions(+), 18 deletions(-) diff --git a/changelog.md b/changelog.md index 51cd0394d060..ac032af51f7c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,15 +1,8 @@ -Thanks to our new contributors 👽🐷🐰🐯🐻! - - + # 12.3.0 (2024-09-06) [Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.0...v12.3.0) -~~ TODO: https://chromiumdash.appspot.com/schedule ~~ -We expect this release to ship in the DevTools of [Chrome XX](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks. - -## Notable Changes -~~ TODO: Move notable changes here ~~ - +We expect this release to ship in the DevTools of [Chrome 130](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks. ## Core diff --git a/core/test/fixtures/user-flows/reports/sample-flow-result.json b/core/test/fixtures/user-flows/reports/sample-flow-result.json index 0fa97e984e90..1751fd9dd9ab 100644 --- a/core/test/fixtures/user-flows/reports/sample-flow-result.json +++ b/core/test/fixtures/user-flows/reports/sample-flow-result.json @@ -2,7 +2,7 @@ "steps": [ { "lhr": { - "lighthouseVersion": "12.2.0", + "lighthouseVersion": "12.3.0", "requestedUrl": "https://www.mikescerealshack.co/", "mainDocumentUrl": "https://www.mikescerealshack.co/", "finalDisplayedUrl": "https://www.mikescerealshack.co/", @@ -8335,7 +8335,7 @@ }, { "lhr": { - "lighthouseVersion": "12.2.0", + "lighthouseVersion": "12.3.0", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2024-04-18T17:03:07.290Z", "gatherMode": "timespan", @@ -12298,7 +12298,7 @@ }, { "lhr": { - "lighthouseVersion": "12.2.0", + "lighthouseVersion": "12.3.0", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2024-04-18T17:03:17.899Z", "gatherMode": "snapshot", @@ -17694,7 +17694,7 @@ }, { "lhr": { - "lighthouseVersion": "12.2.0", + "lighthouseVersion": "12.3.0", "requestedUrl": "https://www.mikescerealshack.co/corrections", "mainDocumentUrl": "https://www.mikescerealshack.co/corrections", "finalDisplayedUrl": "https://www.mikescerealshack.co/corrections", diff --git a/docs/plugins.md b/docs/plugins.md index ed23ac2c3a3c..7756c9863afb 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -61,10 +61,10 @@ A Lighthouse plugin is just a node module with a name that starts with `lighthou "type": "module", "main": "plugin.js", "peerDependencies": { - "lighthouse": "^12.2.0" + "lighthouse": "^12.3.0" }, "devDependencies": { - "lighthouse": "^12.2.0" + "lighthouse": "^12.3.0" } } ``` diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json index 0eab97f57964..dd1fc33d5331 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": "^12.2.0" + "lighthouse": "^12.3.0" }, "devDependencies": { "lighthouse": "^8.6.0" diff --git a/package.json b/package.json index 2ddc4ee3a00b..caf81237493e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lighthouse", "type": "module", - "version": "12.2.0", + "version": "12.3.0", "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 c4f55be17bc5..b01b8d742262 100644 --- a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts +++ b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts @@ -95,7 +95,7 @@ describe('Navigation', function() { // 1 refresh after auditing to reset state assert.strictEqual(numNavigations, 5); - assert.strictEqual(lhr.lighthouseVersion, '12.2.0'); + assert.strictEqual(lhr.lighthouseVersion, '12.3.0'); assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/); assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');