News

Laravel v5.5.13 released

Published
Laravel v5.5.13 released image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

Laravel v5.5.13 was tagged yesterday (9/24/2017) to address an ongoing issue related to a security fix released in v5.5.11.

This version should be the last quick patch release related to the “remember token” fix. You should upgrade to this version if you initially updated to v5.5.11 or v5.5.12.

This release adds two new features: the ability to configure an optional blacklist for the Whoops package and the Collection::pad() method.

The pad() method works like PHP’s array_pad function:

$collection = collect(['A', 'B', 'C']);
$filtered = $collection->pad(5, 0);
$filtered->all();
// ['A', 'B', 'C', 0, 0]
 
$filtered = $collection->pad(-5, 'D');
$filtered->all();
// ['D', 'D', 'A', 'B', 'C']

v5.5.13

Added

  • Added optional config option for whoops blacklist (#21336, a83ebc1)
  • Added Collection::pad() method (#21342)

Changed

  • Made $callback parameter of Arr::sort() optional (#21337)
  • Support setting custom REMOTE_ADDR in MakesHttpRequests (#21351)
  • Changed visibility of $output to public on console events (#21356)

Fixed

  • Don’t compare remember token in user providers if it’s null (srsly for real this time, pinky promise) (#21328, #21368)

v5.5.12

Added

  • Added “software” as an uncountable word (#21324)

Fixed

  • Don’t compare remember token if it’s null (#21328)
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 →
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