Skip to content

Commit 270f7b5

Browse files
authored
v12.8.1 (#16617)
1 parent 7d683ba commit 270f7b5

File tree

7 files changed

+44
-10
lines changed

7 files changed

+44
-10
lines changed

changelog.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
<a name="12.8.1"></a>
2+
# 12.8.1 (2025-08-01)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.8.0...v12.8.1)
4+
5+
We expect this release to ship in the DevTools of [Chrome 140](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
6+
7+
## New contributors
8+
9+
Thanks to our new contributors 👽🐷🐰🐯🐻!
10+
11+
- Boluwatife Omosowon @bolu-tife
12+
- Jonas Thelemann @dargmuesli
13+
14+
15+
## Core
16+
17+
* network-requests: add initiators to debugData ([#16605](https://github.com/GoogleChrome/lighthouse/pull/16605))
18+
19+
## I18n
20+
21+
* import ([#16616](https://github.com/GoogleChrome/lighthouse/pull/16616))
22+
23+
## Tests
24+
25+
* disable csp-block-all smoke test ([#16598](https://github.com/GoogleChrome/lighthouse/pull/16598))
26+
27+
## Misc
28+
29+
* revert json modules to fully support Node 20 ([#16613](https://github.com/GoogleChrome/lighthouse/pull/16613))
30+
* ci: clear devtools build cache ([#16615](https://github.com/GoogleChrome/lighthouse/pull/16615))
31+
* logger: bump to 2.0.2 ([#16604](https://github.com/GoogleChrome/lighthouse/pull/16604))
32+
* logger: update debug dep to v4 ([#16601](https://github.com/GoogleChrome/lighthouse/pull/16601))
33+
* treemap: fix sizes not showing for source map nodes ([#16593](https://github.com/GoogleChrome/lighthouse/pull/16593))
34+
135
<a name="12.8.0"></a>
236
# 12.8.0 (2025-07-11)
337
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.7.1...v12.8.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.8.0",
5+
"lighthouseVersion": "12.8.1",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -10910,7 +10910,7 @@
1091010910
},
1091110911
{
1091210912
"lhr": {
10913-
"lighthouseVersion": "12.8.0",
10913+
"lighthouseVersion": "12.8.1",
1091410914
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1091510915
"fetchTime": "2025-02-05T01:31:50.141Z",
1091610916
"gatherMode": "timespan",
@@ -16408,7 +16408,7 @@
1640816408
},
1640916409
{
1641016410
"lhr": {
16411-
"lighthouseVersion": "12.8.0",
16411+
"lighthouseVersion": "12.8.1",
1641216412
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1641316413
"fetchTime": "2025-02-05T01:32:00.108Z",
1641416414
"gatherMode": "snapshot",
@@ -22430,7 +22430,7 @@
2243022430
},
2243122431
{
2243222432
"lhr": {
22433-
"lighthouseVersion": "12.8.0",
22433+
"lighthouseVersion": "12.8.1",
2243422434
"requestedUrl": "https://www.mikescerealshack.co/corrections",
2243522435
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
2243622436
"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.8.0",
2+
"lighthouseVersion": "12.8.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.8.0"
64+
"lighthouse": "^12.8.1"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.8.0"
67+
"lighthouse": "^12.8.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.8.0"
7+
"lighthouse": "^12.8.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.8.0",
4+
"version": "12.8.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.8.0');
97+
assert.strictEqual(lhr.lighthouseVersion, '12.8.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)