Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
mysqladmin -u root -proot password ''

- name: Install Laravel
run: composer create-project laravel/laravel=^${{ matrix.laravel }} laravel --prefer-dist
run: composer create-project laravel/laravel=^${{ matrix.laravel }} laravel --prefer-dist --no-audit --no-security-blocking

- name: Add local coilpack
working-directory: laravel
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Changed

- Removed FLoC header from Response library to mirror [upstream change](https://github.com/ExpressionEngine/ExpressionEngine/pull/2692)

## [2.1.0] - 2025-11-06

### Added
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"audit": {
"ignore": {
"PKSA-8qx3-n5y5-vvnd": "Laravel 9 is no longer receiving security updates"
}
}
},
"extra": {
Expand All @@ -68,4 +73,4 @@
}
}
}
}
}
5 changes: 0 additions & 5 deletions src/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,6 @@ public function fromOutput($status = 200, $headers = [])
ee()->config->set_item('compress_output', true);
}

// Send FLOC headers
if (REQ == 'PAGE' && ee()->config->item('enable_floc') !== 'y') {
ee()->output->set_header('Permissions-Policy: interest-cohort=()');
}

// Parse query count
if (REQ != 'CP') {
$output = str_replace(LD.'total_queries'.RD, ee()->db->query_count, $output);
Expand Down