109 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-08
stories 15

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Gemini file import now returns the real document ID

By RepoJournal · Filed · About Laravel

The Gemini store gateway now waits for importFile operations to finish, so Store::add() returns a usable document ID instead of an operation name.

The Gemini file search integration was returning an operation name as the imported document ID. That made Store::add() hand back a value that later document operations could not use. The fix waits for the import operation to complete, surfaces operation failures and invalid responses, and returns the finished response.documentName [1]. Polling is bounded and uses Laravel's sleep utility to keep the process sane.

OpenAI image edits in the AI package now accept every storable image type. The old sendImageEditRequest() matched only LocalImage, StoredImage, and UploadedFile and threw an InvalidArgumentException for anything else; it now loads the content through the same paths as file uploads, removing the hard-coded whitelist [2].

Around the boost repo, code cleanup removed redundant setUp() and tearDown() overrides that only delegated to their parent implementations. That resolves RemoveParentDelegatingClassMethodRector findings without changing lifecycle behavior [3].

Quick answers

What shipped in Laravel on September 8, 2026?
The Gemini store gateway now waits for importFile operations to finish, so Store::add() returns a usable document ID instead of an operation name. In total, 9 commits, 5 pull requests, and 1 releases landed.
Who contributed to Laravel on September 8, 2026?
6 developers shipped this update, including Mohammad Javad Ranjbar, Taylor Otwell, pushpak1300, drewmt, saifulferoz, and dependabot.
What were the notable Laravel updates?
Fix Gemini file import operation handling, Accept every storable image type in OpenAI image edits, and Remove redundant test lifecycle overrides.