Skip to content

Commit 31bdd8a

Browse files
authored
v12.2.1 (#16179)
1 parent c212128 commit 31bdd8a

File tree

7 files changed

+45
-10
lines changed

7 files changed

+45
-10
lines changed

changelog.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
<a name="12.2.1"></a>
2+
# 12.2.1 (2024-09-06)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.0...v12.2.1)
4+
5+
We expect this release to ship in the DevTools of [Chrome 130](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
6+
7+
## Core
8+
9+
* third-party-cookies: update description for 3PCD updates ([#16177](https://github.com/GoogleChrome/lighthouse/pull/16177), [#16158](https://github.com/GoogleChrome/lighthouse/pull/16158))
10+
* uses-text-compression: ignore percent threshold for large savings ([#16165](https://github.com/GoogleChrome/lighthouse/pull/16165))
11+
12+
## Deps
13+
14+
* upgrade puppeteer to 23.3.0 ([#16178](https://github.com/GoogleChrome/lighthouse/pull/16178), [#16161](https://github.com/GoogleChrome/lighthouse/pull/16161))
15+
* upgrade `axe-core` to 4.10.0 ([#16162](https://github.com/GoogleChrome/lighthouse/pull/16162))
16+
17+
## Clients
18+
19+
* devtools: require third-party-web to be provided ([#16166](https://github.com/GoogleChrome/lighthouse/pull/16166))
20+
21+
## I18n
22+
23+
* support reusing the same placeholder for ICU ([#16159](https://github.com/GoogleChrome/lighthouse/pull/16159))
24+
25+
## Tests
26+
27+
* pass logger to smokehouse runners to get log even on timeout ([#16175](https://github.com/GoogleChrome/lighthouse/pull/16175))
28+
* update BUILD.gn due to upstream CDT change ([#16171](https://github.com/GoogleChrome/lighthouse/pull/16171))
29+
* devtools: sync e2e ([#16174](https://github.com/GoogleChrome/lighthouse/pull/16174))
30+
* devtools: sync e2e ([#16160](https://github.com/GoogleChrome/lighthouse/pull/16160))
31+
32+
## Misc
33+
34+
* format lighthouse-result.proto ([#16170](https://github.com/GoogleChrome/lighthouse/pull/16170))
35+
136
<a name="12.2.0"></a>
237
# 12.2.0 (2024-08-07)
338
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.1.0...v12.2.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.2.0",
5+
"lighthouseVersion": "12.2.1",
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.2.0",
8338+
"lighthouseVersion": "12.2.1",
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.2.0",
12301+
"lighthouseVersion": "12.2.1",
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.2.0",
17697+
"lighthouseVersion": "12.2.1",
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.2.0",
2+
"lighthouseVersion": "12.2.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

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

+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.2.0');
98+
assert.strictEqual(lhr.lighthouseVersion, '12.2.1');
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)