News

Laravel 5.6.7 Released

Published
Laravel 5.6.7 Released image

Laravel 5.6.7 is available for general release and includes a new SFTP filesystem driver and a critical security advisory for Parsedown.

Laravel depends on Parsedown for Markdown parsing, so this release is a necessary security upgrade that you should install.

In tandem with the new 5.6 release, Laravel 5.5.36 also includes an upgrade to Parsedown 1.7.0 to resolve the same security advisory.

The new SFTP filesystem driver, which allows for SSH key-based authentication has the following configuration:

'sftp' => [
'driver' => 'sftp',
'host' => 'example.com',
'username' => 'username',
'password' => 'password',
'privateKey' => '/path/to/privateKey',
],

Here are the full release notes from the Laravel 5.6 GitHub changelog:

v5.6.7 (2018-02-28)

Added

  • Added SFTP filesystem driver (#23308)

Changed

  • Pass parent model to withDefault() callback (#23334)
  • Upgrade Parsedown to 1.7.0 (816f893)

Fixed

  • Fixed PostgresGrammar::whereTime() casting (#23323)
  • Fixed SQLiteGrammar::whereTime() correct (#23321)
Paul Redmond photo

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

Filed in

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article