Skip to content

Commit 6ca156b

Browse files
authored
v13.0.1 (#16773)
1 parent 58b59bb commit 6ca156b

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

changelog.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1+
<a name="13.0.1"></a>
2+
# 13.0.1 (2025-10-22)
3+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v13.0.0...v13.0.1)
4+
5+
We expect this release to ship in the DevTools of [Chrome 143](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within a week.
6+
7+
## Core
8+
9+
* fix incorrect dpr used for responsive images advice ([#16771](https://github.com/GoogleChrome/lighthouse/pull/16771))
10+
111
<a name="13.0.0"></a>
212
# 13.0.0 (2025-10-10)
313
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.8.2...v13.0.0)
414

15+
[Release article](https://developer.chrome.com/blog/lighthouse-13-0)
16+
517
We expect this release to ship in the DevTools of [Chrome 143](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within a week.
618

719
## New contributors
@@ -20,6 +32,7 @@ Thanks to our new contributors 👽🐷🐰🐯🐻!
2032
* remove no-document-write audit ([#16750](https://github.com/GoogleChrome/lighthouse/pull/16750))
2133
* remove uses-passive-event-listeners audit ([#16751](https://github.com/GoogleChrome/lighthouse/pull/16751))
2234
* remove third-party-facades audit ([#16710](https://github.com/GoogleChrome/lighthouse/pull/16710))
35+
* scoring: adjust a11y weights and document approach ([#16624](https://github.com/GoogleChrome/lighthouse/pull/16624))
2336

2437
## Core
2538

@@ -41,7 +54,6 @@ Thanks to our new contributors 👽🐷🐰🐯🐻!
4154
* inspector-issues: remove empty arrays ([#16736](https://github.com/GoogleChrome/lighthouse/pull/16736))
4255
* legacy-javascript: update caniuse data ([#16699](https://github.com/GoogleChrome/lighthouse/pull/16699))
4356
* network-request: remove receiveHeadersStart M115 compat ([#16738](https://github.com/GoogleChrome/lighthouse/pull/16738))
44-
* scoring: adjust a11y weights and document approach ([#16624](https://github.com/GoogleChrome/lighthouse/pull/16624))
4557
* server-response-time: defer to Document Latency insight ([#16715](https://github.com/GoogleChrome/lighthouse/pull/16715))
4658
* trace-elements: remove unused event types ([#16734](https://github.com/GoogleChrome/lighthouse/pull/16734))
4759
* trace-elements: handle shadow roots ([#16718](https://github.com/GoogleChrome/lighthouse/pull/16718))

core/test/fixtures/user-flows/reports/sample-flow-result.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"steps": [
33
{
44
"lhr": {
5-
"lighthouseVersion": "13.0.0",
5+
"lighthouseVersion": "13.0.1",
66
"requestedUrl": "https://www.mikescerealshack.co/",
77
"mainDocumentUrl": "https://www.mikescerealshack.co/",
88
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -7741,7 +7741,7 @@
77417741
},
77427742
{
77437743
"lhr": {
7744-
"lighthouseVersion": "13.0.0",
7744+
"lighthouseVersion": "13.0.1",
77457745
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
77467746
"fetchTime": "2025-02-05T01:31:50.141Z",
77477747
"gatherMode": "timespan",
@@ -11122,7 +11122,7 @@
1112211122
},
1112311123
{
1112411124
"lhr": {
11125-
"lighthouseVersion": "13.0.0",
11125+
"lighthouseVersion": "13.0.1",
1112611126
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
1112711127
"fetchTime": "2025-02-05T01:32:00.108Z",
1112811128
"gatherMode": "snapshot",
@@ -16774,7 +16774,7 @@
1677416774
},
1677516775
{
1677616776
"lhr": {
16777-
"lighthouseVersion": "13.0.0",
16777+
"lighthouseVersion": "13.0.1",
1677816778
"requestedUrl": "https://www.mikescerealshack.co/corrections",
1677916779
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
1678016780
"finalDisplayedUrl": "https://www.mikescerealshack.co/corrections",

core/test/results/sample_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lighthouseVersion": "13.0.0",
2+
"lighthouseVersion": "13.0.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

Lines changed: 2 additions & 2 deletions
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": "^13.0.0"
64+
"lighthouse": "^13.0.1"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^13.0.0"
67+
"lighthouse": "^13.0.1"
6868
}
6969
}
7070
```

docs/recipes/lighthouse-plugin-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"main": "./plugin.js",
66
"peerDependencies": {
7-
"lighthouse": "^13.0.0"
7+
"lighthouse": "^13.0.1"
88
},
99
"devDependencies": {
1010
"lighthouse": "^8.6.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lighthouse",
33
"type": "module",
4-
"version": "13.0.0",
4+
"version": "13.0.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_non_hosted/lighthouse/navigation_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe('Navigation', function() {
7878
// 1 refresh after auditing to reset state
7979
assert.strictEqual(numNavigations, 5);
8080

81-
assert.strictEqual(lhr.lighthouseVersion, '13.0.0');
81+
assert.strictEqual(lhr.lighthouseVersion, '13.0.1');
8282
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
8383

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

0 commit comments

Comments
 (0)