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

tinkerwell logo
Tinkerwell

Enjoy coding and debugging in an editor designed for fast feedback and quick iterations. It's like a shell for your application – but with multi-line editing, code completion, and more.

Visit Tinkerwell

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