diff --git a/changelog.md b/changelog.md
index 33c14c089137..bd60ada48f57 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,40 @@
+
+# 11.7.1 (2024-04-08)
+[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v11.7.0...v11.7.1)
+
+We expect this release to ship in the DevTools of [Chrome 125](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
+
+## New Contributors
+
+Thanks to our new contributors 👽🐷🐰🐯🐻!
+
+- lauren n. liberda @selfisekai
+
+## Core
+
+* network-request: recognize zstd compression algorithm ([#15883](https://github.com/GoogleChrome/lighthouse/pull/15883))
+* trace-elements: add sentry debugging for `impactedNodes` ([#15915](https://github.com/GoogleChrome/lighthouse/pull/15915))
+* trace-processor: correct overlapping tasks ([#15921](https://github.com/GoogleChrome/lighthouse/pull/15921))
+
+## Report
+
+* remove use of innerHTML to empty elements ([#15911](https://github.com/GoogleChrome/lighthouse/pull/15911))
+
+## Deps
+
+* upgrade `trace_engine` to 0.0.19 ([#15926](https://github.com/GoogleChrome/lighthouse/pull/15926))
+* upgrade axe-core to 4.9.0 ([#15887](https://github.com/GoogleChrome/lighthouse/pull/15887))
+
+## Tests
+
+* remove Access-Control-Allow-Origin for robots.txt ([#15895](https://github.com/GoogleChrome/lighthouse/pull/15895))
+* devtools: sync e2e ([#15917](https://github.com/GoogleChrome/lighthouse/pull/15917))
+
+## Misc
+
+* correct .npmignore for node >=18.20 ([#15924](https://github.com/GoogleChrome/lighthouse/pull/15924))
+* proto: ensure all strings are well-formed ([#15909](https://github.com/GoogleChrome/lighthouse/pull/15909))
+
# 11.7.0 (2024-03-20)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v11.6.0...v11.7.0)
diff --git a/core/test/fixtures/user-flows/reports/sample-flow-result.json b/core/test/fixtures/user-flows/reports/sample-flow-result.json
index 2b3c5c91210c..147786580b4a 100644
--- a/core/test/fixtures/user-flows/reports/sample-flow-result.json
+++ b/core/test/fixtures/user-flows/reports/sample-flow-result.json
@@ -2,7 +2,7 @@
"steps": [
{
"lhr": {
- "lighthouseVersion": "11.7.0",
+ "lighthouseVersion": "11.7.1",
"requestedUrl": "https://www.mikescerealshack.co/",
"mainDocumentUrl": "https://www.mikescerealshack.co/",
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -8599,7 +8599,7 @@
},
{
"lhr": {
- "lighthouseVersion": "11.7.0",
+ "lighthouseVersion": "11.7.1",
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2023-01-13T23:27:51.982Z",
"gatherMode": "timespan",
@@ -12824,7 +12824,7 @@
},
{
"lhr": {
- "lighthouseVersion": "11.7.0",
+ "lighthouseVersion": "11.7.1",
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2023-01-13T23:28:01.888Z",
"gatherMode": "snapshot",
@@ -18051,7 +18051,7 @@
},
{
"lhr": {
- "lighthouseVersion": "11.7.0",
+ "lighthouseVersion": "11.7.1",
"requestedUrl": "https://www.mikescerealshack.co/corrections",
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
"finalDisplayedUrl": "https://www.mikescerealshack.co/corrections",
diff --git a/core/test/results/sample_v2.json b/core/test/results/sample_v2.json
index fe552a591222..33ae04e8f6cf 100644
--- a/core/test/results/sample_v2.json
+++ b/core/test/results/sample_v2.json
@@ -1,5 +1,5 @@
{
- "lighthouseVersion": "11.7.0",
+ "lighthouseVersion": "11.7.1",
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"mainDocumentUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"finalDisplayedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
diff --git a/docs/plugins.md b/docs/plugins.md
index 271b8a2bf4cb..1dbfb95a65df 100644
--- a/docs/plugins.md
+++ b/docs/plugins.md
@@ -61,10 +61,10 @@ A Lighthouse plugin is just a node module with a name that starts with `lighthou
"type": "module",
"main": "plugin.js",
"peerDependencies": {
- "lighthouse": "^11.7.0"
+ "lighthouse": "^11.7.1"
},
"devDependencies": {
- "lighthouse": "^11.7.0"
+ "lighthouse": "^11.7.1"
}
}
```
diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json
index b41d4bcd5f2d..daf4c793679c 100644
--- a/docs/recipes/lighthouse-plugin-example/package.json
+++ b/docs/recipes/lighthouse-plugin-example/package.json
@@ -4,7 +4,7 @@
"type": "module",
"main": "./plugin.js",
"peerDependencies": {
- "lighthouse": "^11.7.0"
+ "lighthouse": "^11.7.1"
},
"devDependencies": {
"lighthouse": "^8.6.0"
diff --git a/package.json b/package.json
index 10a9016f5065..a100e7edbdd7 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "lighthouse",
"type": "module",
- "version": "11.7.0",
+ "version": "11.7.1",
"description": "Automated auditing, performance metrics, and best practices for the web.",
"main": "./core/index.js",
"bin": {
diff --git a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts
index a76231dffe8e..7388f0204b53 100644
--- a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts
+++ b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts
@@ -96,7 +96,7 @@ describe('Navigation', function() {
// 1 refresh after auditing to reset state
assert.strictEqual(numNavigations, 5);
- assert.strictEqual(lhr.lighthouseVersion, '11.7.0');
+ assert.strictEqual(lhr.lighthouseVersion, '11.7.1');
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');