coolify/app/Http
Josh Salway 08a12c392a fix(deploy): cast force param as boolean to prevent cache bust on every deploy
$request->input('force') ?? false reads "false" as a non-empty string,
which PHP coerces to true. Replace with $request->boolean() which uses
filter_var(FILTER_VALIDATE_BOOLEAN), correctly mapping "false" -> false.
2026-05-02 23:11:22 +10:00
..
Controllers fix(deploy): cast force param as boolean to prevent cache bust on every deploy 2026-05-02 23:11:22 +10:00
Middleware feat(observability): add structured audit log channel for API and webhook events 2026-04-28 14:50:37 +02:00
Kernel.php feat: implement TrustHosts middleware to handle FQDN and IP address trust logic 2025-10-15 15:28:21 +02:00