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

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article
Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites image

Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites

Read article
Collections chunkBy() and Storage Path Hardening in Laravel 13.30 image

Collections chunkBy() and Storage Path Hardening in Laravel 13.30

Read article
Forte: Parse and Rewrite Laravel Blade Templates image

Forte: Parse and Rewrite Laravel Blade Templates

Read article