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-06
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Container fixes SelfBuilding stack leak, Horizon cluster tests stabilized

By RepoJournal · Filed · About Laravel

Laravel's container now cleans up the SelfBuilding build stack even when a factory throws, and Horizon's Redis Cluster CI jobs no longer race on a shared temp file.

The Laravel framework container now cleans up the build stack after a `SelfBuilding::newInstance()` factory throws. Previously, an exception left the class on the stack, so resolving the same class again skipped the factory and went straight to the constructor; the cleanup now runs in a `finally` block, preserving successful resolution and callback order. [1]

Horizon's Redis Cluster integration tests were failing intermittently because all three cluster nodes daemonized from the same working directory. Redis 7 writes its AOF to "<dir>/appendonlydir" and stages the manifest through a fixed "temp-appendonly.aof.manifest" name, so the nodes raced to rename one shared temp file; giving each node its own directory fixes it. [2]

Laravel Echo's 2.x branch upgrades to pnpm 12 and runs `pnpm audit --fix update` to resolve vulnerabilities, keeping the pipeline green. [3]

Quick answers

What shipped in Laravel on September 6, 2026?
Laravel's container now cleans up the SelfBuilding build stack even when a factory throws, and Horizon's Redis Cluster CI jobs no longer race on a shared temp file. In total, 3 commits and 3 pull requests landed.
Who contributed to Laravel on September 6, 2026?
3 developers shipped this update, including emrebalasar, laravel-o11y, and pataar.
What were the notable Laravel updates?
[13.x] Fix SelfBuilding build stack cleanup after exceptions, Fix Redis Cluster tests in the CI (#1817), and [2.x] Upgrade to pnpm 12 and resolve vulnerabilities.