Changelog (v2.8.0)
All notable updates and releases of the Laravel Agent-Debugger are recorded here.
v2.8.0 (2026-05-22)
Added
- Premium Glassmorphic Viewport Badge: Upgraded the standard 2px solid red viewport border with a gorgeous, hover-interactive floating status badge in the bottom-right corner of the page showing real-time execution times (
⚡ X.XXms) and query counts (🗄️ Y Queries). - Discord/Slack Crash Notification Webhooks: Automatically dispatches rich embed crash details (Exception class, message, location, method, URL, and status) to a webhook endpoint if
'webhook_url'is configured. Runs in the background using PHP's native zero-dependency stream wrappers with a low 2-second timeout to protect latency. - Database Query Caller Source Backtraces: Resolves the exact developer-allocated class/line backtrace where SQL statements are executed (e.g.
OrderRepository.php line 42) and appends it directly inside database request logs. - Auto-Rotation Safeguards: Automatically archives log files exceeding
20MBas a.bakbackup copy to prevent thrashing storage space in intensive local development cycles. - Log Clean Purge Range: Updated
php artisan agent:debug-cleanto support an optional--days=Xfilter parameter to selectively purge historical logs older thanXdays.
Refined
- Slow Database Query Highlights: Automatically flags and marks queries exceeding
'slow_query_threshold'with explicit[SLOW QUERY (Xms)]labels in the final logs. - Zero-JS Viewport Injector Test: Re-scaffolded assertions to match the new floating glassmorphic status badge structure parameters.