Skip to content

Commit

Permalink
v12.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Dec 12, 2024
1 parent 3e3ac17 commit 1784048
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
19 changes: 10 additions & 9 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
Thanks to our new contributors 👽🐷🐰🐯🐻!
Sebastian Neuner @sebastian9er
<a name="12.3.0"></a>
<a name="12.3.0"></a>
# 12.3.0 (2024-12-12)
[Full Changelog](https://github.com/GoogleChrome/lighthouse/compare/v12.2.3...v12.3.0)

~~ TODO: https://chromiumdash.appspot.com/schedule ~~
We expect this release to ship in the DevTools of [Chrome XX](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.
We expect this release to ship in the DevTools of [Chrome 133](https://chromiumdash.appspot.com/schedule), and to PageSpeed Insights within 2 weeks.

## Notable Changes
~~ TODO: Move notable changes here ~~
## New contributors

Thanks to our new contributors 👽🐷🐰🐯🐻!

- Sebastian Neuner @sebastian9er

## New Audits

* ensure proper origin isolation with COOP ([#16275](https://github.com/GoogleChrome/lighthouse/pull/16275))
* use a strong HSTS policy ([#16257](https://github.com/GoogleChrome/lighthouse/pull/16257))
This release several new security audits. These audits are informative and won't affect your best practices score.

* Ensure proper origin isolation with COOP ([#16275](https://github.com/GoogleChrome/lighthouse/pull/16275))
* Use a strong HSTS policy ([#16257](https://github.com/GoogleChrome/lighthouse/pull/16257))

## Core

Expand Down
8 changes: 4 additions & 4 deletions core/test/fixtures/user-flows/reports/sample-flow-result.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"steps": [
{
"lhr": {
"lighthouseVersion": "12.2.3",
"lighthouseVersion": "12.3.0",
"requestedUrl": "https://www.mikescerealshack.co/",
"mainDocumentUrl": "https://www.mikescerealshack.co/",
"finalDisplayedUrl": "https://www.mikescerealshack.co/",
Expand Down Expand Up @@ -8487,7 +8487,7 @@
},
{
"lhr": {
"lighthouseVersion": "12.2.3",
"lighthouseVersion": "12.3.0",
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2024-04-18T17:03:07.290Z",
"gatherMode": "timespan",
Expand Down Expand Up @@ -12450,7 +12450,7 @@
},
{
"lhr": {
"lighthouseVersion": "12.2.3",
"lighthouseVersion": "12.3.0",
"finalDisplayedUrl": "https://www.mikescerealshack.co/search?q=call+of+duty",
"fetchTime": "2024-04-18T17:03:17.899Z",
"gatherMode": "snapshot",
Expand Down Expand Up @@ -17846,7 +17846,7 @@
},
{
"lhr": {
"lighthouseVersion": "12.2.3",
"lighthouseVersion": "12.3.0",
"requestedUrl": "https://www.mikescerealshack.co/corrections",
"mainDocumentUrl": "https://www.mikescerealshack.co/corrections",
"finalDisplayedUrl": "https://www.mikescerealshack.co/corrections",
Expand Down
4 changes: 2 additions & 2 deletions docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
"lighthouse": "^12.3.0"
},
"devDependencies": {
"lighthouse": "^12.2.3"
"lighthouse": "^12.3.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/lighthouse-plugin-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"main": "./plugin.js",
"peerDependencies": {
"lighthouse": "^12.2.3"
"lighthouse": "^12.3.0"
},
"devDependencies": {
"lighthouse": "^8.6.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lighthouse",
"type": "module",
"version": "12.2.3",
"version": "12.3.0",
"description": "Automated auditing, performance metrics, and best practices for the web.",
"main": "./core/index.js",
"bin": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe('Navigation', function() {
// 1 refresh after auditing to reset state
assert.strictEqual(numNavigations, 5);

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

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

0 comments on commit 1784048

Please sign in to comment.