News

Laravel 5.7.22 Released

Published
Laravel 5.7.22 Released image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

The Laravel team released 5.7.22 yesterday with miscellaneous fixes and changes.

A fix was added for the TestResponse::assertJsonValidationErrors() when there are no errors. Previously, this assertion would throw an ErrorException if no errors key were present in the response.

Next, the TestResponse::assertJsonMissingValidationErrors() method is allowed to be called without an argument:

$this->post(route('api.users.store'), $data)
->assertJsonMissingValidationErrors()
->assertStatus(201);

If the test has validation errors in this case, they are now printed to the console with a helpful error message.

Next, the Vue frontend preset stubs got Laravel Mix v4 comparability updates.

Along with the Vue preset, the React preset was updated to use the @babel/preset-react package which is a required dependency.

The last change is using config to resolve the database value during tests.

You can see the full list of fixes below, and the whole diff between 5.7.21 and 5.7.22 on GitHub. The full release notes for Laravel 5.7 are available in the GitHub 5.7 changelog:

v5.7.22

Fixed

  • Fixed TestResponse::assertJsonValidationErrors() when there are no errors (#27190)

Changed

  • Allowed TestResponse::assertJsonMissingValidationErrors() to be called without an argument (#27176)
  • Updated Vue preset’s vue-stubs for laravel-mix 4 compatibility (#27229)
  • Updated preset to use @babel/preset-react (#27235)
  • Used config to resolve the database value during tests. (#27240)
Paul Redmond photo

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

Sponsored

laravelcloud logo
Laravel Cloud

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

Visit Laravel Cloud

The latest

View all →
Queue totalSize() and JobInterrupted Event in Laravel 13.31 image

Queue totalSize() and JobInterrupted Event in Laravel 13.31

Read article
Find Unexpected Test Inputs with Fuzz for Pest image

Find Unexpected Test Inputs with Fuzz for Pest

Read article
Laravel Rulebook: Business Rules That Change by Date image

Laravel Rulebook: Business Rules That Change by Date

Read article
Taylor disabled GitHub Issues on most Laravel open-source packages. image

Taylor disabled GitHub Issues on most Laravel open-source packages.

Read article
Exclude Vendor and Default Commands in `php artisan dev` image

Exclude Vendor and Default Commands in `php artisan dev`

Read article
The Laracon Archive image

The Laracon Archive

Read article