118 wires and counting
$ status: archived — this briefing has stopped; the archive stays readable. browse live briefings →

$ status

wire 2026-08-05
stories 28

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

LARAVEL 13.24.0 SHIPS WITH ELOQUENT QUERY IMPROVEMENTS AND CRITICAL ARR::FORGET() FIX

By RepoJournal · Filed · About Laravel · Composed from the cited sources · methodology

Laravel framework v13.24.0 arrived with modelKeys() support, a new array_keys validation rule, and a critical fix for Arr::forget() that was removing the wrong nested elements.

The framework release [1] includes six commits addressing core array handling and queue behavior. The most significant fix lands in Arr::forget() [2], which was incorrectly removing nested array elements when processing dot-notation keys because it failed to reset its working reference back to the top-level array between iterations. This bug could silently corrupt data structures in production. Queue handling also improved: bulk jobs dispatched through DatabaseQueue now properly respect after-commit configuration [3], partitioning jobs so that after-commit jobs wait for transaction completion while normal jobs use the optimized bulk insert path. Two recent commits were reverted , suggesting Taylor Otwell caught unintended side effects early. On the tooling front, Octane now automatically overrides the artisan dev server command [4] to use watch mode locally when Illuminate\Foundation\DevCommands is available, eliminating manual configuration. Documentation continues steady updates: the Boost Journal and infer-conventions skill are now documented [5], and a critical parse error in the Attachments example was fixed [6] by adding missing commas between array items.

Quick answers

What shipped in Laravel on August 5, 2026?
Laravel framework v13.24.0 arrived with modelKeys() support, a new array_keys validation rule, and a critical fix for Arr::forget() that was removing the wrong nested elements. In total, 14 commits, 13 pull requests, and 1 releases landed.
Who contributed to Laravel on August 5, 2026?
8 developers shipped this update, including dependabot, pushpak1300, salar, joetannenbaum, github-actions[bot], Faiyajz, taylorotwell, and Alessio Giacobbe.
What were the notable Laravel updates?
v13.24.0, [13.x] Fix `Arr::forget()` removing the wrong element (#61023), and [13.x] Respect after-commit dispatch when bulk pushing to DatabaseQueue.