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

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
No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project.

Visit No Compromises
Laravel Forge logo

Laravel Forge

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Forge
Tinkerwell logo

Tinkerwell

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

Tinkerwell
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $7500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
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
Bacancy logo

Bacancy

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

Bacancy
Lucky Media logo

Lucky Media

Bespoke software solutions built for your business. We ♥ Laravel

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
LaraJobs logo

LaraJobs

The official Laravel job board

LaraJobs
Larafast: Laravel SaaS Starter Kit logo

Larafast: Laravel SaaS Starter Kit

Larafast is a Laravel SaaS Starter Kit with ready-to-go features for Payments, Auth, Admin, Blog, SEO, and beautiful themes. Available with VILT and TALL stacks.

Larafast: Laravel SaaS Starter Kit
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a 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
Rector logo

Rector

Your partner for seamless Laravel upgrades, cutting costs, and accelerating innovation for successful companies

Rector

The latest

View all →
Sort Elements with the Alpine.js Sort Plugin image

Sort Elements with the Alpine.js Sort Plugin

Read article
Anonymous Event Broadcasting in Laravel 11.5 image

Anonymous Event Broadcasting in Laravel 11.5

Read article
Microsoft Clarity Integration for Laravel image

Microsoft Clarity Integration for Laravel

Read article
Apply Dynamic Filters to Eloquent Models with the Filterable Package image

Apply Dynamic Filters to Eloquent Models with the Filterable Package

Read article
Property Hooks Get Closer to Becoming a Reality in PHP 8.4 image

Property Hooks Get Closer to Becoming a Reality in PHP 8.4

Read article
Asserting Exceptions in Laravel Tests image

Asserting Exceptions in Laravel Tests

Read article