From b4597c322ab35fdeba59c0c2add66bfe257f4f8d Mon Sep 17 00:00:00 2001 From: Adam Raine Date: Wed, 26 Mar 2025 14:09:10 -0700 Subject: [PATCH 1/2] v12.5.1 --- changelog.md | 17 +++++++++++++++++ core/test/results/sample_v2.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 35d8f712b82b..523a21e98006 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,20 @@ +Thanks to our new contributors 👽🐷🐰🐯🐻! + + +# 12.5.1 (2025-03-26) +[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.5.0...v12.5.1) + +~~ 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 ~~ + + +## Core + +* trace-engine-result: exclude failed source maps ([#16412](https://github.com/GoogleChrome/lighthouse/pull/16412)) + # 12.5.0 (2025-03-25) [Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.4.0...v12.5.0) diff --git a/core/test/results/sample_v2.json b/core/test/results/sample_v2.json index 89c306b820c3..fe7a500638dd 100644 --- a/core/test/results/sample_v2.json +++ b/core/test/results/sample_v2.json @@ -1,5 +1,5 @@ { - "lighthouseVersion": "12.5.0", + "lighthouseVersion": "12.5.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", From bd4dd0a763f4f071304c2cea7b0c26b7f56d3ce5 Mon Sep 17 00:00:00 2001 From: Adam Raine Date: Wed, 26 Mar 2025 14:11:53 -0700 Subject: [PATCH 2/2] v12.5.1 --- 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 523a21e98006..57a99ad3cd8f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,15 +1,8 @@ -Thanks to our new contributors 👽🐷🐰🐯🐻! - - + # 12.5.1 (2025-03-26) [Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.5.0...v12.5.1) -~~ 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 136](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 f9e59ffc7cdf..51113213511d 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.5.0", + "lighthouseVersion": "12.5.1", "requestedUrl": "https://www.mikescerealshack.co/", "mainDocumentUrl": "https://www.mikescerealshack.co/", "finalDisplayedUrl": "https://www.mikescerealshack.co/", @@ -9576,7 +9576,7 @@ }, { "lhr": { - "lighthouseVersion": "12.5.0", + "lighthouseVersion": "12.5.1", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2025-02-05T01:31:50.141Z", "gatherMode": "timespan", @@ -14601,7 +14601,7 @@ }, { "lhr": { - "lighthouseVersion": "12.5.0", + "lighthouseVersion": "12.5.1", "finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty", "fetchTime": "2025-02-05T01:32:00.108Z", "gatherMode": "snapshot", @@ -19995,7 +19995,7 @@ }, { "lhr": { - "lighthouseVersion": "12.5.0", + "lighthouseVersion": "12.5.1", "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 22c8452addb9..c64b4c5fd3f0 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.5.0" + "lighthouse": "^12.5.1" }, "devDependencies": { - "lighthouse": "^12.5.0" + "lighthouse": "^12.5.1" } } ``` diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json index cae7348b84d1..dc5503f7ad2b 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.5.0" + "lighthouse": "^12.5.1" }, "devDependencies": { "lighthouse": "^8.6.0" diff --git a/package.json b/package.json index e9d6075aa550..d44f2c4378c3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lighthouse", "type": "module", - "version": "12.5.0", + "version": "12.5.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 869d46059698..f32e4f1c8088 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', function() { // 1 refresh after auditing to reset state assert.strictEqual(numNavigations, 5); - assert.strictEqual(lhr.lighthouseVersion, '12.5.0'); + assert.strictEqual(lhr.lighthouseVersion, '12.5.1'); assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/); assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');