Skip to content

Commit 240102e

Browse files
authored
v12.3.0 (#16284)
1 parent 268fcdb commit 240102e

File tree

7 files changed

+52
-10
lines changed

7 files changed

+52
-10
lines changed

changelog.md

+42
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
<a name="12.3.0"></a>
2+
# 12.3.0 (2024-12-12)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.3...v12.3.0)
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+
- Sebastian Neuner @sebastian9er
12+
13+
## New Audits
14+
15+
This release adds new security audits. These audits are informative and won't affect your best practices score.
16+
17+
* Ensure proper origin isolation with COOP ([#16275](https://github.com/GoogleChrome/lighthouse/pull/16275))
18+
* Use a strong HSTS policy ([#16257](https://github.com/GoogleChrome/lighthouse/pull/16257))
19+
20+
## Core
21+
22+
* font-size: exclude invisible text ([#16281](https://github.com/GoogleChrome/lighthouse/pull/16281))
23+
24+
## Deps
25+
26+
* upgrade puppeteer to v23.10.4 ([#16279](https://github.com/GoogleChrome/lighthouse/pull/16279))
27+
* upgrade `trace_engine` to 0.0.38 ([#16269](https://github.com/GoogleChrome/lighthouse/pull/16269))
28+
29+
## I18n
30+
31+
* import ([#16283](https://github.com/GoogleChrome/lighthouse/pull/16283))
32+
* inject strings from trace engine npm package ([#16272](https://github.com/GoogleChrome/lighthouse/pull/16272))
33+
34+
## Docs
35+
36+
* update releasing instructions ([#16252](https://github.com/GoogleChrome/lighthouse/pull/16252))
37+
38+
## Tests
39+
40+
* update network target type expectations ([#16273](https://github.com/GoogleChrome/lighthouse/pull/16273))
41+
* devtools: sync e2e ([#16253](https://github.com/GoogleChrome/lighthouse/pull/16253))
42+
143
<a name="12.2.3"></a>
244
# 12.2.3 (2024-12-02)
345
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.2...v12.2.3)

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.3",
5+
"lighthouseVersion": "12.3.0",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -8487,7 +8487,7 @@
84878487
},
84888488
{
84898489
"lhr": {
8490-
"lighthouseVersion": "12.2.3",
8490+
"lighthouseVersion": "12.3.0",
84918491
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
84928492
"fetchTime": "2024-04-18T17:03:07.290Z",
84938493
"gatherMode": "timespan",
@@ -12450,7 +12450,7 @@
1245012450
},
1245112451
{
1245212452
"lhr": {
12453-
"lighthouseVersion": "12.2.3",
12453+
"lighthouseVersion": "12.3.0",
1245412454
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1245512455
"fetchTime": "2024-04-18T17:03:17.899Z",
1245612456
"gatherMode": "snapshot",
@@ -17846,7 +17846,7 @@
1784617846
},
1784717847
{
1784817848
"lhr": {
17849-
"lighthouseVersion": "12.2.3",
17849+
"lighthouseVersion": "12.3.0",
1785017850
"requestedUrl": "https://www.mikescerealshack.co/corrections",
1785117851
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
1785217852
"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.3",
2+
"lighthouseVersion": "12.3.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.2.3"
64+
"lighthouse": "^12.3.0"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^12.2.3"
67+
"lighthouse": "^12.3.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.2.3"
7+
"lighthouse": "^12.3.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.2.3",
4+
"version": "12.3.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
@@ -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.2.3');
97+
assert.strictEqual(lhr.lighthouseVersion, '12.3.0');
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)