Skip to content

Commit cfef2a7

Browse files
authored
v13.0.3 (#16881)
1 parent 440f8bf commit cfef2a7

8 files changed

Lines changed: 26 additions & 15 deletions

File tree

changelog.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1+
<a name="13.0.3"></a>
2+
# 13.0.3 (2026-02-11)
3+
4+
Fix npm package publish of 13.0.2. Refer to https://github.com/GoogleChrome/lighthouse/releases/tag/v13.0.2.
5+
6+
We expect this release to ship in the DevTools of [Chrome 146](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
7+
8+
<a name="13.0.2"></a>
9+
# 13.0.2 (2026-02-06)
10+
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v13.0.1...v13.0.2)
11+
12+
We expect this release to ship in the DevTools of [Chrome 146](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
13+
114
Thanks to our new contributors 👽🐷🐰🐯🐻!
15+
216
Alex Rudenko @OrKoN
317
Lusa Zhan @lusayaa
418
Atakan Demircioğlu @atakde
519
Mimori @Mimori256
620
Denis @filchakov
721
_ @Lulucmy
8-
<a name="13.0.2"></a>
9-
# 13.0.2 (2026-02-06)
10-
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v13.0.1...v13.0.2)
11-
12-
We expect this release to ship in the DevTools of [Chrome 146](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
1322

1423
## Core
1524

core/scripts/release/prepare-commit.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ git checkout -b "$BRANCH_NAME"
3434
# Install the dependencies.
3535
yarn install
3636

37+
yarn build-report
38+
3739
# Bump the version in package.json and others.
3840
node core/scripts/release/bump-versions.js $NEW_VERSION
3941

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.2",
5+
"lighthouseVersion": "13.0.3",
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.2",
7744+
"lighthouseVersion": "13.0.3",
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.2",
11125+
"lighthouseVersion": "13.0.3",
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.2",
16777+
"lighthouseVersion": "13.0.3",
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.2",
2+
"lighthouseVersion": "13.0.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

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.2"
64+
"lighthouse": "^13.0.3"
6565
},
6666
"devDependencies": {
67-
"lighthouse": "^13.0.2"
67+
"lighthouse": "^13.0.3"
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.2"
7+
"lighthouse": "^13.0.3"
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.2",
4+
"version": "13.0.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

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

82-
assert.strictEqual(lhr.lighthouseVersion, '13.0.2');
82+
assert.strictEqual(lhr.lighthouseVersion, '13.0.3');
8383
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
8484

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

0 commit comments

Comments
 (0)