Skip to content

Commit 94b051f

Browse files
authored
v12.8.0 (#16591)
1 parent 90b9820 commit 94b051f

File tree

8 files changed

+37
-11
lines changed

8 files changed

+37
-11
lines changed

changelog.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
<a name="12.8.0"></a>
2+
# 12.8.0 (2025-07-11)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.7.1...v12.8.0)
4+
5+
We expect this release to ship in the DevTools of [Chrome 140](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 1 week.
6+
7+
## New Audits
8+
9+
* mitigate dom-based xss with trusted types ([#16493](https://github.com/GoogleChrome/lighthouse/pull/16493))
10+
11+
## Core
12+
13+
* tracehouse: fix OOM when computing attributable URLs ([#16585](https://github.com/GoogleChrome/lighthouse/pull/16585))
14+
* trusted-types-xss: add link to lighthouse docs ([#16590](https://github.com/GoogleChrome/lighthouse/pull/16590))
15+
16+
## Deps
17+
18+
* upgrade trace_engine to 0.0.57 ([#16589](https://github.com/GoogleChrome/lighthouse/pull/16589))
19+
20+
## Tests
21+
22+
* disable issues-mixed-content smoke test ([#16586](https://github.com/GoogleChrome/lighthouse/pull/16586))
23+
* add test for trace-engine-result ([#16574](https://github.com/GoogleChrome/lighthouse/pull/16574))
24+
* update expectations ([#16580](https://github.com/GoogleChrome/lighthouse/pull/16580))
25+
* devtools: avoid failure on Unknown VE Context ([#16581](https://github.com/GoogleChrome/lighthouse/pull/16581))
26+
127
<a name="12.7.1"></a>
228
# 12.7.1 (2025-07-02)
329
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.7.0...v12.7.1)

core/test/devtools-tests/run-e2e-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cd "$DEVTOOLS_PATH"
1717
TEST_PATTERN="${1:-test/e2e/lighthouse/*}"
1818

1919
# Don't let console.errors() like 'Unknown VE Context' fail the build
20-
sed -i 's| fatalErrors.push(message);|/*fatalErrors.push(message)*/|' test/conductor/events.ts
20+
sed -i.bak 's| fatalErrors.push(message);|/*fatalErrors.push(message)*/|' test/conductor/events.ts
2121
autoninja -C "out/$BUILD_FOLDER"
2222

2323
vpython3 third_party/node/node.py --output scripts/run_on_target.mjs gen/test/run.js "$TEST_PATTERN" --target=$BUILD_FOLDER --skip-ninja

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.7.1",
5+
"lighthouseVersion": "12.8.0",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -10822,7 +10822,7 @@
1082210822
},
1082310823
{
1082410824
"lhr": {
10825-
"lighthouseVersion": "12.7.1",
10825+
"lighthouseVersion": "12.8.0",
1082610826
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1082710827
"fetchTime": "2025-02-05T01:31:50.141Z",
1082810828
"gatherMode": "timespan",
@@ -16314,7 +16314,7 @@
1631416314
},
1631516315
{
1631616316
"lhr": {
16317-
"lighthouseVersion": "12.7.1",
16317+
"lighthouseVersion": "12.8.0",
1631816318
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1631916319
"fetchTime": "2025-02-05T01:32:00.108Z",
1632016320
"gatherMode": "snapshot",
@@ -22336,7 +22336,7 @@
2233622336
},
2233722337
{
2233822338
"lhr": {
22339-
"lighthouseVersion": "12.7.1",
22339+
"lighthouseVersion": "12.8.0",
2234022340
"requestedUrl": "https://www.mikescerealshack.co/corrections",
2234122341
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
2234222342
"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.7.1",
2+
"lighthouseVersion": "12.8.0",
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.7.1"
64+
"lighthouse": "^12.8.0"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.7.1"
67+
"lighthouse": "^12.8.0"
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.7.1"
7+
"lighthouse": "^12.8.0"
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.7.1",
4+
"version": "12.8.0",
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.7.1');
97+
assert.strictEqual(lhr.lighthouseVersion, '12.8.0');
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)