News

Laravel 5.8.9 Released

Published
Laravel 5.8.9 Released image

The Laravel team released Laravel 5.8.9 this week, adding opt-in event discovery and the latest fixes and changes in the Laravel 5.8 release.

First, you should check out Taylor’s implementation and discussion around event discovery in PR #28064. Event discovery is an opt-in feature in Laravel 5.8, which means that you must explicitly define the following method in your EventServiceProvider class, returning a Boolean true:

/**
* Determine if events and listeners should be automatically discovered.
*
* @return bool
*/
public function shouldDiscoverEvents()
{
return true;
}

By default, the base Illuminate EventServiceProvider returns false by default in Laravel 5.8.

If you want to opt-in, you will probably want to cache the event discovery with the new artist event:cache command. The discovery feature uses reflection to determine event listeners/handlers on the fly in development, but caching avoids that overhead in production. You can run this command via a composer script command event or somewhere in your build pipeline.

Taylor Otwell also discussed Event / Listener discovery in his podcast Laravel Snippet #10— you should give his podcast a listen.

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

v5.8.9

Added

Fixed

  • Fixed serializing a collection from a Resource with preserveKeys property (#27985)
  • Fixed: SoftDelete::runSoftDelete and SoftDelete::performDeleteOnModel with overwritten Model::setKeysForSaveQuery (#28081)

Changed

  • Update forever cache duration for database driver from minutes to seconds (#28048)

Refactoring:

  • Refactoring of Illuminate\Auth\Access\Gate::callBeforeCallbacks() (#28079)
Paul Redmond photo

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

Filed in

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 →
Image Dominant Color and HEIC Support in Laravel 13.24 image

Image Dominant Color and HEIC Support in Laravel 13.24

Read article
Official Laravel Zed Extension: LSP for PHP & Blade image

Official Laravel Zed Extension: LSP for PHP & Blade

Read article
Laravel Head: Manage Meta Tags, Open Graph, and JSON-LD image

Laravel Head: Manage Meta Tags, Open Graph, and JSON-LD

Read article
PhpStorm 2026.2 Released image

PhpStorm 2026.2 Released

Read article
Laravel Doctor: Diagnose Your App With One Artisan Command image

Laravel Doctor: Diagnose Your App With One Artisan Command

Read article
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article