v12.2.2 (#16251)
This commit is contained in:
Родитель
8c3f2de419
Коммит
b64b353454
54
changelog.md
54
changelog.md
|
@ -1,3 +1,57 @@
|
|||
<a name="12.2.2"></a>
|
||||
# 12.2.2 (2024-11-14)
|
||||
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.1...v12.2.2)
|
||||
|
||||
We expect this release to ship in the DevTools of [Chrome 133](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
|
||||
|
||||
## New contributors
|
||||
|
||||
Thanks to our new contributors 👽🐷🐰🐯🐻!
|
||||
|
||||
- Nate @servusdei2018
|
||||
- Gareth Jones @G-Rath
|
||||
- JDev @JWebDev
|
||||
|
||||
## Core
|
||||
|
||||
* network-monitor: treat EventSource as non-critical ([#16225](https://github.com/GoogleChrome/lighthouse/pull/16225))
|
||||
* target-manager: ignore target if type is unknown ([#16221](https://github.com/GoogleChrome/lighthouse/pull/16221))
|
||||
|
||||
## CLI
|
||||
|
||||
* create writeFile destination if necessary ([#15990](https://github.com/GoogleChrome/lighthouse/pull/15990))
|
||||
|
||||
## Deps
|
||||
|
||||
* upgrade puppeteer to 23.8.0 ([#16248](https://github.com/GoogleChrome/lighthouse/pull/16248))
|
||||
* upgrade `third-party-web` to 0.26.1 ([#16219](https://github.com/GoogleChrome/lighthouse/pull/16219))
|
||||
* upgrade puppeteer to 23.5.2 ([#16220](https://github.com/GoogleChrome/lighthouse/pull/16220))
|
||||
* lighthouse-stack-packs: upgrade to 1.12.2 ([#16242](https://github.com/GoogleChrome/lighthouse/pull/16242))
|
||||
* lodash: migrate lodash to lodash-es ([#16211](https://github.com/GoogleChrome/lighthouse/pull/16211))
|
||||
* sentry: upgrade to v7 ([#16215](https://github.com/GoogleChrome/lighthouse/pull/16215))
|
||||
|
||||
## Clients
|
||||
|
||||
* lr: set CPU throttling based on benchmark ([#16226](https://github.com/GoogleChrome/lighthouse/pull/16226))
|
||||
* lr: fix wrong render-blocking-resources transfer size ([#16190](https://github.com/GoogleChrome/lighthouse/pull/16190))
|
||||
|
||||
## I18n
|
||||
|
||||
* import ([#16250](https://github.com/GoogleChrome/lighthouse/pull/16250))
|
||||
|
||||
## Docs
|
||||
|
||||
* readme: add `lighthouse-matchers` to related projects ([#16239](https://github.com/GoogleChrome/lighthouse/pull/16239))
|
||||
* readme: add Guardius to services list ([#16235](https://github.com/GoogleChrome/lighthouse/pull/16235))
|
||||
|
||||
## Tests
|
||||
|
||||
* smoke: fix devtools test runner & a11y errors ([#16236](https://github.com/GoogleChrome/lighthouse/pull/16236))
|
||||
|
||||
## Misc
|
||||
|
||||
* ci: upgrade old actions ([#16191](https://github.com/GoogleChrome/lighthouse/pull/16191))
|
||||
|
||||
<a name="12.2.1"></a>
|
||||
# 12.2.1 (2024-09-06)
|
||||
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.0...v12.2.1)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"steps": [
|
||||
{
|
||||
"lhr": {
|
||||
"lighthouseVersion": "12.2.1",
|
||||
"lighthouseVersion": "12.2.2",
|
||||
"requestedUrl": "https://www.mikescerealshack.co/",
|
||||
"mainDocumentUrl": "https://www.mikescerealshack.co/",
|
||||
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
|
||||
|
@ -8335,7 +8335,7 @@
|
|||
},
|
||||
{
|
||||
"lhr": {
|
||||
"lighthouseVersion": "12.2.1",
|
||||
"lighthouseVersion": "12.2.2",
|
||||
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
|
||||
"fetchTime": "2024-04-18T17:03:07.290Z",
|
||||
"gatherMode": "timespan",
|
||||
|
@ -12298,7 +12298,7 @@
|
|||
},
|
||||
{
|
||||
"lhr": {
|
||||
"lighthouseVersion": "12.2.1",
|
||||
"lighthouseVersion": "12.2.2",
|
||||
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
|
||||
"fetchTime": "2024-04-18T17:03:17.899Z",
|
||||
"gatherMode": "snapshot",
|
||||
|
@ -17694,7 +17694,7 @@
|
|||
},
|
||||
{
|
||||
"lhr": {
|
||||
"lighthouseVersion": "12.2.1",
|
||||
"lighthouseVersion": "12.2.2",
|
||||
"requestedUrl": "https://www.mikescerealshack.co/corrections",
|
||||
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
|
||||
"finalDisplayedUrl": "https://www.mikescerealshack.co/corrections",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"lighthouseVersion": "12.2.1",
|
||||
"lighthouseVersion": "12.2.2",
|
||||
"requestedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
|
||||
"mainDocumentUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
|
||||
"finalDisplayedUrl": "http://localhost:10200/dobetterweb/dbw_tester.html",
|
||||
|
|
|
@ -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": "^12.2.1"
|
||||
"lighthouse": "^12.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"lighthouse": "^12.2.1"
|
||||
"lighthouse": "^12.2.2"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"type": "module",
|
||||
"main": "./plugin.js",
|
||||
"peerDependencies": {
|
||||
"lighthouse": "^12.2.1"
|
||||
"lighthouse": "^12.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"lighthouse": "^8.6.0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "lighthouse",
|
||||
"type": "module",
|
||||
"version": "12.2.1",
|
||||
"version": "12.2.2",
|
||||
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
||||
"main": "./core/index.js",
|
||||
"bin": {
|
||||
|
|
|
@ -95,7 +95,7 @@ describe('Navigation', function() {
|
|||
// 1 refresh after auditing to reset state
|
||||
assert.strictEqual(numNavigations, 5);
|
||||
|
||||
assert.strictEqual(lhr.lighthouseVersion, '12.2.1');
|
||||
assert.strictEqual(lhr.lighthouseVersion, '12.2.2');
|
||||
assert.match(lhr.finalUrl, /^https:\/\/localhost:[0-9]+\/test\/e2e\/resources\/lighthouse\/hello.html/);
|
||||
|
||||
assert.strictEqual(lhr.configSettings.throttlingMethod, 'simulate');
|
||||
|
|
Загрузка…
Ссылка в новой задаче