Skip to content

Commit 1c785cc

Browse files
authored
v12.2.3 (#16268)
1 parent dfc2a4b commit 1c785cc

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

changelog.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<a name="12.2.3"></a>
2+
# 12.2.3 (2024-12-02)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.2...v12.2.3)
4+
5+
This release is only for PageSpeed Insights and we expect it to ship within 2 weeks.
6+
7+
## Notable Changes
8+
9+
The CPU throttling factor for PageSpeed Insights has been adjusted ([#16256](https://github.com/GoogleChrome/lighthouse/pull/16256)) to account for the low CPU performance benchmarks typical in PageSpeed production environments. In general, TBT metric times for all sites should improve when testing with PageSpeed Insights.
10+
11+
All other Lighthouse clients (Lighthouse CLI, the Node API, Lighthouse panel in DevTools, etc) should not be affected by this change.
12+
13+
## Tests
14+
15+
* inline-fs: fix error in Node 20 ([#16262](https://github.com/GoogleChrome/lighthouse/pull/16262))
16+
117
<a name="12.2.2"></a>
218
# 12.2.2 (2024-11-14)
319
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.1...v12.2.2)

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