Never Miss a Laravel Release π
Laravel 5.8.13 was released yesterday with a new @error Blade directive and a revert of the βinβ and βnot inβ query builder feature added in Laravel 5.8.12.
Laravel Blade Error Directive
First, a new Blade @error directive was added by Caleb Porzio:
// Before@if ($errors->has('email')) <span>{{ $errors->first('email') }}</span>@endif // After:@error('email') <span>{{ $message }}</span>@enderror
Custom Doctrine DBAL Types
Next, itβs now possible to register custom Doctrine DBAL types in the schema builder. Check out PR #28214 for more details.
This release reverted the in and not in query builder operators introduced in Laravel 5.8.12 because of an issue with wherePivot(). See commit 04a547ee for further details.
Users should upgrade from 5.8.12 to 5.8.13 to avoid the potential issues introduced by the new operators in 5.8.12.
You can see the full list of fixes below, and the whole diff between 5.8.12 and 5.8.13 on GitHub. The full release notes for Laravel 5.8 are available in the GitHub 5.8 changelog.
v5.8.13
Added
- Added
@errorblade directive (#28062) - Added the ability to register
custom Doctrine DBALtypes in the schema builder (#28214, 91a6afe)
Fixed
Reverted
- Reverted of
possibility for use in / not in operators in the query buildersince of issue withwherePivot()method (04a547ee)