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

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 →
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article
Laravel monitoring that doesn't bill you by your traffic image

Laravel monitoring that doesn't bill you by your traffic

Read article
Mock PHP Classes in Tests With the Double Library image

Mock PHP Classes in Tests With the Double Library

Read article