Laravel 6.5.1 Released
Published on by Paul Redmond
The Laravel team released v6.5.1 this week with the latest changes and fixes. This week is a patch version release, containing changes and fixes.
First, an @includeUnless
directive includes a template unless the condition is false:
{{-- Instead of this --}}@includeWhen(! $headless, 'dashboard/partials/nav') {{-- You can do this --}}@includeUnless($headless, 'dashboard/partials/nav')
Next, the PhpRedis spop
implementation was fixed by passing the count value and updating the default value to equal 1
.
Next, the Model::isDirty()
check received a fix for collection and object casts.
You can see the full list of new features and updates below and the whole diff between 6.5.0 and 6.5.1 on GitHub. The full release notes for Laravel 6.0 are available in the GitHub v6 changelog:
v6.5.1
Added
- Added
includeUnless
directive (#30538)
Fixed
- Fixed default value for $count in
PhpRedisConnection::spop()
method (#30546) - Fixed breaking compatibility with multi-schema postgres (#30562, 6460d2b)
- Fixed
Model::isDirty()
withcollection
\object
casts (#30565) - Fixed
bcc
inMailgunTransport::send()
(#30569)