Skip to content

Commit 61fae33

Browse files
authored
v12.7.1 (#16573)
1 parent 8bee664 commit 61fae33

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="12.7.1"></a>
2+
# 12.7.1 (2025-07-02)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.7.0...v12.7.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 a week.
6+
7+
## Core
8+
9+
* trace-engine-result: initialize SyntheticEventsManager ([#16572](https://github.com/GoogleChrome/lighthouse/pull/16572))
10+
111
<a name="12.7.0"></a>
212
# 12.7.0 (2025-06-27)
313
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.6.1...v12.7.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.7.0",
5+
"lighthouseVersion": "12.7.1",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -10763,7 +10763,7 @@
1076310763
},
1076410764
{
1076510765
"lhr": {
10766-
"lighthouseVersion": "12.7.0",
10766+
"lighthouseVersion": "12.7.1",
1076710767
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1076810768
"fetchTime": "2025-02-05T01:31:50.141Z",
1076910769
"gatherMode": "timespan",
@@ -16255,7 +16255,7 @@
1625516255
},
1625616256
{
1625716257
"lhr": {
16258-
"lighthouseVersion": "12.7.0",
16258+
"lighthouseVersion": "12.7.1",
1625916259
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1626016260
"fetchTime": "2025-02-05T01:32:00.108Z",
1626116261
"gatherMode": "snapshot",
@@ -22277,7 +22277,7 @@
2227722277
},
2227822278
{
2227922279
"lhr": {
22280-
"lighthouseVersion": "12.7.0",
22280+
"lighthouseVersion": "12.7.1",
2228122281
"requestedUrl": "https://www.mikescerealshack.co/corrections",
2228222282
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
2228322283
"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.0",
2+
"lighthouseVersion": "12.7.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.7.0"
64+
"lighthouse": "^12.7.1"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.7.0"
67+
"lighthouse": "^12.7.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.7.0"
7+
"lighthouse": "^12.7.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.7.0",
4+
"version": "12.7.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.7.0');
97+
assert.strictEqual(lhr.lighthouseVersion, '12.7.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)