From d2517556d5e4ebf371179705a5a1a0b3644d0c2c Mon Sep 17 00:00:00 2001
From: Adam Raine <6752989+adamraine@users.noreply.github.com>
Date: Wed, 21 Feb 2024 14:07:48 -0800
Subject: [PATCH] v11.6.0 (#15823)
---
changelog.md | 34 +++++++++++++++++++
.../reports/sample-flow-result.json | 8 ++---
core/test/results/sample_v2.json | 2 +-
docs/plugins.md | 4 +--
.../lighthouse-plugin-example/package.json | 2 +-
package.json | 2 +-
.../e2e/lighthouse/navigation_test.ts | 2 +-
7 files changed, 44 insertions(+), 10 deletions(-)
diff --git a/changelog.md b/changelog.md
index bd9341392526..2da88643f0ef 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,37 @@
+
+# 11.6.0 (2024-02-21)
+[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v11.5.0...v11.6.0)
+
+We expect this release to ship in the DevTools of [Chrome 124](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
+
+## Notable Changes
+
+* trace: disable JS samples ([#15819](https://github.com/GoogleChrome/lighthouse/pull/15819))
+
+## Core
+
+* driver: add verbose logs for wait-for page load components ([#15818](https://github.com/GoogleChrome/lighthouse/pull/15818))
+
+## Deps
+
+* upgrade puppeteer to 22.1.0 ([#15822](https://github.com/GoogleChrome/lighthouse/pull/15822))
+* upgrade trace_engine and drop manually written types ([#15810](https://github.com/GoogleChrome/lighthouse/pull/15810))
+* upgrade `axe-core` to 4.8.4 ([#15805](https://github.com/GoogleChrome/lighthouse/pull/15805))
+* upgrade puppeteer to 22.0.0 ([#15803](https://github.com/GoogleChrome/lighthouse/pull/15803))
+
+## I18n
+
+* import ([#15821](https://github.com/GoogleChrome/lighthouse/pull/15821))
+
+## Tests
+
+* dbw: revert expectations for unload handler removal ([#15802](https://github.com/GoogleChrome/lighthouse/pull/15802))
+
+## Misc
+
+* reword pwa banner ([#15800](https://github.com/GoogleChrome/lighthouse/pull/15800))
+* do not double report artifact dep error to sentry ([#15777](https://github.com/GoogleChrome/lighthouse/pull/15777))
+
# 11.5.0 (2024-01-23)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v11.4.0...v11.5.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 03249d7b62c5..63e044bf45d0 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.5.0",
+ "lighthouseVersion": "11.6.0",
"requestedUrl": "https://www.mikescerealshack.co/",
"mainDocumentUrl": "https://www.mikescerealshack.co/",
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
@@ -8599,7 +8599,7 @@
},
{
"lhr": {
- "lighthouseVersion": "11.5.0",
+ "lighthouseVersion": "11.6.0",
"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.5.0",
+ "lighthouseVersion": "11.6.0",
"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.5.0",
+ "lighthouseVersion": "11.6.0",
"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 452fefa1b408..de83282ab50b 100644
--- a/core/test/results/sample_v2.json
+++ b/core/test/results/sample_v2.json
@@ -1,5 +1,5 @@
{
- "lighthouseVersion": "11.5.0",
+ "lighthouseVersion": "11.6.0",
"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 decfb52217b8..4921fa80a13e 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.5.0"
+ "lighthouse": "^11.6.0"
},
"devDependencies": {
- "lighthouse": "^11.5.0"
+ "lighthouse": "^11.6.0"
}
}
```
diff --git a/docs/recipes/lighthouse-plugin-example/package.json b/docs/recipes/lighthouse-plugin-example/package.json
index cf770bbea6c2..d63915eae1fd 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.5.0"
+ "lighthouse": "^11.6.0"
},
"devDependencies": {
"lighthouse": "^8.6.0"
diff --git a/package.json b/package.json
index fe1ed85b8084..a9406136689a 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "lighthouse",
"type": "module",
- "version": "11.5.0",
+ "version": "11.6.0",
"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 6fb276b0e2f5..bacff5bcdca2 100644
--- a/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts
+++ b/third-party/devtools-tests/e2e/lighthouse/navigation_test.ts
@@ -97,7 +97,7 @@ describe('Navigation', async function() {
// 1 refresh after auditing to reset state
assert.strictEqual(numNavigations, 5);
- assert.strictEqual(lhr.lighthouseVersion, '11.5.0');
+ assert.strictEqual(lhr.lighthouseVersion, '11.6.0');
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');