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 →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article