Skip to content

Commit 6a6a126

Browse files
authored
v12.6.1 (#16516)
1 parent 28b3cfb commit 6a6a126

File tree

8 files changed

+56
-16
lines changed

8 files changed

+56
-16
lines changed

changelog.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
<a name="12.6.1"></a>
2+
# 12.6.1 (2025-06-02)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.6.0...v12.6.1)
4+
5+
We expect this release to ship in the DevTools of [Chrome 139](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within a couple days.
6+
7+
## New contributors
8+
9+
Thanks to our new contributor 👽🐷🐰🐯🐻!
10+
11+
Ian Kerins @isker
12+
13+
## Core
14+
15+
* emulation: bump chrome UA to m136 ([#16489](https://github.com/GoogleChrome/lighthouse/pull/16489))
16+
* insights: add a bunch of debugData ([#16472](https://github.com/GoogleChrome/lighthouse/pull/16472))
17+
* inspector-issues: remove trusted types csp issue filter ([#16514](https://github.com/GoogleChrome/lighthouse/pull/16514))
18+
* inspector-issues: add userReidentificationIssue to artifact ([#16497](https://github.com/GoogleChrome/lighthouse/pull/16497))
19+
20+
## Report
21+
22+
* remove innerHTML usage from insights announce icon ([#16469](https://github.com/GoogleChrome/lighthouse/pull/16469))
23+
24+
## Deps
25+
26+
* upgrade deps ([#16515](https://github.com/GoogleChrome/lighthouse/pull/16515))
27+
* upgrade trace_engine to 0.0.53 ([#16496](https://github.com/GoogleChrome/lighthouse/pull/16496))
28+
* bump chrome-launcher to 1.2.0 ([#16479](https://github.com/GoogleChrome/lighthouse/pull/16479))
29+
30+
## Clients
31+
32+
* lr: disable modern-http-insight ([#16471](https://github.com/GoogleChrome/lighthouse/pull/16471))
33+
34+
## Tests
35+
36+
* fix some lantern test failures ([#16498](https://github.com/GoogleChrome/lighthouse/pull/16498))
37+
* use newer trace in metrics test ([#16492](https://github.com/GoogleChrome/lighthouse/pull/16492))
38+
39+
## Misc
40+
41+
* import i18n messages as JSON modules ([#16500](https://github.com/GoogleChrome/lighthouse/pull/16500))
42+
* scripts: add bytes-in-trace script ([#16477](https://github.com/GoogleChrome/lighthouse/pull/16477))
43+
* treemap: hide unused-bytes view mode when missing data ([#16478](https://github.com/GoogleChrome/lighthouse/pull/16478))
44+
* treemap: highlight many nodes on hover in duplicate modules table ([#16470](https://github.com/GoogleChrome/lighthouse/pull/16470))
45+
146
<a name="12.6.0"></a>
247
# 12.6.0 (2025-04-28)
348
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.5.1...v12.6.0)

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"steps": [
33
{
44
"lhr": {
5-
"lighthouseVersion": "12.6.0",
5+
"lighthouseVersion": "12.6.1",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -9670,7 +9670,7 @@
96709670
},
96719671
{
96729672
"lhr": {
9673-
"lighthouseVersion": "12.6.0",
9673+
"lighthouseVersion": "12.6.1",
96749674
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
96759675
"fetchTime": "2025-02-05T01:31:50.141Z",
96769676
"gatherMode": "timespan",
@@ -14802,7 +14802,7 @@
1480214802
},
1480314803
{
1480414804
"lhr": {
14805-
"lighthouseVersion": "12.6.0",
14805+
"lighthouseVersion": "12.6.1",
1480614806
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1480714807
"fetchTime": "2025-02-05T01:32:00.108Z",
1480814808
"gatherMode": "snapshot",
@@ -20202,7 +20202,7 @@
2020220202
},
2020320203
{
2020420204
"lhr": {
20205-
"lighthouseVersion": "12.6.0",
20205+
"lighthouseVersion": "12.6.1",
2020620206
"requestedUrl": "https://www.mikescerealshack.co/corrections",
2020720207
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
2020820208
"finalDisplayedUrl": "https://www.mikescerealshack.co/corrections",

core/test/results/sample_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lighthouseVersion": "12.6.0",
2+
"lighthouseVersion": "12.6.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

Lines changed: 2 additions & 2 deletions
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.6.0"
64+
"lighthouse": "^12.6.1"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.6.0"
67+
"lighthouse": "^12.6.1"
6868
}
6969
}
7070
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"main": "./plugin.js",
66
"peerDependencies": {
7-
"lighthouse": "^12.6.0"
7+
"lighthouse": "^12.6.1"
88
},
99
"devDependencies": {
1010
"lighthouse": "^8.6.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lighthouse",
33
"type": "module",
4-
"version": "12.6.0",
4+
"version": "12.6.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

Lines changed: 1 addition & 1 deletion
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.6.0');
97+
assert.strictEqual(lhr.lighthouseVersion, '12.6.1');
9898
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
9999

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

yarn.lock

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2963,12 +2963,7 @@ delayed-stream@~1.0.0:
29632963
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
29642964
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
29652965

2966-
devtools-protocol@0.0.1452169, devtools-protocol@0.0.1462568:
2967-
version "0.0.1462568"
2968-
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1462568.tgz#e41fa770cfa9397aad01bf8906e4748fbf1870f8"
2969-
integrity sha512-r6No9TlXny2TdijIonU7p3SBusS2DL16G6I99ZEZ8Hx572Knk19XN1uRPdLh9bwoJE+967Wl0xlrsS4VdaqjOw==
2970-
2971-
devtools-protocol@0.0.1467305:
2966+
devtools-protocol@0.0.1452169, devtools-protocol@0.0.1467305:
29722967
version "0.0.1467305"
29732968
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1467305.tgz#dd3f03ceca5b9ecde8bfa96d2fe0b7102e77953e"
29742969
integrity sha512-LxwMLqBoPPGpMdRL4NkLFRNy3QLp6Uqa7GNp1v6JaBheop2QrB9Q7q0A/q/CYYP9sBfZdHOyszVx4gc9zyk7ow==

0 commit comments

Comments
 (0)