Skip to content

Commit 04f4386

Browse files
authored
v12.5.1 (#16413)
1 parent 6bd1451 commit 04f4386

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="12.5.1"></a>
2+
# 12.5.1 (2025-03-26)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.5.0...v12.5.1)
4+
5+
We expect this release to ship in the DevTools of [Chrome 136](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
6+
7+
## Core
8+
9+
* trace-engine-result: exclude failed source maps ([#16412](https://github.com/GoogleChrome/lighthouse/pull/16412))
10+
111
<a name="12.5.0"></a>
212
# 12.5.0 (2025-03-25)
313
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.4.0...v12.5.0)

core/test/fixtures/user-flows/reports/sample-flow-result.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"steps": [
33
{
44
"lhr": {
5-
"lighthouseVersion": "12.5.0",
5+
"lighthouseVersion": "12.5.1",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -9576,7 +9576,7 @@
95769576
},
95779577
{
95789578
"lhr": {
9579-
"lighthouseVersion": "12.5.0",
9579+
"lighthouseVersion": "12.5.1",
95809580
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
95819581
"fetchTime": "2025-02-05T01:31:50.141Z",
95829582
"gatherMode": "timespan",
@@ -14601,7 +14601,7 @@
1460114601
},
1460214602
{
1460314603
"lhr": {
14604-
"lighthouseVersion": "12.5.0",
14604+
"lighthouseVersion": "12.5.1",
1460514605
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1460614606
"fetchTime": "2025-02-05T01:32:00.108Z",
1460714607
"gatherMode": "snapshot",
@@ -19995,7 +19995,7 @@
1999519995
},
1999619996
{
1999719997
"lhr": {
19998-
"lighthouseVersion": "12.5.0",
19998+
"lighthouseVersion": "12.5.1",
1999919999
"requestedUrl": "https://www.mikescerealshack.co/corrections",
2000020000
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
2000120001
"finalDisplayedUrl": "https://www.mikescerealshack.co/corrections",

core/test/results/sample_v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lighthouseVersion": "12.5.0",
2+
"lighthouseVersion": "12.5.1",
33
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
44
"mainDocumentUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
55
"finalDisplayedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",

docs/plugins.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ A Lighthouse plugin is just a node module with a name that starts with `lighthou
6161
"type": "module",
6262
"main": "plugin.js",
6363
"peerDependencies": {
64-
"lighthouse": "^12.5.0"
64+
"lighthouse": "^12.5.1"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.5.0"
67+
"lighthouse": "^12.5.1"
6868
}
6969
}
7070
```

docs/recipes/lighthouse-plugin-example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"main": "./plugin.js",
66
"peerDependencies": {
7-
"lighthouse": "^12.5.0"
7+
"lighthouse": "^12.5.1"
88
},
99
"devDependencies": {
1010
"lighthouse": "^8.6.0"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lighthouse",
33
"type": "module",
4-
"version": "12.5.0",
4+
"version": "12.5.1",
55
"description": "Automated auditing, performance metrics, and best practices for the web.",
66
"main": "./core/index.js",
77
"bin": {

third-party/devtools-tests/e2e/lighthouse/navigation_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ describe('Navigation', function() {
9494
// 1 refresh after auditing to reset state
9595
assert.strictEqual(numNavigations, 5);
9696

97-
assert.strictEqual(lhr.lighthouseVersion, '12.5.0');
97+
assert.strictEqual(lhr.lighthouseVersion, '12.5.1');
9898
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
9999

100100
assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');

0 commit comments

Comments
 (0)