Skip to main content

Laravel 13.32.0

Release Date: September 15, 2026

Okay so Laravel just dropped 13.32.0 on September 15, 2026, and I spent the morning poking at the changelog. There\u2019s some genuinely nice stuff here, but also one or two things you\u2019ll want to eyeball before you blindly composer update.

Mercure broadcasting over SSE

The headline act: a new Mercure broadcast driver contributed by K\u00e9vin Dunglas. If you\u2019re not familiar, Mercure lets you push real-time updates straight to browsers over Server-Sent Events, no WebSocket server to babysit. Drop it in, and you\u2019ve got live updates that just work with plain HTTP infrastructure. This is a real answer for people who wanted broadcasting without the ops overhead of managing a socket server. TL;DR: configure the hub, set the driver, done.

Storage copy and move shortcuts

Two little quality-of-life additions I\u2019m a fan of: Storage::copyToDisk() and Storage::moveToDisk(). Instead of the whole read-to-buffer-then-write dance to shuffle a file between disks, you now get one-liners. Clean, tidy, and honestly long overdue.

Enum support in queue pause/resume

Queue pause() and resume() now accept enums directly. If you\u2019ve been casting or extracting values manually to hit the right queue, that boilerplate just disappeared. Small, but it makes queue routing read nicer.

The skeptic in me

Nothing here looks like it\u2019ll break your app. The Mercure driver is opt-in, the storage shortcuts are additive, and the enum change is backward compatible. So honestly? This one\u2019s safe. My only note: if Mercure is new to you, read its setup docs once before wiring it into production, because SSE and load balancers occasionally need a head-nod about sticky connections.

Verdict

Worth the upgrade. The Mercure driver could genuinely change how you build real-time features, and the storage one-liners are free wins. Update, run your tests, ship it.

What is New?

By continuing to use the site, you agree to the use of cookies.