Skip to content

Commit c79628a

Browse files
authored
v12.2.0 (#16145)
1 parent 4048396 commit c79628a

File tree

7 files changed

+42
-10
lines changed

7 files changed

+42
-10
lines changed

changelog.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
<a name="12.2.0"></a>
2+
# 12.2.0 (2024-08-07)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.1.0...v12.2.0)
4+
5+
We expect this release to ship in the DevTools of [Chrome 129](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
6+
7+
## Core
8+
9+
* import lantern from trace engine ([#16092](https://github.com/GoogleChrome/lighthouse/pull/16092))
10+
* long-tasks: link to latest guidance ([#16138](https://github.com/GoogleChrome/lighthouse/pull/16138))
11+
* stylesheets: disable transient stylesheet detection ([#16121](https://github.com/GoogleChrome/lighthouse/pull/16121))
12+
* third-party-summary: correct blocking time calculation ([#16117](https://github.com/GoogleChrome/lighthouse/pull/16117))
13+
* trace-engine-result: disable invalidations handler ([#16142](https://github.com/GoogleChrome/lighthouse/pull/16142))
14+
15+
## Deps
16+
17+
* upgrade `trace_engine` to 0.0.32 ([#16143](https://github.com/GoogleChrome/lighthouse/pull/16143))
18+
* upgrade puppeteer to 22.15.0 ([#16139](https://github.com/GoogleChrome/lighthouse/pull/16139))
19+
* upgrade `third-party-web` to 0.24.5 ([#16140](https://github.com/GoogleChrome/lighthouse/pull/16140))
20+
* upgrade puppeteer to 22.13.1 ([#16123](https://github.com/GoogleChrome/lighthouse/pull/16123))
21+
* upgrade typescript to 5.5.3 ([#16091](https://github.com/GoogleChrome/lighthouse/pull/16091))
22+
23+
## Tests
24+
25+
* devtools: sync e2e ([#16120](https://github.com/GoogleChrome/lighthouse/pull/16120))
26+
* treemap: ignore cookie deprecation error ([#16141](https://github.com/GoogleChrome/lighthouse/pull/16141))
27+
28+
## Misc
29+
30+
* remove alertdesk from README ([#16133](https://github.com/GoogleChrome/lighthouse/pull/16133))
31+
* build: update README.chromium when rolling devtools ([#16144](https://github.com/GoogleChrome/lighthouse/pull/16144))
32+
133
<a name="12.1.0"></a>
234
# 12.1.0 (2024-06-18)
335
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.0.0...v12.1.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.1.0",
5+
"lighthouseVersion": "12.2.0",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -8335,7 +8335,7 @@
83358335
},
83368336
{
83378337
"lhr": {
8338-
"lighthouseVersion": "12.1.0",
8338+
"lighthouseVersion": "12.2.0",
83398339
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
83408340
"fetchTime": "2024-04-18T17:03:07.290Z",
83418341
"gatherMode": "timespan",
@@ -12298,7 +12298,7 @@
1229812298
},
1229912299
{
1230012300
"lhr": {
12301-
"lighthouseVersion": "12.1.0",
12301+
"lighthouseVersion": "12.2.0",
1230212302
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1230312303
"fetchTime": "2024-04-18T17:03:17.899Z",
1230412304
"gatherMode": "snapshot",
@@ -17694,7 +17694,7 @@
1769417694
},
1769517695
{
1769617696
"lhr": {
17697-
"lighthouseVersion": "12.1.0",
17697+
"lighthouseVersion": "12.2.0",
1769817698
"requestedUrl": "https://www.mikescerealshack.co/corrections",
1769917699
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
1770017700
"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.1.0",
2+
"lighthouseVersion": "12.2.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

+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.1.0"
64+
"lighthouse": "^12.2.0"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.1.0"
67+
"lighthouse": "^12.2.0"
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.1.0"
7+
"lighthouse": "^12.2.0"
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.1.0",
4+
"version": "12.2.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

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

98-
assert.strictEqual(lhr.lighthouseVersion, '12.1.0');
98+
assert.strictEqual(lhr.lighthouseVersion, '12.2.0');
9999
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
100100

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

0 commit comments

Comments
 (0)