4,000 emails/month for free | Mailtrap sends real emails now!

Laravel 8.32 with HTTP client dump methods, queue exception throttling, fluent JSON assertions, and more

Published on by

Laravel 8.32 with HTTP client dump methods, queue exception throttling, fluent JSON assertions, and more image

Never Miss a Laravel Release 🚀

Sign up and get an email with each new Laravel release

The Laravel team released 8.32 with HTTP client dump methods, queue exception throttling, fluent JSON assertions, and the latest changes in the 8.x branch:

Helper Methods to Dump Laravel HTTP Requests

Andrea Marco Sartori contributed a dump() and dd() method to the Laravel HTTP client so you can inspect requests during debugging easily. These helpers will dump an instance of the HTTP Request and client options:

Http::dump()->get($url);
Http::dd()->post($url);
 
// Dump additional values along with the request/client data
Http::dd($var1)->post($url);

Throttle Queue Exceptions

Paras Malhotra contributed a circuit breaker middleware for queues. This middleware could be useful when you rely on a third-party HTTP service that is not reliable.

public function middleware()
{
return [new ThrottlesExceptions(10, 5)];
}

Given the above example, if the job has ten consecutive failed attempts, the job will be throttled for five minutes. You can also use a backoff() method to wait between retries before meeting the threshold, as the queue will retry failed jobs immediately:

public function middleware()
{
return [(new ThrottlesExceptions(10, 5))->backoff(5)];
}

The queue documentation now includes details on Throttling Exceptions if you'd like to learn more.

Fluent JSON Assertions

Claudio Dekker contributed fluent JSON assertions for testing in Laravel. At the time of writing, the fluent JSON assertion methods don't appear to have documentation, but the pull request goes into extensive detail.

Here's a simple example of how to use the fluent API taken from the pull request:

use Illuminate\Testing\Fluent\Assert;
 
$response->assertJson(fn (Assert $json) => $json
// Checking a root-level property
->has('podcast')
// Checking that the podcast prop has a nested id property using "dot" notation
->has('podcast.id')
);

This update is backward-compatible with the existing assertJson() calls but now allows an array or Closure.

Support an Eloquent Collection on Model::destroy()

Victor Dauchy contributed the ability to pass an Eloquent collection to a model's destroy method:

// Previously you might use pluck or modelKeys()
SomeModel::destroy(
SomeModel::all()->pluck('whatever_primary_key')
);
SomeModel::destroy(
SomeModel::all()->modelKeys()
);
 
// Now, passing a collection is possible
SomeModel::destroy(SomeModel::all());

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

v8.32.0

Added

  • Phpredis lock serialization and compression support (#36412, 10f1a93)
  • Added Fluent JSON Assertions (#36454)
  • Added methods to dump requests of the Laravel HTTP client (#36466)
  • Added ThrottlesExceptions and ThrottlesExceptionsWithRedis job middlewares for unstable services (#36473, 21fee76, 36518, 37e48ba)
  • Added support to Eloquent Collection on Model::destroy() (#36497)
  • Added rest option to php artisan queue:work command (#36521, c6ea49c)
  • Added prohibited_if and prohibited_unless validation rules (#36516)
  • Added class argument to Illuminate\Database\Console\Seeds\SeedCommand (#36513)

Fixed

  • Fix validator treating null as true for (required|exclude)_(if|unless) due to loose in_array() check (#36504)

Changed

  • Delete existing links that are broken in Illuminate\Foundation\Console\StorageLinkCommand (#36470)
  • Use user provided url in AwsTemporaryUrl method (#36480)
  • Allow to override discover events base path (#36515)
Paul Redmond photo

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

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Battle Ready Laravel

The ultimate guide to auditing, testing, fixing and improving your Laravel applications so you can build better apps faster and with more confidence.

Visit Battle Ready Laravel
Curotec logo

Curotec

World class Laravel experts with GenAI dev skills. LATAM-based, embedded engineers that ship fast, communicate clearly, and elevate your product. No bloat, no BS.

Curotec
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Cut PHP Code Review Time & Bugs into Half with CodeRabbit logo

Cut PHP Code Review Time & Bugs into Half with CodeRabbit

CodeRabbit is an AI-powered code review tool that specializes in PHP and Laravel, running PHPStan and offering automated PR analysis, security checks, and custom review features while remaining free for open-source projects.

Cut PHP Code Review Time & Bugs into Half with CodeRabbit
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
A new beta of Laravel Wayfinder just dropped image

A new beta of Laravel Wayfinder just dropped

Read article
Ben Bjurstrom: Laravel is the best Vibecoding stack for 2026 image

Ben Bjurstrom: Laravel is the best Vibecoding stack for 2026

Read article
Laravel Altitude - Opinionated Claude Code agents and commands for TALL stack development image

Laravel Altitude - Opinionated Claude Code agents and commands for TALL stack development

Read article
JSON:API Resource in Laravel 12.45 image

JSON:API Resource in Laravel 12.45

Read article
Caching With MongoDB for Faster Laravel Apps image

Caching With MongoDB for Faster Laravel Apps

Read article
Laravel 12.44 Adds HTTP Client afterResponse() Callbacks image

Laravel 12.44 Adds HTTP Client afterResponse() Callbacks

Read article