News

Laravel 6.17.0 Released

Published
Laravel 6.17.0 Released image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

The Laravel team released v6.17.0 this week with private-encrypted pusher channels and a new permission configuration for the file cache store.

Allow ‘private-encrypted’ Pusher Channels

Onur Köse contributed a new feature that enables the use of private-encrypted channels with Pusher and Pusher PHP Server.

Thanks to Onur, the Laravel broadcaster implementation now supports these channels. Check out the Pusher End-to-end encrypted channels docs for further details.

Add ‘cache.permission’ Configuration Option

Paul Klimov contributed a new option for the File cache driver to configure the octal file permission:

At the present state file cache writes files with the default umask, which is usually allows writing (deleting) only for the owner.

This creates trouble in some environments, when cache is written by web-server (e.g. nginx) and then accessed from the artisan console.

In particular this make php artisan cache:clear command to silently fail to remove file cache created by web-server.

This PR adds ‘permission’ config option for the FileStore, in the same manner as for Stream Logger.

Note: a patch fix was released (v6.17.1) shortly after v6.17.0 to address the default scenario when not set. Check out Pull Request #31593 for details.

Learn More

You can see the full list of new features and updates below and the whole diff between 6.16.0 and 6.17.0 on GitHub. The full release notes for Laravel 6.17.0 are available in the latest v6 changelog.

Note: You can find patch release notes for v6.17.1 at the end of this article.

v6.17.0

Added

  • Allowed private-encrypted pusher channels (#31559, ceabaef, 8215e0d)
  • Added file permission config option for the File cache store (#31579)
  • Added Connection refused and running with the --read-only option so it cannot execute this statement to DetectsLostConnections (#31539)

Reverted

Fixed

  • Fixed issue Content Type not specified (#31533)

Changed

  • Allowed cache helper to have an optional expiration parameter (#31554)
  • Allowed passing of strings to TestResponse::dumpSession() method (#31583)
  • Consider mailto: and tel: links in the subcopy actionUrl label in emails (#31523, 641a7cd)
  • Exclude mariaDB from database queue support for new SKIP LOCKED (fff96e7)

v6.17.1

Changed

  • Don’t do chmod in File cache in case if permission not set (#31593)
Paul Redmond photo

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

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 →
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article
Laravel monitoring that doesn't bill you by your traffic image

Laravel monitoring that doesn't bill you by your traffic

Read article
Mock PHP Classes in Tests With the Double Library image

Mock PHP Classes in Tests With the Double Library

Read article