v1.5.3
Fixed
- Fixed a false positive in the debug-mode audit where laravel/horizon was incorrectly reported as a development package in production.
- Fixed a false positive where horizon/* routes were incorrectly reported as exposed testing routes.
Added
- Added optional ignore_findings support in config/warden.php to suppress accepted or context-specific findings without forking the package.
- Ignore rules support matching by finding fields such as source, package, and title.
- String-based ignore rules support wildcards, for example Testing routes*.
Notes
- This change is backwards-compatible.
- Telescope and Dusk behavior is unchanged.
- Horizon is no longer treated as a dev-only package by default.
'ignore_findings' => [
['source' => 'debug-mode', 'package' => 'laravel/horizon'],
['source' => 'debug-mode', 'title' => 'Testing routes*'],
],