News

Name Queued Closures in Laravel 12.13

Published Updated
Name Queued Closures in Laravel 12.13 image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

The Laravel team released v12.13.0, which includes naming queued closures, a new assertRedirectBack() test assertion, callback support for Collection's containsOneItem() method, and more:

New assertRedirectBack Test Assertion

Ryan Chandler contributed a new assertRedirectBack() method that has been added to Laravel's test suite, making it easier to assert redirection to the intended “back” URL:

$response->assertRedirectBack();

This assertion adds clarity when testing flows involving redirect()->back(), and helps simplify test expectations around browser-like behavior.

See Pull Request #55635 for details.

Naming Queued Closures

Will Rowe contributed the ability to assign a name to queued Closure, making identifying and managing jobs in your queues and monitoring tools easier.

dispatch(function () {
// ...
})->name('custom name');

See Pull Request #55634 for details.

Callback Support in containsOneItem

Fernando Garcia contributed the ability to pass a Closure to the Collection containsOneItem() method. Passing a Closure allows custom logic to determine whether exactly one item in the collection satisfies the condition:

$collection = collect([1, 2, 3]);
 
$collection->containsOneItem(fn($item) => $item === 2); // true
$collection->containsOneItem(fn($item) => $item > 1); // false (2 and 3 match)

See Pull Request #55622 for details.

Release notes

You can see the complete list of new features and updates below and the diff between 12.12.0 and 12.13.0 on GitHub. The following release notes are directly from the changelog:

v12.13.0

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article