diff --git a/changelog.md b/changelog.md
index 3282a829b828..a5e1ff9af9a5 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,23 @@
+
+# 9.6.1 (2022-05-11)
+[Full Changelog](https://github.com/compare/v9.6.0...v9.6.1)
+
+We expect this release to ship in the DevTools of [Chrome 103](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
+
+## Core
+
+* fps: run at the end of timespan/snapshot ([#13989](https://github.com/GoogleChrome/lighthouse/pull/13989))
+* responsiveness: add element screenshot to INP diagnostic ([#13984](https://github.com/GoogleChrome/lighthouse/pull/13984))
+* responsiveness: add better INP fallback for old Chrome versions ([#13985](https://github.com/GoogleChrome/lighthouse/pull/13985))
+
+## Report
+
+* devtools: use absolute positioning for overlay ([#13988](https://github.com/GoogleChrome/lighthouse/pull/13988))
+
+## Tests
+
+* use origin-agent-cluster to actually test oopifs ([#13777](https://github.com/GoogleChrome/lighthouse/pull/13777))
+
# 9.6.0 (2022-05-09)
[Full Changelog](https://github.com/compare/v9.5.0...v9.6.0)
diff --git a/docs/plugins.md b/docs/plugins.md
index 290a18c39fa2..1b5d2728ef02 100644
--- a/docs/plugins.md
+++ b/docs/plugins.md
@@ -60,10 +60,10 @@ A Lighthouse plugin is just a node module with a name that starts with `lighthou
"name": "lighthouse-plugin-cats",
"main": "plugin.js",
"peerDependencies": {
- "lighthouse": "^9.6.0"
+ "lighthouse": "^9.6.1"
},
"devDependencies": {
- "lighthouse": "^9.6.0"
+ "lighthouse": "^9.6.1"
}
}
```
diff --git a/docs/recipes/custom-audit/package.json b/docs/recipes/custom-audit/package.json
index 3dabb8d036c0..f9375a0e420f 100644
--- a/docs/recipes/custom-audit/package.json
+++ b/docs/recipes/custom-audit/package.json
@@ -3,6 +3,6 @@
"private": true,
"scripts": {},
"devDependencies": {
- "lighthouse": "^9.6.0"
+ "lighthouse": "^9.6.1"
}
}
diff --git a/docs/recipes/gulp/package.json b/docs/recipes/gulp/package.json
index 427b45542873..ec48ec36fcea 100644
--- a/docs/recipes/gulp/package.json
+++ b/docs/recipes/gulp/package.json
@@ -7,6 +7,6 @@
"devDependencies": {
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
- "lighthouse": "^9.6.0"
+ "lighthouse": "^9.6.1"
}
}
diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json
index 80edf088470a..21803de318b2 100644
--- a/docs/recipes/lighthouse-plugin-example/package.json
+++ b/docs/recipes/lighthouse-plugin-example/package.json
@@ -3,7 +3,7 @@
"private": true,
"main": "./plugin.js",
"peerDependencies": {
- "lighthouse": "^9.6.0"
+ "lighthouse": "^9.6.1"
},
"devDependencies": {
"lighthouse": "^8.6.0"
diff --git a/lighthouse-core/test/fixtures/fraggle-rock/reports/sample-flow-result.json b/lighthouse-core/test/fixtures/fraggle-rock/reports/sample-flow-result.json
index 88a5a9c850d5..361648816f06 100644
--- a/lighthouse-core/test/fixtures/fraggle-rock/reports/sample-flow-result.json
+++ b/lighthouse-core/test/fixtures/fraggle-rock/reports/sample-flow-result.json
@@ -2,7 +2,7 @@
"steps": [
{
"lhr": {
- "lighthouseVersion": "9.6.0",
+ "lighthouseVersion": "9.6.1",
"requestedUrl": "https://www.mikescerealshack.co/",
"finalUrl": "https://www.mikescerealshack.co/",
"fetchTime": "2022-03-08T15:35:57.356Z",
@@ -7549,7 +7549,7 @@
},
{
"lhr": {
- "lighthouseVersion": "9.6.0",
+ "lighthouseVersion": "9.6.1",
"requestedUrl": "https://www.mikescerealshack.co/",
"finalUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2022-03-08T15:36:08.267Z",
@@ -9449,9 +9449,9 @@
"description": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more](https://web.dev/inp/).",
"score": 1,
"scoreDisplayMode": "numeric",
- "numericValue": 60,
+ "numericValue": 53,
"numericUnit": "millisecond",
- "displayValue": "60 ms"
+ "displayValue": "50 ms"
},
"work-during-interaction": {
"id": "work-during-interaction",
@@ -10476,7 +10476,7 @@
},
{
"values": {
- "timeInMs": 60
+ "timeInMs": 53
},
"path": "audits[experimental-interaction-to-next-paint].displayValue"
}
@@ -11011,7 +11011,7 @@
},
{
"lhr": {
- "lighthouseVersion": "9.6.0",
+ "lighthouseVersion": "9.6.1",
"requestedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"finalUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2022-03-08T15:36:22.894Z",
@@ -15819,7 +15819,7 @@
},
{
"lhr": {
- "lighthouseVersion": "9.6.0",
+ "lighthouseVersion": "9.6.1",
"requestedUrl": "https://www.mikescerealshack.co/corrections",
"finalUrl": "https://www.mikescerealshack.co/corrections",
"fetchTime": "2022-03-08T15:36:29.745Z",
diff --git a/lighthouse-core/test/results/sample_v2.json b/lighthouse-core/test/results/sample_v2.json
index 80466ed00d6c..773f24d6f38a 100644
--- a/lighthouse-core/test/results/sample_v2.json
+++ b/lighthouse-core/test/results/sample_v2.json
@@ -1,5 +1,5 @@
{
- "lighthouseVersion": "9.6.0",
+ "lighthouseVersion": "9.6.1",
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"finalUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
"fetchTime": "2021-09-07T20:11:11.853Z",
diff --git a/package.json b/package.json
index 4a21320adf7d..f4ab6eaf7576 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "lighthouse",
- "version": "9.6.0",
+ "version": "9.6.1",
"description": "Automated auditing, performance metrics, and best practices for the web.",
"main": "./lighthouse-core/index.js",
"bin": {
diff --git a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-emulate-run-expected.txt b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-emulate-run-expected.txt
index 0ed32daa19b3..f389a1c8b4fa 100644
--- a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-emulate-run-expected.txt
+++ b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-emulate-run-expected.txt
@@ -15,7 +15,7 @@ Generate report: enabled visible
=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-emulate-pass.html
-Version: 9.6.0
+Version: 9.6.1
formFactor: mobile
screenEmulation: {
"mobile": true,
diff --git a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-navigation-expected.txt b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-navigation-expected.txt
index f9307d37695c..54efc1bbd9e7 100644
--- a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-navigation-expected.txt
+++ b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-navigation-expected.txt
@@ -262,7 +262,7 @@ Generating results...
=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
-Version: 9.6.0
+Version: 9.6.1
ViewportDimensions: {
"innerWidth": 980,
"innerHeight": 1743,
diff --git a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt
index b01587f6fa29..ae89c157a7b3 100644
--- a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt
+++ b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt
@@ -373,7 +373,7 @@ Generating results...
=============== Lighthouse Results ===============
URL: http://127.0.0.1:8000/devtools/lighthouse/resources/lighthouse-basic.html
-Version: 9.6.0
+Version: 9.6.1
ViewportDimensions: {
"innerWidth": 980,
"innerHeight": 1743,