Back to Blog

Laravel 9.22 Released

Julian Beaujardin
Julian Beaujardin Reference: Laravel News July 27th, 2022

The Laravel team released 9.22 with a redesigned artisan serve command, a fluent file validation rule builder, and more. Let's take a look at all the goodness in the latest Laravel 9 release:

Fluent file validation rule

Luke Downing contributed a File validation rule object that provides a fluent interface like the Password validation rule:

// Before
$request->validate([
  'file' => ['required', 'file', 'mimes:mp3,wav,aac', 'max:12287'],
  'image' => ['required', 'file', 'image', 'min:2048', 'max:12287', Rule::dimensions()->maxWidth(1000)->maxHeight(500)],
]);

// After
$request->validate([
  'file' => ['required', File::types(['mp3', 'wav', 'aac'])->smallerThan(12 * 1024)],
  'image' => ['required', File::image()->atLeast(2 * 1024)->smallerThan(12 * 1024)->dimensions(Rule::dimensions()->maxWidth(1000)->maxHeight(500))],
]);

Pull Request #43271 has more details about the available methods. Also, the validation documentation has details on validating files using the new fluent rule builder.

Improved Artisan serve command

Laravel 9.22

Check out Pull Request #43375 for more screenshots and details about these changes.

Attach an array of files in MailMessage

Delowar Hossain and Tim MacDonald collaborated on an attachMany() method for mail messages:

$mailable->attachMany([
    '/forge.svg',
    '/vapor.svg' => ['as' => 'Vapor Logo.svg', 'mime' => 'text/css'],
    new class() implements Attachable
    {
        public function toMailAttachment()
        {
            return Attachment::fromPath('/foo.jpg')->as('bar')->withMime('image/png');
        }
    },
]);

Note that you can also call attach() multiple times—this method was added as a convenience when you want to attach them in one call with an array format.

Add conditional lines to a mail message

El Shino contributed the ability to conditionally add a line to a mail message:

// With a conditional
$message->line('Your order has been canceled');
if ($this->amount > 0) {
    $message->line("The refunded amount is {$this->amount}");
}

// Using lineIf
$message->line('Your order has been canceled')
        ->lineIf($this->amount > 0, "The refunded amount is {$this->amount}");

Support for multiple hash algorithms in Filesystem

Douglas Medeiros contributed support for various hash algorithms in the Filesystem. You can now specify a hash algo as an optional second argument:

File::hash($path)
// 196b0f14eba66e10fba74dbf9e99c22f => default md5

File::hash($path, 'sha256')
// 19c451aedfb24c338a9a2a5c31d553ed77e7cdefc655035f390176ac24066051

Release Notes

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

Added

  • Added unique locking to broadcast events (#43416)
  • Added ability to attach an array of files in MailMessage (#43080)
  • Added conditional lines to MailMessage (#43387)
  • Add support for multiple hash algorithms to Illuminate/Filesystem/Filesystem::hash() (#43407)

Fixed

  • Fixes Artisan serve command on Windows (#43437)
  • Fixes for model:show when attribute default is an enum (#43370)
  • Fixed DynamoDB locks with 0 seconds duration (#43365)
  • Fixed overriding global locale (#43426)

Changed

  • Round milliseconds in console output runtime (#43400)
  • Improves serve Artisan command (#43375)