108 wires and counting

$ follow Laravel

Keep up with Laravel in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-01
stories 14

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Laravel AI tools validate arguments, framework fixes read-through disk visibility

By RepoJournal · Filed · About Laravel

Laravel's AI SDK lets tool requests validate arguments with Laravel's validation rules, while the framework patches a silent visibility bug on read-through disks.

Laravel AI's tool Request now supports $request->validate() [1], so tool handlers can validate incoming arguments with familiar Laravel rules; when validation fails, the error messages are returned to the model as the tool result, letting it correct and retry. The framework fixes a read-through disk bug where setVisibility() silently did nothing for files that only exist on the fallback disk [2]; getVisibility() now promotes the file to the primary disk and sets the requested visibility. Queue payload customization via Queue::createPayloadUsing() moved directly onto the queue manager [3], resolving resolution failures when using injected queues. A backport replaces a hash with spl_object_id in queue internals , avoiding deprecation warnings in 13.x. Also in flight: an exception page tooltip change disables HTML by default [4] and a validation fix lands [5].

Quick answers

What shipped in Laravel on September 1, 2026?
Laravel's AI SDK lets tool requests validate arguments with Laravel's validation rules, while the framework patches a silent visibility bug on read-through disks. In total, 9 commits and 5 pull requests landed.
Who contributed to Laravel on September 1, 2026?
5 developers shipped this update, including pushpak1300, Taylor Otwell, crynobone, sulimanbenhalim, and jackbayliss.
What were the notable Laravel updates?
Support validating tool request arguments, [13.x] Set visibility on files that only exist on a read-through disk's fallback, and [13.x] Add createPayloadUsing directly to the queue manager.