Laravel 5.7.19 and Laravel Mix 4 have been released
Laravel 5.7.19 is now available, and it comes with a new whereBetween collection method. Last week, Laravel Mix v4 was also released.
Laravel Mix 4
Mix 4 is the next major version of the Laravel Mix. It has Webpack 4 by default, and here are some new features:
Faster npm installs.
Upgraded to webpack 4
Upgraded to vue-loader 15
Upgraded to Babel 7
Automatic vendor extraction
CSS minification (via cssnano) options may be provided
You can view release notes here: https://github.com/JeffreyWay/laravel-mix/releases/tag/v4.0.0
Laravel 5.7.19
This version is a minor update, but it has a new whereBetween collection method.
Changelogs:
Added
Added Illuminate\Support\Collection::whereBetween method (#26888)
Fixed
Reverted changes related to app()->call() (fefaf46)
Reset doctrineConnection property on Database/Connection when reconnecting (#26890)
You can view the release notes here: https://github.com/laravel/framework/blob/5.7/CHANGELOG-5.7.md#v5719-2018-12-18
How to upgrade
Update your laravel/framework dependency to 5.7.*
in your composer.json
file.
After that, go to your project root and run:
composer update