News

Laravel 5.5.23 Released

Published
Laravel 5.5.23 Released image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

Laravel v5.5.23 is now available with the latest additions, changes, and fixes!

This release adds some accessors methods to BelongsToMany by Taylor Otwell, and a firstWhere() method to collections by Joseph Sibler.

???? There’s a new “firstWhere” method coming to the collection class in @laravelphp 5.5.23.

Works the same as “first”, but with operators instead of a callback ???? pic.twitter.com/NrAe0BuX1o

— Joseph Silber (@joseph_silber) December 1, 2017

You can use the firstWhere() works like first() but with operators instead of a callback:

// Default operator is `=`
$firstActiveUser = $users->firstWhere('active', true);
$firstAdultUser = $users->firstWhere('age', '>=', 18);

Typically, you would use first() to do the same before this release:

$firstActiveUser = $users->first(function ($user) {
return $user->active === true;
});
 
$firstAdultUser = $users->first(function ($user) {
return $user->age >= 18;
});

The new firstWhere is an excellent option that I’ve already found myself using in a couple of places, and you can still use first() if you prefer.

Joseph is also known for Bouncer, a package for Laravel roles and ability authorization.

Again, we’d like to thank Till Kruss for putting together the changelog for Laravel releases, and all of the contributors that make Laravel better with each release.

v5.5.23 (2017-12-04)

Added

Changed

  • Pass test value to Collection::when() callbacks (#22224)
  • Support worker sleep time of less than 1s (#22246, #22255)
  • Detect persistent connection resets (#22277)
  • Support chaining seeders (#22288)

Fixed

  • Fixed negative comparison to objects in Collection::where() (#22256)
  • Fixed comparing strings with objects that can be casted to string in Collection::where() (#22295)
  • Fixed integer validation using distinct:ignore_case (#22235)
  • Fixes building nested JSON accessors in MySqlGrammar (#22254)
  • Remove SELECT bindings from MySQL delete statements (#22285)
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