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-02
stories 38

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Laravel ships v13.30.0 and v12.69.0 with queue totals and Redis cache fixes

By RepoJournal · Filed · About Laravel

Two framework releases land today: v13.30.0 adds a totalSize() queue method and fixes Redis tagged cache orphans, while v12.69.0 patches cookie authentication.

Laravel framework shipped v13.30.0 with a queue worker stop reason output and a fix for resource loading, and v12.69.0 disables HTML by default on the exception page tooltip and ensures the password hash matches the stored cookie before authenticating the user [1][2]. In v13.x, a new `totalSize` method on the Queue facade replaces the previous three-call pattern (`Queue::totalPendingSize() + Queue::totalDelayedSize() + Queue::totalReservedSize()`) with a single `Queue::totalSize()` [3]. Redis tagged cache writes now mutate the value key before adding the tag, preventing orphaned entries when a concurrent `flush()` runs between operations [4]. That fix also covers the stale remember-me cookie path: a TypeError in `userFromRecaller()` when the recaller matches no user is resolved, asserting `viaRemember` is false [5]. Separately, laravel/ai reverted three commits that accepted user messages, converted Vercel AI SDK UI messages, and hydrated `useChat` from stored conversations, rolling back agent chat input changes [6][7][8].

Action items

References

  1. [1] v12.69.0 ↗ laravel/framework
  2. [2] v13.30.0 ↗ laravel/framework
  3. [3] [13.x] Add totalSize method to Queue ↗ laravel/framework
  4. [4] [13.x] Prevent orphaned Redis tagged cache entries ↗ laravel/framework
  5. [5] [12.x] Fix TypeError in userFromRecaller() when the recaller matches no user (#61397) ↗ laravel/framework
  6. [6] Revert "Accept user messages and chat input when prompting agents (#917)" ↗ laravel/ai
  7. [7] Revert "Convert Vercel AI SDK UI messages into agent chat input (#918)" ↗ laravel/ai
  8. [8] Revert "Hydrate useChat from stored conversation messages (#919)" ↗ laravel/ai

Quick answers

What shipped in Laravel on September 2, 2026?
Two framework releases land today: v13.30.0 adds a totalSize() queue method and fixes Redis tagged cache orphans, while v12.69.0 patches cookie authentication. In total, 24 commits, 10 pull requests, and 4 releases landed.
Who contributed to Laravel on September 2, 2026?
7 developers shipped this update, including pushpak1300, dependabot, github-actions[bot], jackbayliss, drewmt, Lazizbek Ergashev, and taylorotwell.
What were the notable Laravel updates?
v12.69.0, v13.30.0, and [13.x] Add totalSize method to Queue.