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

$ status

wire 2026-07-03
stories 26

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

LARAVEL 13 TIGHTENS REDIS CONFIG AND QUEUE TESTING

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

The framework now supports scalar Predis retry configuration, making it cacheable for the first time, while new queue fake methods let you inspect reserved jobs without reaching for mocks.

Laravel 13 shipped two critical framework improvements overnight that fix real production pain points. First, Predis retry configuration [1] no longer requires instantiating objects, meaning you can safely call `config:cache` without losing your retry strategy. This eliminates a common gotcha where Redis configuration objects would silently fail to serialize. Second, the queue fake [2] now supports `reserve()`, `reservedJobs()`, and `allReservedJobs()`, letting you test job reservation behavior without mocking. The installer [3] also rolled v5.30.0 with a no-node flag [4] that skips npm entirely for headless projects. On the docs front, Cashier now has comprehensive Payment Element integration [6] covering subscriptions, single charges, and payment method updates. A quick onboarding experiment [5] is in progress to reduce setup friction.

Quick answers

What shipped in Laravel on July 3, 2026?
The framework now supports scalar Predis retry configuration, making it cacheable for the first time, while new queue fake methods let you inspect reserved jobs without reaching for mocks. In total, 16 commits, 7 pull requests, and 3 releases landed.
Who contributed to Laravel on July 3, 2026?
4 developers shipped this update, including crynobone, jackbayliss, taylorotwell, and youssef-al-mostafa.
What were the notable Laravel updates?
[13.x] Supports scalar Predis retry config to allows `config:cache`, [13.x] Support inspecting reserved jobs on the queue fake, and v5.30.0.