Skip to content

Commit b64b353

Browse files
authored
v12.2.2 (#16251)
1 parent 8c3f2de commit b64b353

File tree

7 files changed

+64
-10
lines changed

7 files changed

+64
-10
lines changed

changelog.md

+54
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1+
<a name="12.2.2"></a>
2+
# 12.2.2 (2024-11-14)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.1...v12.2.2)
4+
5+
We expect this release to ship in the DevTools of [Chrome 133](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+
- Nate @servusdei2018
12+
- Gareth Jones @G-Rath
13+
- JDev @JWebDev
14+
15+
## Core
16+
17+
* network-monitor: treat EventSource as non-critical ([#16225](https://github.com/GoogleChrome/lighthouse/pull/16225))
18+
* target-manager: ignore target if type is unknown ([#16221](https://github.com/GoogleChrome/lighthouse/pull/16221))
19+
20+
## CLI
21+
22+
* create writeFile destination if necessary ([#15990](https://github.com/GoogleChrome/lighthouse/pull/15990))
23+
24+
## Deps
25+
26+
* upgrade puppeteer to 23.8.0 ([#16248](https://github.com/GoogleChrome/lighthouse/pull/16248))
27+
* upgrade `third-party-web` to 0.26.1 ([#16219](https://github.com/GoogleChrome/lighthouse/pull/16219))
28+
* upgrade puppeteer to 23.5.2 ([#16220](https://github.com/GoogleChrome/lighthouse/pull/16220))
29+
* lighthouse-stack-packs: upgrade to 1.12.2 ([#16242](https://github.com/GoogleChrome/lighthouse/pull/16242))
30+
* lodash: migrate lodash to lodash-es ([#16211](https://github.com/GoogleChrome/lighthouse/pull/16211))
31+
* sentry: upgrade to v7 ([#16215](https://github.com/GoogleChrome/lighthouse/pull/16215))
32+
33+
## Clients
34+
35+
* lr: set CPU throttling based on benchmark ([#16226](https://github.com/GoogleChrome/lighthouse/pull/16226))
36+
* lr: fix wrong render-blocking-resources transfer size ([#16190](https://github.com/GoogleChrome/lighthouse/pull/16190))
37+
38+
## I18n
39+
40+
* import ([#16250](https://github.com/GoogleChrome/lighthouse/pull/16250))
41+
42+
## Docs
43+
44+
* readme: add `lighthouse-matchers` to related projects ([#16239](https://github.com/GoogleChrome/lighthouse/pull/16239))
45+
* readme: add Guardius to services list ([#16235](https://github.com/GoogleChrome/lighthouse/pull/16235))
46+
47+
## Tests
48+
49+
* smoke: fix devtools test runner & a11y errors ([#16236](https://github.com/GoogleChrome/lighthouse/pull/16236))
50+
51+
## Misc
52+
53+
* ci: upgrade old actions ([#16191](https://github.com/GoogleChrome/lighthouse/pull/16191))
54+
155
<a name="12.2.1"></a>
256
# 12.2.1 (2024-09-06)
357
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.0...v12.2.1)

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.1",
5+
"lighthouseVersion": "12.2.2",
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.1",
8338+
"lighthouseVersion": "12.2.2",
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.1",
12301+
"lighthouseVersion": "12.2.2",
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.1",
17697+
"lighthouseVersion": "12.2.2",
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.1",
2+
"lighthouseVersion": "12.2.2",
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.1"
64+
"lighthouse": "^12.2.2"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.2.1"
67+
"lighthouse": "^12.2.2"
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.1"
7+
"lighthouse": "^12.2.2"
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.1",
4+
"version": "12.2.2",
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.1');
98+
assert.strictEqual(lhr.lighthouseVersion, '12.2.2');
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)